body > header:not(.site-header) {
    display: none !important;
}

/* =========================
   BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
}

/* =========================================
   HEADER - FIXED RESPONSIVE VERSION
========================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.site-header {
    width: 100%;
    max-width: 100%;

    position: sticky;
    top: 0;

    background: #ffffff;

    z-index: 9999;

    box-shadow:
        0 6px 22px rgba(26, 38, 90, 0.06);
}

.header-container {
    width: calc(100% - 40px);
    max-width: 1480px;

    min-height: 100px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    min-width: 0;
}


/* =========================================
   LOGO
========================================= */

.logo {
    display: flex;
    align-items: center;

    flex: 0 0 auto;
}

.logo img {
    display: block;

    width: 220px;
    max-width: 100%;

    height: auto;
}


/* =========================================
   NAVIGATION
========================================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 10px;

    min-width: 0;

    flex: 1 1 auto;
}

.main-nav a {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 18px;

    border: 1px solid #d7daf0;
    border-radius: 50px;

    background: #ffffff;
    color: #303e92;

    font-size: 15px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;
    white-space: nowrap;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.main-nav a:hover {
    background: #303e92;
    border-color: #303e92;
    color: #ffffff;

    transform: translateY(-2px);
}


/* DOWNLOAD BUTTON */

.main-nav .brochure-btn {
    padding-left: 24px;
    padding-right: 24px;

    background: #303e92;
    border-color: #303e92;
    color: #ffffff;

    box-shadow:
        0 8px 22px
        rgba(48, 62, 146, .14);
}

.main-nav .brochure-btn:hover {
    background: #202b76;
    border-color: #202b76;
}


/* =========================================
   MENU TOGGLE
========================================= */

.menu-toggle {
    display: none;
}

.hamburger {
    width: 44px;
    height: 44px;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    flex: 0 0 auto;

    border: 1px solid #d7daf0;
    border-radius: 10px;

    cursor: pointer;
}

.hamburger span {
    display: block;

    width: 22px;
    height: 2px;

    background: #303e92;

    border-radius: 10px;

    transition: .3s ease;
}


/* =========================================
   MEDIUM/LARGE DESKTOP
   Important: start shrinking earlier
========================================= */

@media (max-width: 1500px) {

    .header-container {
        width: calc(100% - 30px);

        gap: 18px;
    }

    .logo img {
        width: 190px;
    }

    .main-nav {
        gap: 7px;
    }

    .main-nav a {
        min-height: 44px;

        padding-left: 13px;
        padding-right: 13px;

        font-size: 13px;
    }

    .main-nav .brochure-btn {
        padding-left: 18px;
        padding-right: 18px;
    }

}


/* =========================================
   SMALL DESKTOP
========================================= */

@media (max-width: 1300px) {

    .logo img {
        width: 170px;
    }

    .main-nav {
        gap: 6px;
    }

    .main-nav a {
        padding-left: 10px;
        padding-right: 10px;

        font-size: 12px;
    }

}


/* =========================================
   SWITCH TO HAMBURGER EARLIER
========================================= */

@media (max-width: 1180px) {

    .header-container {
        min-height: 82px;

        position: relative;
    }

    .logo img {
        width: 180px;
    }

    .hamburger {
        display: flex;
    }

    .main-nav {
        position: absolute;

        top: calc(100% + 1px);
        left: 0;
        right: 0;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 9px;

        padding: 18px;

        background: #ffffff;

        border-radius: 0 0 18px 18px;

        box-shadow:
            0 15px 35px
            rgba(28, 37, 90, .12);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        pointer-events: none;

        transition:
            opacity .25s ease,
            transform .25s ease,
            visibility .25s ease;

        z-index: 9999;
    }

    .main-nav a {
        width: 100%;

        min-height: 48px;

        padding: 0 18px;

        border-radius: 12px;

        font-size: 14px;
    }

    .main-nav .brochure-btn {
        margin-top: 4px;
    }


    /* OPEN */

    .menu-toggle:checked ~ .main-nav {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }


    /* X animation */

    .menu-toggle:checked + .hamburger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle:checked + .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked + .hamburger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .header-container {
        width: calc(100% - 24px);

        min-height: 74px;
    }

    .logo img {
        width: 150px;
    }

    .hamburger {
        width: 40px;
        height: 40px;
    }

    .main-nav {
        padding: 14px;
    }

    .main-nav a {
        min-height: 46px;

        font-size: 14px;
    }

}

/* =========================================
   CLINICAL HERO
========================================= */

.clinical-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 20px 30px;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(227, 232, 255, 0.75),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #fffafb 0%,
      #ffffff 45%,
      #f4f6ff 100%
    );
}

.clinical-hero-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: start;

  gap: 50px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.clinical-hero-content {
  padding-top: 5px;
}

.clinical-hero-content h1 {
  max-width: 650px;

  margin: 0 0 20px;

  color: #172052;

  font-size: clamp(48px, 4.3vw, 66px);
  font-weight: 800;
  line-height: 0.9;

  letter-spacing: -2px;
}

.hero-description {
  max-width: 650px;

  margin-bottom: 30px;

  color: #647088;

  font-size: 21px;
  line-height: 1.52;
}


/* =========================================
   INFO CARDS
========================================= */

.hero-info-grid {
  max-width: 610px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-bottom: 22px;
}

.hero-info-card {
  min-height: 120px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 16px 14px;

  background: #ffffff;

  border: 1px solid #dde1ef;
  border-radius: 30px;

  box-shadow:
    0 12px 30px rgba(37, 48, 110, 0.05);
}

.info-label {
  margin-bottom: 6px;

  color: #f0588c;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.hero-info-card strong {
  color: #303e9f;

  font-size: clamp(35px, 3vw, 48px);
  font-weight: 800;
  line-height: 1;
}

.hero-info-card small {
  margin-top: 5px;

  color: #687386;

  font-size: 14px;
  font-weight: 700;
}


/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
  max-width: 610px;

  display: grid;
  grid-template-columns: 1.1fr 1fr;

  gap: 20px;
}

.hero-btn {
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px 25px;

  border-radius: 50px;

  text-align: center;
  text-decoration: none;

  font-size: 15px;
  font-weight: 800;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn-light {
  color: #303e97;
  background: #ffffff;

  box-shadow:
    0 15px 35px rgba(40, 50, 120, 0.08);
}

.hero-btn-primary {
  color: #ffffff;
  background: #3543a5;

  box-shadow:
    0 15px 35px rgba(53, 67, 165, 0.18);
}

.hero-btn-primary:hover {
  background: #28358e;
}


/* =========================================
   RIGHT VISUAL
========================================= */

.clinical-hero-visual {
  min-width: 0;
}


/* =========================================
   HERO IMAGE SLIDER
========================================= */

.heroImageSlider {
  width: 100%;
  height: 455px;

  overflow: hidden;
}

.heroImageSlider .swiper-slide {
  height: 100%;
}

.heroImageSlider img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;
}


/* =========================================
   ACCREDITATION CAROUSEL
========================================= */

.accreditation-carousel {
  position: relative;

  margin-top: 0;
  padding: 18px 80px;

  background: #ffffff;

  border: 1px solid #eceefa;
  border-radius: 30px;

  box-shadow:
    0 18px 45px rgba(31, 42, 100, 0.08);
}

.accreditationSlider {
  width: 100%;
}

.accreditation-card {
  height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: #ffffff;

  border: 1px solid #e6e8f2;
  border-radius: 22px;
}

.accreditation-card img {
  width: 100%;
  max-width: 155px;
  max-height: 95px;

  object-fit: contain;
}


/* =========================================
   CAROUSEL ARROWS
========================================= */

.accreditation-prev,
.accreditation-next {
  position: absolute;
  top: 50%;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(-50%);

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: #3543a5;
  color: #ffffff;

  font-size: 38px;
  font-family: Arial, sans-serif;
  line-height: 1;

  cursor: pointer;

  z-index: 5;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.accreditation-prev:hover,
.accreditation-next:hover {
  background: #273389;
}

.accreditation-prev {
  left: 18px;
}

.accreditation-next {
  right: 18px;
}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1200px) {

  .clinical-hero-inner {
    gap: 30px;
  }

  .clinical-hero-content h1 {
    font-size: 52px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-info-card strong {
    font-size: 38px;
  }

  .heroImageSlider {
    height: 410px;
  }

  .accreditation-carousel {
    padding-left: 65px;
    padding-right: 65px;
  }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .clinical-hero {
    padding-top: 40px;
  }

  .clinical-hero-inner {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .clinical-hero-content {
    text-align: center;
  }

  .clinical-hero-content h1,
  .hero-description,
  .hero-info-grid,
  .hero-buttons {
    margin-left: auto;
    margin-right: auto;
  }

  .clinical-hero-content h1 {
    max-width: 750px;

    font-size: 54px;
    line-height: 0.96;
  }

  .hero-description {
    max-width: 720px;
  }

  .clinical-hero-visual {
    max-width: 750px;
    width: 100%;

    margin: 0 auto;
  }

  .heroImageSlider {
    height: 470px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .clinical-hero {
    padding: 30px 16px 20px;
  }

  .clinical-hero-content h1 {
    font-size: 42px;

    line-height: 0.98;
    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 17px;

    line-height: 1.5;
  }

  .hero-info-grid {
    grid-template-columns: 1fr;
  }

  .hero-info-card {
    min-height: 105px;

    border-radius: 22px;
  }

  .hero-info-card strong {
    font-size: 38px;
  }

  .hero-buttons {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .heroImageSlider {
    height: 400px;
  }

  .accreditation-carousel {
    padding: 16px 60px;

    border-radius: 22px;
  }

  .accreditation-card {
    height: 120px;
  }

  .accreditation-prev,
  .accreditation-next {
    width: 42px;
    height: 42px;

    font-size: 30px;
  }

  .accreditation-prev {
    left: 10px;
  }

  .accreditation-next {
    right: 10px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .clinical-hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .clinical-hero-content h1 {
    font-size: 34px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-info-card strong {
    font-size: 33px;
  }

  .hero-btn {
    min-height: 54px;

    font-size: 14px;
  }

  .heroImageSlider {
    height: 330px;
  }

  .accreditation-carousel {
    padding-left: 54px;
    padding-right: 54px;
  }

  .accreditation-card {
    height: 105px;

    padding: 14px;
  }
}

.stats-strip {
  width: 100%;
  padding: 40px 20px;

  background: #ffffff;

  border-top: 1px solid #edf0f7;
  border-bottom: 1px solid #edf0f7;
}

.stats-container {
  width: 100%;
  max-width: 1365px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}


/* =========================
   CARD
========================= */

.stat-card {
  min-height: 95px;

  display: flex;
  align-items: center;

  gap: 18px;

  padding: 20px 26px;

  background: #ffffff;

  border: 1px solid #e0e4ef;
  border-radius: 24px;

  box-shadow:
    0 12px 28px rgba(31, 42, 93, 0.04);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-3px);

  border-color: #d4d9ea;

  box-shadow:
    0 16px 35px rgba(31, 42, 93, 0.08);
}


/* =========================
   ICON
========================= */

.stat-icon {
  width: 46px;
  min-width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #f25791;

  font-size: 27px;
}


/* =========================
   CONTENT
========================= */

.stat-content {
  min-width: 0;
}

.stat-content h3 {
  margin: 0 0 7px;

  color: #172052;

  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.stat-content p {
  margin: 0;

  color: #707b91;

  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}


/* =========================
   LAPTOP
========================= */

@media (max-width: 1200px) {

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

  .stats-strip {
    padding: 30px 18px;
  }

  .stat-card {
    min-height: 90px;

    padding: 18px 22px;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

  .stats-strip {
    padding: 24px 14px;
  }

  .stats-container {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .stat-card {
    min-height: 84px;

    border-radius: 20px;

    padding: 16px 20px;
  }

  .stat-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;

    font-size: 24px;
  }

  .stat-content h3 {
    font-size: 17px;
  }

  .stat-content p {
    font-size: 13px;
  }

}


.college-courses {
  padding: 70px 20px 80px;
  background: #fff;
}

.college-courses-container {
  max-width: 1380px;
  margin: 0 auto;
}

.college-courses-heading {
  max-width: 750px;
  margin: 0 auto 48px;
  text-align: center;
}

.college-courses-heading h2 {
  margin: 0 0 14px;
  color: #10152f;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -1.5px;
}

.college-courses-heading p {
  margin: 0;
  color: #6f7b95;
  font-size: 17px;
  line-height: 1.45;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.course-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e6f0;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(24, 36, 91, .05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(24, 36, 91, .10);
}

.course-image {
  height: 175px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.course-card-content {
  padding: 18px 18px 20px;
}

.course-card h3 {
  margin: 0 0 10px;
  color: #172052;
  font-size: 24px;
  font-weight: 800;
}

.course-subtitle {
  min-height: 38px;
  margin: 0 0 14px;
  color: #6f788a;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.course-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  margin-bottom: 18px;
  border-radius: 30px;
  background: #f5568d;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.course-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #f5568d;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.course-link span {
  font-size: 18px;
  transition: transform .2s ease;
}

.course-link:hover span {
  transform: translateX(4px);
}

.course-card.coming-soon .course-image {
  position: relative;
}

.course-card.coming-soon .course-image::after {
  content: "COMING SOON";
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,.55);
  color: #121629;

  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .course-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 850px) {
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .college-courses {
    padding-top: 55px;
  }
}

@media (max-width: 576px) {
  .college-courses {
    padding: 45px 14px 55px;
  }

  .college-courses-heading {
    margin-bottom: 32px;
  }

  .college-courses-heading h2 {
    font-size: 36px;
  }

  .college-courses-heading p {
    font-size: 15px;
  }

  .course-grid {
    grid-template-columns: 1fr;
  }

  .course-image {
    height: 210px;
  }
}




/* =========================================
   JOURNEY SECTION
========================================= */

.journey-section {
  width: 100%;
  padding: 60px 20px 80px;
  background: #fff;
  overflow: hidden;
}

.journey-container {
  max-width: 1300px;
  margin: 0 auto;
}


/* =========================================
   TITLE
========================================= */

.journey-heading {
  max-width: 900px;
  margin: 0 auto 45px;
  text-align: center;
}

.journey-heading h2 {
  margin: 0 0 12px;

  color: #10162f;

  font-size: 50px;
  font-weight: 800;
  line-height: 1.05;

  letter-spacing: -1.5px;
}

.journey-heading p {
  margin: 0;

  color: #727e96;

  font-size: 16px;
  line-height: 1.5;
}


/* =========================================
   MAP
========================================= */

.journey-map {
  position: relative;

  width: 100%;
  height: 650px;
}


/* =========================================
   SVG PATH
========================================= */

.journey-track {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  z-index: 1;

  pointer-events: none;
}


/* =========================================
   STEP WRAPPER
========================================= */

.journey-step {
  position: absolute;

  width: 210px;

  text-align: center;

  z-index: 5;
}

.journey-step p {
  width: 190px;

  margin: 5px auto 0;

  color: #5c6881;

  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}


/* =========================================
   PIN
========================================= */

.journey-pin {
  position: relative;

  width: 145px;
  height: 165px;

  margin: 0 auto;
}


/*
   Blue pin body
*/
.journey-pin::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 130px;
  height: 130px;

  background: #273580;

  transform:
    translateX(-50%)
    rotate(-45deg);

  border-radius:
    50% 50% 50% 0;

  z-index: 1;
}


/*
   White inner circle
*/
.journey-pin-inner {
  position: absolute;

  top: 11px;
  left: 50%;

  width: 108px;
  height: 108px;

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  border-radius: 50%;

  z-index: 2;
}


/* icon */
.journey-pin-inner i {
  margin-bottom: 6px;

  color: #f65a91;

  font-size: 22px;
}


/* title */
.journey-pin-inner strong {
  color: #151d4d;

  font-size: 12px;
  font-weight: 800;
  line-height: 1.08;
}


/* =========================================
   POSITIONS
========================================= */

/* Choose Specialty */
.step-1 {
  top: 15px;
  left: 1%;
}


/* Eligibility */
.step-2 {
  top: 105px;
  left: 28%;
}


/* Choose Hospital */
.step-3 {
  top: 15px;
  left: 58%;
}


/* Hospital Admission */
.step-4 {
  top: 250px;
  right: 0;
}


/* Academic Clinical */
.step-5 {
  top: 390px;
  left: 58%;
}


/* Membership */
.step-6 {
  top: 435px;
  left: 32%;
}


/* Global Career */
.step-7 {
  top: 355px;
  left: 4%;
}


/* =========================================
   MOVING BALL
========================================= */

.journey-moving-ball {
  filter:
    drop-shadow(0 0 5px rgba(245, 88, 143, .9))
    drop-shadow(0 0 12px rgba(245, 88, 143, .4));
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .journey-heading h2 {
    font-size: 42px;
  }

  .journey-map {
    height: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 45px 20px;
  }

  .journey-track {
    display: none;
  }

  .journey-step {
    position: static;

    width: 100%;
  }

  .journey-step p {
    width: 100%;
    max-width: 240px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

  .journey-section {
    padding: 45px 15px;
  }

  .journey-heading {
    margin-bottom: 35px;
  }

  .journey-heading h2 {
    font-size: 34px;
  }

  .journey-heading p {
    font-size: 14px;
  }

  .journey-map {
    grid-template-columns: 1fr;

    gap: 35px;
  }

}



.experience-section {
  padding: 70px 20px 80px;
  background: #ffffff;
}

.experience-container {
  max-width: 1380px;
  margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.experience-heading {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.experience-heading h2 {
  margin: 0 0 14px;

  color: #10152f;

  font-size: clamp(38px, 4vw, 54px);
  font-weight: 800;
  line-height: .95;

  letter-spacing: -1.4px;
}

.experience-heading p {
  margin: 0;

  color: #748097;

  font-size: 15px;
  line-height: 1.5;
}


/* =========================
   MAIN LAYOUT
========================= */

.experience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 30px;
}


/* =========================
   LEFT IMAGE
========================= */

.experience-media {
  min-height: 460px;

  padding: 14px;

  background: #ffffff;

  border: 1px solid #e0e5ef;
  border-radius: 26px;

  box-shadow:
    0 12px 35px rgba(30, 41, 90, .06);
}

.experience-media img {
  width: 100%;
  height: 100%;

  min-height: 430px;

  display: block;

  object-fit: cover;

  border-radius: 20px;

  transition:
    opacity .25s ease,
    transform .25s ease;
}

.experience-media img.is-changing {
  opacity: 0;
  transform: scale(.985);
}


/* =========================
   RIGHT BOX
========================= */

.experience-content-area {
  padding: 20px;

  background: #ffffff;

  border: 1px solid #e0e5ef;
  border-radius: 26px;

  box-shadow:
    0 12px 35px rgba(30, 41, 90, .06);
}


/* =========================
   TABS
========================= */

.experience-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 12px;

  margin-bottom: 18px;
}

.experience-tab {
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 10px 14px;

  border: 1px solid #dde2ed;
  border-radius: 14px;

  background: #ffffff;
  color: #182052;

  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;

  cursor: pointer;

  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.experience-tab i {
  color: #f35b91;

  font-size: 15px;
}

.experience-tab:hover {
  transform: translateY(-2px);
}

.experience-tab.active {
  background: #29368f;
  border-color: #29368f;
  color: #ffffff;
}

.experience-tab.active i {
  color: #ffffff;
}


/* =========================
   DETAIL BOX
========================= */

.experience-detail {
  position: relative;

  padding: 28px 24px 26px;

  overflow: hidden;

  border: 1px solid #e0e5ef;
  border-radius: 22px;

  background: #ffffff;
}

.experience-detail::after {
  content: "";

  position: absolute;

  width: 130px;
  height: 130px;

  top: -25px;
  right: -25px;

  background: #fff0f6;

  border-radius: 50%;

  z-index: 0;
}

.experience-detail > * {
  position: relative;
  z-index: 1;
}


/* =========================
   EYEBROW
========================= */

.experience-eyebrow {
  display: flex;
  align-items: center;

  gap: 7px;

  margin-bottom: 18px;

  color: #f35b91;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: .2px;
}

.experience-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #f35b91;
}


/* =========================
   CONTENT
========================= */

.experience-detail h3 {
  margin: 0 0 12px;

  color: #172052;

  font-size: 20px;
  font-weight: 800;
}

.experience-detail p {
  margin: 0 0 15px;

  color: #6f7a91;

  font-size: 14px;
  line-height: 1.55;
}

.experience-detail ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.experience-detail li {
  position: relative;

  margin-bottom: 10px;

  padding-left: 21px;

  color: #4f5a72;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.experience-detail li::before {
  content: "✓";

  position: absolute;

  top: 0;
  left: 0;

  color: #f35b91;

  font-weight: 900;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

  .experience-layout {
    grid-template-columns: 1fr;
  }

  .experience-media {
    min-height: auto;
  }

  .experience-media img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

  .experience-section {
    padding: 45px 14px 55px;
  }

  .experience-heading h2 {
    font-size: 34px;
  }

  .experience-heading p {
    font-size: 14px;
  }

  .experience-tabs {
    grid-template-columns: 1fr;
  }

  .experience-content-area {
    padding: 14px;
  }

  .experience-detail {
    padding: 22px 18px;
  }

}


.experience-panel[hidden] {
    display: none !important;
}

.experience-panel.active {
    display: block;
}



.testimonial-section {
  padding: 70px 0 80px;
  background: #fff;
  overflow: hidden;
}

.testimonial-container {
  max-width: 1380px;
  margin: 0 auto;
}

.testimonial-heading {
  max-width: 850px;
  margin: 0 auto 38px;
  padding: 0 20px;
  text-align: center;
}

.testimonial-heading h2 {
  margin: 0 0 14px;
  color: #10152f;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -1.5px;
}

.testimonial-heading p {
  margin: 0;
  color: #728098;
  font-size: 16px;
  line-height: 1.5;
}


/* OUTER BOX */

.testimonial-marquee {
  position: relative;
  overflow: hidden;

  padding: 28px 0;

  border: 1px solid #e1e5ef;
  border-radius: 28px;

  box-shadow:
    0 14px 40px rgba(30, 42, 90, .05);
}


/* fade left + right */

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;

  width: 90px;

  z-index: 5;

  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;

  background: linear-gradient(
    to right,
    #ffffff 15%,
    rgba(255,255,255,0)
  );
}

.testimonial-marquee::after {
  right: 0;

  background: linear-gradient(
    to left,
    #ffffff 15%,
    rgba(255,255,255,0)
  );
}


/* MOVING TRACK */

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 20px;

  animation:
    testimonialScroll 36s linear infinite;

  will-change: transform;
}


/* pause on hover */

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}


/* CARD */

.testimonial-card {
  width: 315px;
  min-width: 315px;
  height: 285px;

  display: flex;
  flex-direction: column;

  padding: 22px 24px;

  background: #fff;

  border: 1px solid #e0e5ef;
  border-radius: 22px;

  box-shadow:
    0 10px 28px rgba(27, 39, 90, .04);
}

.testimonial-quote {
  height: 32px;

  color: #f3548c;

  font-size: 46px;
  font-weight: 900;
  line-height: .8;
}

.testimonial-text {
  flex: 1;

  overflow-y: auto;

  padding-right: 8px;
  margin-top: 4px;

  color: #5f6b82;

  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;

  scrollbar-width: thin;
}

.testimonial-text::-webkit-scrollbar {
  width: 6px;
}

.testimonial-text::-webkit-scrollbar-thumb {
  background: #8f8f8f;
  border-radius: 10px;
}

.testimonial-text::-webkit-scrollbar-track {
  background: transparent;
}

.testimonial-author {
  margin-top: 16px;
}

.testimonial-author strong {
  display: block;

  margin-bottom: 4px;

  color: #172052;

  font-size: 15px;
  font-weight: 800;
}

.testimonial-author span {
  color: #717b90;

  font-size: 12px;
  font-weight: 800;
}


/* INFINITE LOOP */

@keyframes testimonialScroll {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 10px));
  }

}


/* TABLET */

@media (max-width: 991px) {

  .testimonial-card {
    width: 290px;
    min-width: 290px;
  }

  .testimonial-track {
    animation-duration: 30s;
  }

}


/* MOBILE */

@media (max-width: 576px) {

  .testimonial-section {
    padding: 45px 0 55px;
  }

  .testimonial-heading h2 {
    font-size: 34px;
  }

  .testimonial-heading p {
    font-size: 14px;
  }

  .testimonial-marquee {
    border-radius: 20px;
  }

  .testimonial-card {
    width: 280px;
    min-width: 280px;
    height: 270px;
  }

  .testimonial-track {
    gap: 14px;

    animation-duration: 26s;
  }

  .testimonial-marquee::before,
  .testimonial-marquee::after {
    width: 35px;
  }

}


.testimonial-track {
    display: flex;
    width: max-content;
    gap: 20px;

    animation: testimonialScroll 36s linear infinite;
}

@keyframes testimonialScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 10px));
    }

}

.testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
}




.mentors-section {
    padding: 65px 0 75px;
    background: #11183f;
    overflow: hidden;
}

.mentors-heading {
    max-width: 1120px;
    margin: 0 auto 36px;
    padding: 0 20px;
}

.mentors-heading h2 {
    margin: 0 0 14px;

    color: #fff;

    font-size: clamp(38px, 4vw, 56px);
    font-weight: 800;
    line-height: 1;
}

.mentors-heading p {
    max-width: 850px;
    margin: 0;

    color: rgba(255,255,255,.86);

    font-size: 16px;
    line-height: 1.45;
}


/* ==================================
   ROW
================================== */

.mentor-row {
    width: 100%;
    overflow: hidden;

    margin-bottom: 16px;
}

.mentor-row:last-child {
    margin-bottom: 0;
}


/* ==================================
   TRACK
================================== */

.mentor-track {
    display: flex;
    flex-wrap: nowrap;

    width: max-content;

    gap: 16px;

    will-change: transform;
}


/* TOP ROW */

.mentor-track-left {
    animation:
        mentorMoveLeft 24s linear infinite;
}


/* BOTTOM ROW */

.mentor-track-right {
    animation:
        mentorMoveRight 26s linear infinite;
}


/* Don't pause — continuous */

.mentor-track {
    animation-play-state: running !important;
}


/* ==================================
   CARD
================================== */

.mentor-card {
    width: 360px;
    min-width: 360px;
    height: 170px;

    display: grid;

    grid-template-columns:
        44% 56%;

    overflow: hidden;

    background: #1d2346;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 18px;

    flex-shrink: 0;
}


/* IMAGE */

.mentor-image {
    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #f4f4f4;
}

.mentor-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;
}


/* CONTENT */

.mentor-content {
    padding: 18px 15px;

    color: #fff;
}

.mentor-badge {
    display: inline-flex;

    margin-bottom: 10px;
    padding: 5px 9px;

    border:
        1px solid
        rgba(255,255,255,.22);

    border-radius: 50px;

    background:
        rgba(255,255,255,.08);

    color: #fff;

    font-size: 9px;
    font-weight: 800;
}

.mentor-content h3 {
    margin: 0 0 13px;

    color: #fff;

    font-size: 18px;
    font-weight: 800;
    line-height: 1.05;
}

.mentor-content strong {
    display: block;

    margin-bottom: 7px;

    color: #fff;

    font-size: 11px;
    font-weight: 800;
}

.mentor-content p {
    margin: 0;

    color:
        rgba(255,255,255,.82);

    font-size: 11px;
    line-height: 1.3;
}


/* ==================================
   INFINITE MOVEMENT
================================== */

@keyframes mentorMoveLeft {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


@keyframes mentorMoveRight {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}


/* ==================================
   EDGE FADE
================================== */

.mentors-marquee {
    position: relative;
}

.mentors-marquee::before,
.mentors-marquee::after {

    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    width: 90px;

    z-index: 10;

    pointer-events: none;
}

.mentors-marquee::before {

    left: 0;

    background:
        linear-gradient(
            to right,
            #11183f 5%,
            rgba(17,24,63,0)
        );
}

.mentors-marquee::after {

    right: 0;

    background:
        linear-gradient(
            to left,
            #11183f 5%,
            rgba(17,24,63,0)
        );
}


/* TABLET */

@media (max-width: 991px) {

    .mentor-card {
        width: 330px;
        min-width: 330px;
        height: 160px;
    }

    .mentor-track-left {
        animation-duration: 20s;
    }

    .mentor-track-right {
        animation-duration: 22s;
    }

}


/* MOBILE */

@media (max-width: 576px) {

    .mentors-section {
        padding: 45px 0 55px;
    }

    .mentors-heading {
        text-align: center;
    }

    .mentors-heading h2 {
        font-size: 34px;
    }

    .mentor-card {
        width: 290px;
        min-width: 290px;
        height: 150px;
    }

    .mentor-track-left {
        animation-duration: 18s;
    }

    .mentor-track-right {
        animation-duration: 20s;
    }

    .mentors-marquee::before,
    .mentors-marquee::after {
        width: 35px;
    }

}



/* =========================================
   RECENT UPDATES
========================================= */

.recent-updates-section {
    padding: 70px 20px 90px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcff 100%
        );
}

.recent-updates-container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.recent-updates-heading {
    max-width: 780px;

    margin: 0 auto 50px;

    text-align: center;
}

.recent-updates-heading h2 {
    margin: 0 0 12px;

    color: #10152f;

    font-size: clamp(40px, 4vw, 56px);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -1.5px;
}

.recent-updates-heading p {
    max-width: 700px;

    margin: 0 auto;

    color: #71809a;

    font-size: 16px;

    line-height: 1.5;
}


/* =========================================
   GRID
========================================= */

.recent-updates-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 16px;

    align-items: stretch;
}


/* =========================================
   CARD
========================================= */

.recent-update-card {
    min-height: 415px;

    display: flex;
    flex-direction: column;

    padding: 22px;

    background: #ffffff;

    border:
        1px solid #e1e5ef;

    border-radius: 22px;

    box-shadow:
        0 14px 35px
        rgba(28, 40, 90, .05);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.recent-update-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px
        rgba(28, 40, 90, .10);
}


/* =========================================
   CATEGORY
========================================= */

.recent-update-category {
    display: inline-flex;

    align-self: flex-start;

    margin-bottom: 18px;

    padding:
        7px 11px;

    background: #f4f6fb;

    border-radius: 50px;

    color: #30409d;

    font-size: 10px;

    font-weight: 800;

    line-height: 1;

    text-transform: uppercase;

    letter-spacing: .25px;
}


/* =========================================
   TITLE
========================================= */

.recent-update-card h3 {
    margin: 0 0 14px;

    color: #172052;

    font-size: 20px;

    font-weight: 800;

    line-height: 1.18;

    letter-spacing: -.4px;
}


/* =========================================
   EXCERPT
========================================= */

.recent-update-excerpt {
    margin: 0 0 20px;

    color: #748098;

    font-size: 14px;

    line-height: 1.55;
}


/* =========================================
   VIEW MORE
========================================= */

.recent-update-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: auto;

    color: #f3538b;

    font-size: 13px;

    font-weight: 800;

    text-decoration: none;
}

.recent-update-link span {
    font-size: 18px;

    transition:
        transform .2s ease;
}

.recent-update-link:hover span {
    transform:
        translateX(4px);
}


/* =========================================
   EMPTY
========================================= */

.recent-updates-empty {
    text-align: center;

    color: #748098;
}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1200px) {

    .recent-updates-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .recent-updates-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .recent-update-card {
        min-height: 360px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .recent-updates-section {
        padding:
            45px 14px
            55px;
    }

    .recent-updates-heading {
        margin-bottom: 32px;
    }

    .recent-updates-heading h2 {
        font-size: 36px;
    }

    .recent-updates-heading p {
        font-size: 14px;
    }

    .recent-updates-grid {
        grid-template-columns: 1fr;
    }

    .recent-update-card {
        min-height: auto;

        padding: 20px;
    }

}
.faq-section {
    padding: 70px 20px 80px;
    background: #ffffff;
}

.faq-container {
    max-width: 1050px;
    margin: 0 auto;
}


/* Heading */

.faq-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.faq-heading h2 {
    margin: 0 0 10px;

    color: #10152f;

    font-size: clamp(38px, 4vw, 54px);
    font-weight: 800;
    line-height: 1;

    letter-spacing: -1.2px;
}

.faq-heading p {
    margin: 0;

    color: #71809a;

    font-size: 15px;
    line-height: 1.5;
}


/* FAQ list */

.faq-list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}


/* Item */

.faq-item {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e1e5ef;
    border-radius: 18px;

    box-shadow:
        0 8px 24px rgba(27, 40, 90, .04);

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.faq-item.active {
    box-shadow:
        0 14px 35px rgba(27, 40, 90, .07);
}


/* Question */

.faq-question {
    width: 100%;

    min-height: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 17px 20px;

    border: 0;

    background: transparent;

    cursor: pointer;

    text-align: left;
}

.faq-question-text {
    color: #172052;

    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}


/* +/- circle */

.faq-toggle {
    width: 28px;
    min-width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f4f6fb;

    color: #30409d;

    font-size: 18px;
    font-weight: 800;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.faq-item.active .faq-toggle {
    background: #3442a3;
    color: #ffffff;
}


/* Answer */

.faq-answer {
    overflow: hidden;
}

.faq-answer-inner {
    padding: 0 20px 18px;

    color: #748098;

    font-size: 13px;
    line-height: 1.6;
}

.faq-answer-inner p {
    margin: 0;
}


/* Mobile */

@media (max-width: 576px) {

    .faq-section {
        padding: 45px 14px 55px;
    }

    .faq-heading {
        margin-bottom: 30px;
    }

    .faq-heading h2 {
        font-size: 34px;
    }

    .faq-heading p {
        font-size: 14px;
    }

    .faq-question {
        padding: 15px 16px;
    }

    .faq-question-text {
        font-size: 13px;
    }

    .faq-answer-inner {
        padding:
            0 16px
            16px;
    }

}