@font-face {
  font-family: "Azo Sans";
  src: url("../fonts/AzoSans-Regular.otf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Azo Sans";
  src: url("../fonts/AzoSans-Medium.otf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Azo Sans";
  src: url("../fonts/AzoSans-Bold.otf");
  font-weight: 700;
  font-style: normal;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --font-primary: "Azo Sans", sans-serif;
  --color: #004b7d;
  --secondary-color: #001d36e5;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h1 {
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--font-primary);
}
h2 {
  font-weight: 600;
  font-family: var(--font-primary);
}

p {
  font-family: var(--font-primary);
  font-weight: 400;
}

.sections-title {
  font-family: var(--font-primary);
  font-size: 36px;
  color: var(--secondary-color);
  font-weight: 500;
  text-align: center;

  margin: auto;
}

.primary-btn {
  background-image: linear-gradient(to right, #3e77a4, #0c54a0);
  color: white;
  font-family: var(--font-primary);
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-size: 20px;
    cursor: pointer;
}

/* header section start from here  */

.navigation {
  position: sticky;
  left: 0;
  top: 0;
  right: 0;
  bottom: auto;
  z-index: 999;
  display: flex;
  max-width: none;
  padding: 10px 1em;
  background: #fff;
}

.navigation-wrap {
  display: flex;
  width: 90%;
  margin: auto;
  justify-content: space-between;
  align-items: center;
}

.logo-image {
  display: block;
  width: 70%;
  height: auto;
}
/* header section stop from here  */

/* /////////////////////////////////////////////// */

.hero-top {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 22px 64px 0;
  gap: 0;
  min-height: 650px;
  justify-content: space-between;
  align-items: center;
}

/* ── LEFT ── */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 44px;
  width: 35%;
}
.hero {
  position: relative;
  width: 100%;
  background-image: url(../images/banner_imaga.webp);
  background-size: cover;
  background-position: center;
}

.hero-left h1 {
  font-family: var(--font-primary);
  font-size: 52px;
  color: var(--color);
  line-height: 1.15;
  font-weight: 500;
}

.hero-left .sub {
  font-family: var(--font-primary);
  font-size: 15px;
  color: #000000;
  line-height: 1.5;
  width: 65%;
}
.hero-right {
  width: 33%;
}

/* ── RIGHT ── */

/* 2nnd section start from here */

.section-title {
  font-family: var(--font-primary);
  font-size: 40px;
  color: var(--secondary-color);
  font-weight: 500;
  text-align: center;
}

.feature-card {
  flex: 1;
  min-width: 220px;
  background: #007dc5;
  padding: 40px 20px 10px 40px;
  text-align: center;
  transition: 0.3s ease;
  display: flex;
  border-radius: 50px 50px 0px 50px;
  align-items: flex-end;
  justify-content: space-between;
}

/* Hover Effect */
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Icon */
.feature-card img {
  width: 60px;
  margin-bottom: 14px;
  height: 60px;
}
.feature-mobile_container .feature-card img {
  width: 60px;
  margin-bottom: 14px;
  height: 60px;
}

.feature-card p {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  line-height: 1.35;
  padding-bottom: 45px;
}

/* 2nnd section stop from here */

/* section 3rd start from here  */
.camford-section {
  text-align: center;
}
section.camford-section h2 {
  padding: 55px;
}

.camford-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  padding: 1px 40px 5%;
  background: #f5fcff;
}

.stat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 50px;
  font-weight: 500;
  color: #297995;
  line-height: 1.2;
}

.stat-number.excellence {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
}

.stat-label {
  font-size: 16px;
  color: #000000;
  font-weight: 400;
}
/* section 3rd stop from here  */

/* SECTION 4TH START FROM HERE  */
.apply-section {
  background: #ffffff;
  padding: 56px 32px 48px;
  font-family: "Segoe UI", Arial, sans-serif;
  text-align: center;
}

.apply-tag {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #297995;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.apply-heading {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  margin: 0 0 48px;
}

.steps-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 90%;
  margin: 3% auto;
}

.step {
  flex: 0 0 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.step-icon img {
  width: 140px;
  height: 140px;
}
.step-title {
  font-size: 20px;
  font-weight: 500;
  color: #001d36;
  margin: 0;
}
.step-icon {
  display: flex;
  gap: 20px;
}
.step-connector img {
  width: 100%;
}
.step-desc {
  font-size: 16px;
  color: #4c5055;
  line-height: 1.6;
  margin: 0;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 34px;
  width: 100%;
}

/* SECTION 4TH STOP FROM HERE  */

/* secton achivemtnt start here  */

/* ── Header ──────────────────────────────────── */
.mobile-form {
    display: none;
}
section.achievements-section {
  text-align: center;
  background-image: url(../images/backgrond-achivements.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

.student-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
section.achievements-section h2 {
  background: #f5fcff;
  padding-bottom: 25px;
}
section.achievements-section p {
  background: #f5fcff;
  margin: 0;
  padding-bottom: 15px;
}
/* ── Image Container ─────────────────────────── */
.card-img-wrap {
  width: 85%;
  margin: auto;
}
.student-card {
  margin-top: 50px;
}

.student-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

/* ── Card Body ───────────────────────────────── */
.card-body {
  padding: 40px 22px 26px;
  text-align: center;
}
.card-body p {
  background: unset !important;
}

.card-name {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;

  text-transform: uppercase;
  color: #000000;
  margin-bottom: 8px;
}

.card-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  color: #000000;
  background: #d1ecf5;
  border-radius: 4px;
  padding: 8px 30px;
  margin-bottom: 12px;
}

.card-achievement {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: #297995;
  line-height: 1.5;
}
.owl-achievements {
  width: 80%;
  margin: 0 auto;
}

/* ── Owl Nav Buttons ─────────────────────────── */
.owl-achievements .owl-nav button,
.owl-infracture .owl-nav button {
  position: absolute;
  top: 35%;
}

.owl-achievements button.owl-prev,
.owl-infracture button.owl-prev {
  left: -60px;
}
.owl-achievements button.owl-next,
.owl-infracture button.owl-next {
  right: -60px;
}

.owl-achievements img.nav-img,
.owl-infracture img.nav-img,
#testimonialCarousel img.nav-img {
  width: 65%;
}
#testimonialCarousel button.owl-prev,
#testimonialCarousel button.owl-next {
  background-color: unset;
}

/* secton achivemtnt stop here  */

.ac-subtitle {
  font-size: 18px;
  color: #fff;
  /* max-width: 600px; */
  margin: 0 auto 56px;
  line-height: 1.7;
  width: 60%;
  text-align: center;
}
.ac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 80%;
  margin: 0 auto;
}

.ac-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ac-img-wrap {
  width: 80%;
    border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 4px solid #b8d6f0;
  background: #cde3f5;
  position: relative;
}

.ac-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder illustrations when no real images */
.ac-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.ac-stage {
  font-size: 25px;
  font-weight: 500;
  color: #001d36;
  margin-bottom: 5px;
}

.ac-grades {
  font-size: 16px;
  color: #297995;
  font-weight: 400;
  margin-bottom: 14px;
}

.ac-desc {
  font-size: 18px;
  color: #4c5055;
  line-height: 28px;
}

/* Horizontal rule accent behind images */
.ac-images-row {
  position: relative;
}
.ac-images-row::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3a8fd4, #5aade8, #3a8fd4);
  transform: translateY(-10px);
  z-index: 0;
}
section.ac-section {
  text-align: center;
}
h2.sections-title.pro {
  width: 100%;
}
.acade_pr {
  background-image: linear-gradient(to bottom, #004b7d, #297995);
  padding: 80px 0px;
  margin-bottom: -6%;
}
/* program section stop from here  */

/* infrastructure section start from here  */
section.infracture-section {
  text-align: center;
  padding: 50px 0px;
}
.owl-infracture {
  width: 80%;
  margin: auto;
}
.infra-img-wrap {
  width: 100%;
  margin: auto;
}
.infrastruc-card {
  padding: 30px;
  background: #004b7d;
  display: flex;
  gap: 30px;
  flex-direction: column;
  border-radius: 12px;
}
p.infras_des {
  margin-top: 1%;
  margin-bottom: 2%;
  font-size: 18px;
  color: #4c5055;
}
.infra-name {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
}

/* infrastructure section start from here  */

/* faq start from here  */

.faq-section {
  max-width: 68%;
  margin: 5% auto;
}

.faq-title {
  font-size: 34px;
  font-weight: 700;
  color: #0d2d55;
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  border-top: 1.5px solid #d1ecf5;
  margin-top: 5%;
}

.faq-item {
  border-bottom: 1.5px solid #d1ecf5;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-size: 20px;
  font-weight: 500;
  color: #004b7d;
  line-height: 1.5;
  flex: 1;
  font-family: var(--font-primary);
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8f4f9;
  border: 1.5px solid #e8f4f9;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: #2e6da4;
  transition: transform 0.3s ease;
}

/* Open state */
.faq-item.open .faq-icon {
  background: #e8f4f9;
  border-color: #e8f4f9;
}

.faq-item.open .faq-icon svg.plus {
  display: none;
}

.faq-item:not(.open) .faq-icon svg.minus {
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s ease;
  padding: 0 16px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 16px 24px;
}

.faq-answer p {
  font-size: 16px;
  color: #4c5055;
  line-height: 1.75;
  font-weight: 400;
}

.faq-question:hover .faq-question-text {
  color: #1a5fa8;
}
/* faq start from here  */

/* bottom css start from here  */
.cta-wrapper {
  background: url(../images/bottom.webp);
  background-position: center;
  background-size: cover;
  overflow: visible;
  /* margin-top: 6%; */
  background-repeat: no-repeat;
  padding: 165px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.cta-heading {
  font-size: 30px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 28px;
  max-width: 418px;
}

.cta-btn {
  background: #fff;
  color: #4c5055;
      margin-top: 25px;
}

/* bottom css stop from here  */

/* testomonials section start from here  */

/* ── Card ── */
.testimonial-card {
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  margin-top: 8%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.testimonial-card.expanded {
}
section.testimonial-section {
  padding: 50px 0px;
  background-image: url(../images/testomonia.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* ── Text toggle ── */
.testimonial-body {
  font-size: 17px;
  color: #4c5055;
  line-height: 1.78;
  font-family: var(--font-primary);
  margin-bottom: 18px;
  flex: 1;
  font-family: 400;
}

/* Short preview — always visible */
.text-short {
  display: inline;
}

/* Extra content — hidden by default */
.text-extra {
  display: none;
}

/* When card is expanded, show extra */
.testimonial-card.expanded .text-extra {
  display: inline;
}

.toggle-btn {
  background: none;
  border: none;
  padding: 0;
  color: #ee4e4e;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-primary);
  font-family: inherit;
  cursor: pointer;
  display: inline;
}
.toggle-btn:hover {
  text-decoration: underline;
}

/* Quote mark */
.quote-mark {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

/* ── Author ── */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  margin-top: 12px;
}

.author-name {
  font-size: 20px;
  font-weight: 500;
  color: #001d36;
  margin-bottom: 3px;
}
.author-avatar {
  width: 23%;
}
.author-sub {
  font-size: 16px;
  color: #297995;
  line-height: 1.4;
}

/* testomonials section start from here  */

/* classroom section start from here  */
.advantage-section {
  display: flex;
  margin-top: 5%;
  padding: 70px 0px 70px 70px;
  background-color: #004b7d;
}

/* ── LEFT PANEL ── */
.advantage-left {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  justify-content: center;
}

.eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #90bcd8;
  margin-bottom: 16px;
}

.left-title {
  font-size: 35px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 18px;
}

.left-desc {
  font-size: 18px;
  color: #fff;
  line-height: 1.7;
  width: 75%;
}

/* Nav arrows */
.left-nav {
  display: flex;
  margin-top: 36px;
}

/* ── RIGHT: carousel area ── */
.advantage-right {
  flex: 1;
  overflow: hidden;
}
button#prevBtn img,
button#nextBtn img {
  width: 65%;
  cursor: pointer;
}
button#prevBtn,
button#nextBtn {
  background: unset;
  border: unset;
}

.advantage-right .owl-stage-outer {
  overflow: visible;
}

/* ── Cards ── */
.advantage-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  margin: 0 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 395px;
  justify-content: space-between;
      width: 100%;
}

.card-title {
  font-size: 25px;
  font-weight: 500;
  color: #001d36;
  margin-bottom: 12px;
  line-height: 1.3;
  font-family: var(--font-primary);
}

.card-desc {
  font-size: 16px;
  color: #4c5055;
  line-height: 1.72;
  margin-bottom: 20px;
}

/* classroom section start from here  */
.footer_main {
    padding: 20px 0px;
    text-align: center;
    
}
.footer_main{
  font-weight: 300;
}
ul.ulbtnn {
    list-style: none;
    padding: 0;
    margin: 0;
}
.floating-contact {
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 999;
    display: block;
}
.badge {
 display: inline-block;
    border: 1.5px solid #2CACDA;
    color: #ffff;
    background-color: #2CACDA;
    font-size: 23px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    margin-bottom: 18px;
    width: 65%;
    font-family: var(--font-primary);
    text-align: center;
}
.ulbtnn a {
    display: block;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-decoration: none;
    color: #ffffff;
    padding: 15px 10px;
    font-weight: 600;
    letter-spacing: 1px;
    background: #2CACDA;
    border-radius: 20px;
    cursor: pointer;
}
.ulbtnn a.call {
    display: none;
}
.ulbtnn a {
    cursor: pointer;
}
/* form start here  */
.form-wrap {
  background: linear-gradient(#297995, #004b7d);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.form-wrap h2 {
  color: #fff;
  font-size: 35px;
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.row {
  display: flex;
  gap: 20px;
  margin-bottom: 10%;
}

.field {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.field.full {
  flex: 1 1 100%;
}

.field label {
  color: #cde6f7;
  font-size: 12.5px;
  margin-bottom: 6px;
}

.field input,
.field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  padding: 6px 2px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  font-family: var(--font-primary);
}

.field input::placeholder {
  color: #ffff;
  font-family: var(--font-primary);
  padding-bottom: 20px;
  font-weight: 500;
}

.field select option {
  color: #1a1a1a;
  background: #fff;
}
.field input:focus,
.field select:focus {
  border-bottom-color: #fff;
}
.field select {
  appearance: none;
  cursor: pointer;
  padding-bottom: 10px;
}
.field input.error,
.field select.error {
  border-bottom-color: #f87171;
}

.err-msg {
  color: #f87171;
  font-size: 11px;
  margin-top: 4px;
  display: none;
}
.field.has-error .err-msg {
  display: block;
}

.radio-row {
  display: flex;
  align-items: center;
  gap: 24px;
    margin-bottom: 6%;
  flex-wrap: wrap;
}
.radio-row span {
  color: #ffff;
  font-size: 13.5px;
  margin-right: 4px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
    font-size: 16px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 400;
}
.radio-label input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.radio-label input[type="radio"]:checked {
  border-color: #fff;
  box-shadow: inset 0 0 0 4px #fff;
}

.phone-row {
  display: flex;
  gap: 12px;
  margin-bottom: 10%;
}
.phone-code {
  width: 70px;
  flex-shrink: 0;
}
.phone-num {
  flex: 4;
}

.captcha-box {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  width: 70%;
}
.captcha-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.captcha-check {
  width: 22px;
  height: 22px;
  border: 1.5px solid #aaa;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
}
.captcha-check svg {
  display: none;
  width: 14px;
  height: 14px;
}
.captcha-check.checked svg {
  display: block;
}
.captcha-txt {
        font-size: 16px;
    color: #000000;
    font-family: var(--font-primary);
    font-weight: 400;
}
.captcha-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.captcha-right svg {
  width: 32px;
  height: 32px;
}
.captcha-right span,
.captcha-right a {
  font-size: 9px;
  color: #666;
  text-decoration: none;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #fff;
  color: #0d4f82;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
.submit-btn:hover {
  opacity: 0.9;
}

.success-msg {
  display: none;
  text-align: center;
  color: #fff;
  font-size: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  margin-top: 12px;
}
/* form start here  */

/* Responsive: */
@media (max-width: 1500px) {
  .badge{
        width: 75%;
  }
}
@media (max-width: 1300px) {
      .badge {
        width: 80%;
      }

  .hero-left h1 {
    font-size: 42px;
  }
  .hero-top {
    padding: 22px 45px 0;
  }
  .ac-grid {
    width: 90%;
  }
  .left-desc {
    width: 85%;
  }
  .testimonial-body {
    font-size: 16px;
  }
  .testimonial-card {
    padding: 38px;
  }
  .steps-wrapper {
    max-width: 95%;
  }
}

@media (max-width: 1150px) {
  .owl-achievements,
  .owl-infracture {
    width: 90%;
  }
  .advantage-card {
    height: 420px;
  }
  .owl-achievements button.owl-prev,
  .owl-infracture button.owl-prev {
    left: -45px;
  }
  .owl-achievements button.owl-next,
  .owl-infracture button.owl-next {
    right: -45px;
  }
}

@media (max-width: 110px) {
  .advantage-left {
    width: 40%;
  }
  .cta-heading {
    max-width: 320px;
  }
}
@media (max-width: 990px) {
  .ac-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantage-left {
    width: 50%;
  }
  .steps-wrapper {
    max-width: 75%;
  }
  .step-connector img {
    display: none;
  }
  .faq-section {
    max-width: 90%;
  }
  .faq-question-text {
    font-size: 18px;
  }
  .faq-answer p {
    font-size: 14px;
  }
  .cta-heading {
    max-width: 220px;
    font-size: 20px;
  }
  .cta-wrapper {
    padding: 85px;
  }
  .card-title {
    font-size: 22px;
  }
  .hero-right {
    display: none;
  }
  .hero {
    background-image: url(../images/lpbnr--mobile.png);
    background-position: center;
  }
  .hero-top {
    align-items: start;
  }
  .hero-left {
    width: 100%;
  }

  .hero-left .sub {
    width: 100%;
  }
  .mobile-form{
    display: block;
  }
}
@media (max-width: 767px) {
  .advantage-card{
    margin: 0;
  }
  img.call_icom{
    width: 13px;
    margin-right: 8px;
  }
  .left-nav{
    margin: 15px 0;
  }
  .footer_main{
        margin-bottom: 35px;
    font-size: 12px;
  }
      .badge {
        width: 100%;
        margin: 0;
            font-size: 20px;
    }
    .hero-left .sub{
          font-size: 13px;
          text-align: center;
    }
      .enquiry.open-popup {
        display: block;
  background: #D8EFF7;
        color: #306D98;
    }
        .ulbtnn a {
        writing-mode: horizontal-tb;
        transform: none;
        text-align: center;
        padding: 14px;
        font-size: 14px;
        display: block;
        border-radius: 0px;
    }
      .floating-contact {
        bottom: 0;
        top: auto;
        right: 0;
        width: 100%;
    }
        .ulbtnn {
        display: flex;
    }
    .ulbtnn {
    list-style: none;
    padding: 0;
    margin: 0;
}
    .ulbtnn li {
        flex: 1;
        margin: 0;
    }
        .ulbtnn a.call {
        display: block;
    }
     .hero-left h1 {
        font-size: 25px;
        text-align: center;
    }
  .camford-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 1px 22px 8%;
  }
  .stat-card {
    width: 47%;
  }
  .stat-number {
    font-size: 40px;
  }
  .stat-number.excellence {
    font-size: 29px;
  }
  .faq-section {
    margin: 10% auto;
  }
  .owl-achievements button.owl-prev,
  .owl-infracture button.owl-prev {
    left: -22px;
  }
  .owl-achievements button.owl-next,
  .owl-infracture button.owl-next {
    right: -23px;
  }
  .card-achievement {
    font-size: 18px;
  }
  .ac-subtitle {
    width: 90%;
    margin: 20px auto 0px;
  }
  .acade_pr {
    padding: 80px 20px;
  }
  .ac-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .advantage-section {
    padding: 35px;
    flex-direction: column;
  }
  .advantage-left {
    width: 100%;
  }
  .left-nav {
    justify-content: flex-end;
  }
  section.infracture-section {
    padding: 50px 20px;
  }
  section.testimonial-section {
    padding: 50px 10px;
  }

  .hide-mobile {
    display: none;
  }
  .cta-wrapper {
    padding: 40px;
  }
  .cta-heading {
    max-width: 150px;
    font-size: 14px;
  }
  .sections-title {
    font-size: 25px;
  }
  .left-title {
    font-size: 28px;
  }
  .apply-tag {
    font-size: 13px;
  }
  .ac-stage {
    font-size: 22px;
  }
  p.infras_des {
    margin-top: 4%;
    margin-bottom: 5%;
  }
}
@media (max-width: 640px) {
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .step-connector {
    padding-top: 0;
    transform: rotate(90deg);
  }

  .step-desc {
    max-width: 240px;
  }
}
