:root {
  --navy: #052861;
  --navy-2: #062e72;
  --blue: #064dad;
  --blue-2: #0b5ed7;
  --ink: #092550;
  --muted: #4f607c;
  --soft: #f5faff;
  --soft-2: #eef6ff;
  --line: #d7e7fb;
  --white: #ffffff;
  --shadow-sm: 0 8px 22px rgba(5, 40, 97, 0.07);
  --shadow: 0 18px 42px rgba(5, 40, 97, 0.12);
  --radius: 14px;
  --container: 1200px;
}

/* ========================================================= Base Reset ========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

.gau-container {
  width: min(calc(100% - 96px), var(--container));
  margin-inline: auto;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--navy);
}

h3 {
  color: var(--navy);
  font-weight: 900;
}

.btn {
  border-radius: 9px;
  font-weight: 800;
  box-shadow: none !important;
}

.btn:focus-visible,
.nav-link:focus-visible,
.top-strip a:focus-visible {
  outline: 3px solid rgba(11, 94, 215, 0.22);
  outline-offset: 3px;
}

/* ========================================================= Header ========================================================= */
.gau-header,
.main-navbar,
.hero-banner {
  width: 100%;
}

.gau-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(7, 34, 80, 0.08);
}

/* Top Strip */
.top-strip {
  background: #082f6f;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.top-strip-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.top-strip a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.96;
}

.top-strip a:hover {
  opacity: 1;
  color: #ffffff;
}

.top-strip i {
  font-size: 13px;
}

.top-strip .small-icon {
  font-size: 10px;
  margin-left: -4px;
}

/* Main Navbar */
.main-navbar {
  min-height: 76px;
  padding: 0;
  background: #ffffff;
  border-bottom: 1px solid #e6eef9;
}

.nav-container {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}

.brand-logo {
  width: 150px;
  height: auto;
}

.navbar-toggler {
  margin-left: auto;
  border: 1px solid #bed4f5;
  border-radius: 8px;
  padding: 6px 9px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(6, 77, 173, 0.16);
}

.main-menu .nav-link {
  position: relative;
  color: #061d4a;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 800;
  padding: 29px 0 27px !important;
}

.main-menu .nav-link:hover,
.main-menu .nav-link.active,
.main-menu .show>.nav-link {
  color: var(--blue);
}

.main-menu .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 21px;
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transform: translateX(-50%);
}

.dropdown-toggle::after {
  margin-left: 5px;
  vertical-align: 2px;
}

.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 8px;
}

.dropdown-item {
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
}

.dropdown-item:hover {
  color: var(--blue);
  background: var(--soft-2);
}

/* Navbar CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.btn-book {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.15;
  padding: 11px 22px;
}

.btn-book {
  min-width: 116px;
  color: #ffffff;
  background: var(--blue);
  border: 1px solid var(--blue);
}

.btn-book:hover {
  color: #ffffff;
  background: #063f92;
  border-color: #063f92;
  transform: translateY(-1px);
}



/* Desktop Navbar Layout */
@media (min-width: 1200px) {
  .main-navbar .navbar-collapse {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    margin-left: 20px;
  }

  .main-menu {
    grid-column: 2;
    justify-content: center;
    align-items: center;
    gap: 27px;
    margin: 0 !important;
    padding: 0;
  }

  .nav-cta {
    grid-column: 3;
    justify-self: end;
  }
}

/* ========================================================= Hero Section ========================================================= */
.hero-banner {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(90deg, #f9fcff 0%, #eff7ff 43%, #ffffff 100%);
}

.hero-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e8f0fb;
  z-index: 4;
}

.hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 68.5%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center right;
  z-index: 1;
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #f9fcff 0%, #f9fcff 28%, rgba(249, 252, 255, 0.94) 37%, rgba(249, 252, 255, 0.54) 51%, rgba(249, 252, 255, 0.08) 68%, rgba(249, 252, 255, 0) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 350px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 490px;
  padding: 26px 0 34px;
}

.hero-copy h1 {
  max-width: 485px;
  margin: 0 0 18px;
  color: #06265d;
  font-size: clamp(38px, 4.25vw, 56px);
  line-height: 0.98;
}

.hero-copy p {
  max-width: 430px;
  margin: 0 0 19px;
  color: #14305e;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary-blue,
.btn-outline-blue {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 19px;
  font-size: 13px;
}

.btn-primary-blue {
  color: #ffffff;
  background: var(--blue);
  border: 1px solid var(--blue);
}

.btn-primary-blue:hover {
  color: #ffffff;
  background: #063f92;
  border-color: #063f92;
  transform: translateY(-1px);
}

.btn-outline-blue {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.86);
  border: 1.5px solid var(--blue);
}

.btn-outline-blue:hover {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
}

/* ========================================================= Fact Band ========================================================= */
.facts-wrap {
  padding: 0 0 34px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.facts-band {
  min-height: 125px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  transform: translateY(0);
}

.fact-card {
  min-height: 125px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 23px 28px;
  border-right: 1px solid var(--line);
}

.fact-card:last-child {
  border-right: 0;
}

.fact-card i {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
}

.fact-card h3 {
  margin: 0 0 5px;
  font-size: 17px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.fact-card p {
  margin: 0;
  color: #405071;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

/* ========================================================= Shared Sections ========================================================= */
.section {
  padding: 34px 0;
}

.why-choose-section {
  padding-top: 6px;
}

.section-title {
  margin-bottom: 18px;
}

.section-title h2,
.georgia-panel h2,
.program-heading h2,
.life-intro h2,
.career-box h2,
.cta-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 2.25vw, 34px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.why-card,
.georgia-panel,
.image-card,
.program-card,
.step-card,
.life-grid,
.life-card,
.career-box,
.support-card,
.enquiry-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.why-card,
.image-card,
.program-card,
.life-card,
.support-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.why-card:hover,
.image-card:hover,
.program-card:hover,
.life-card:hover,
.support-card:hover {
  transform: translateY(-4px);
  border-color: #bed8f8;
  box-shadow: var(--shadow);
}

.why-card {
  height: 100%;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 14px 18px;
  text-align: center;
}

.why-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: var(--blue-2);
  font-size: 32px;
}

.why-card h3,
.image-card h3,
.life-card h3,
.support-card h3,
.career-item h3,
.step-card h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.why-card p,
.image-card p,
.life-intro p,
.support-card p,
.career-item p,
.step-card p,
.georgia-panel li,
.program-card li {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 650;
}

/* ========================================================= Georgia Section ========================================================= */
.georgia-section {
  padding: 14px 0 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.georgia-container {
  max-width: 100%;
  width: 100%;
  padding-left: 18px;
  padding-right: 18px;
}

.georgia-wrapper {
  width: 100%;
  padding: 18px;
  border: 1px solid #e6eef9;
  border-radius: 18px;
  background: #f8fbff;
  box-shadow: 0 8px 24px rgba(7, 34, 80, 0.06);
}

.georgia-panel {
  height: 100%;
  padding: 26px 22px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e6eef9;
  box-shadow: none;
}

.georgia-panel h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.05;
}

.georgia-panel ul {
  list-style: none;
  display: grid;
  gap: 17px;
  padding: 0;
  margin: 0;
}

.georgia-panel li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 650;
}

.georgia-panel i {
  color: var(--blue);
  font-size: 16px;
  line-height: 1;
  margin-top: 1px;
}

.georgia-panel strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 13.5px;
  line-height: 1.25;
  font-weight: 900;
}

/* Georgia Overlay Image Cards */
.georgia-card-col {
  display: flex;
}

.georgia-overlay-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 310px;
  overflow: hidden;
  border-radius: 16px;
  background: #082f6f;
  border: 1px solid #e6eef9;
  box-shadow: 0 8px 22px rgba(7, 34, 80, 0.08);
}

.georgia-card-img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.georgia-overlay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 29, 74, 0.04) 0%, rgba(6, 29, 74, 0.12) 38%, rgba(6, 29, 74, 0.72) 74%, rgba(6, 29, 74, 0.95) 100%);
  pointer-events: none;
}

.georgia-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 18px 20px;
  color: #ffffff;
}

.georgia-card-content h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.georgia-card-content p {
  margin: 0;
  max-width: 95%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}

.georgia-overlay-card:hover {
  transform: translateY(-4px);
  border-color: #bed8f8;
  box-shadow: 0 14px 34px rgba(7, 34, 80, 0.16);
}

.georgia-overlay-card:hover .georgia-card-img {
  transform: scale(1.06);
}

/* =========================================================
   HOME PROGRAM SECTION - IMAGE BACKGROUND CARD DESIGN
========================================================= */

.hp-program-section {
  padding: 44px 0 48px;
  background:
    radial-gradient(circle at 8% 0%, rgba(6, 77, 173, 0.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.hp-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.hp-program-card {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  border: 1px solid #cfe1f7;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(5, 40, 97, 0.10);
  isolation: isolate;
  transition: 0.28s ease;
}

.hp-program-card:hover {
  transform: translateY(-5px);
  border-color: #a9c9f2;
  box-shadow: 0 22px 48px rgba(5, 40, 97, 0.16);
}

/* Image from HTML */
.hp-program-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transition: transform 0.45s ease;
}

.hp-program-card:hover .hp-program-bg {
  transform: scale(1.06);
}

/* White fade over image */
.hp-program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.96) 38%,
      rgba(255, 255, 255, 0.78) 62%,
      rgba(255, 255, 255, 0.28) 82%,
      rgba(255, 255, 255, 0.08) 100%);
  pointer-events: none;
}

/* Soft blue depth on right */
.hp-program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 95% 10%, rgba(6, 77, 173, 0.16), transparent 30%),
    linear-gradient(90deg,
      rgba(6, 77, 173, 0) 0%,
      rgba(6, 77, 173, 0.03) 56%,
      rgba(5, 40, 97, 0.14) 100%);
  pointer-events: none;
}

.hp-program-content {
  position: relative;
  z-index: 3;
  width: 64%;
  min-height: 292px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 34px;
}

.hp-program-content h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.hp-program-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 18px;
}

.hp-program-list li {
  color: #263d67;
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 800;
}

.hp-program-list li::marker {
  color: var(--blue);
}

.hp-program-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}

.hp-program-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.hp-program-meta i {
  color: var(--blue);
  font-size: 14px;
}

.hp-program-btn {
  width: fit-content;
  min-width: 126px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 10px;
  background: var(--blue);
  color: #ffffff;
  border: 1px solid var(--blue);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(6, 77, 173, 0.22);
}

.hp-program-btn:hover {
  color: #ffffff;
  background: #063f92;
  border-color: #063f92;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 991.98px) {
  .hp-program-grid {
    grid-template-columns: 1fr;
  }

  .hp-program-card {
    min-height: 300px;
  }

  .hp-program-content {
    min-height: 300px;
  }
}

@media (max-width: 767.98px) {
  .hp-program-content {
    width: 74%;
    padding: 30px 26px;
  }

  .hp-program-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  .hp-program-section {
    padding: 36px 0 42px;
  }

  .hp-program-card {
    min-height: 340px;
    border-radius: 16px;
  }

  .hp-program-card::before {
    background:
      linear-gradient(90deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.94) 62%,
        rgba(255, 255, 255, 0.45) 100%);
  }

  .hp-program-content {
    width: 86%;
    min-height: 340px;
    padding: 26px 22px;
  }

  .hp-program-content h2 {
    font-size: 28px;
  }

  .hp-program-list li {
    font-size: 13px;
  }

  .hp-program-meta {
    gap: 12px;
  }

  .hp-program-meta span {
    font-size: 12.5px;
  }
}

/* =========================================================
   ADMISSION PROCESS - SAME STYLE AS REFERENCE
========================================================= */

.home-admission-section {
  padding: 50px 0 56px;
  background:
    radial-gradient(circle at 10% 0%, rgba(6, 77, 173, 0.07), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  overflow: hidden;
}

.home-section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
}

.home-section-heading h2 {
  margin: 0 0 9px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.home-section-heading p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

.admission-process-shell {
  position: relative;
  padding: 28px 20px 18px;
  border: 1px solid #d9eaff;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(6, 77, 173, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 18px 44px rgba(5, 40, 97, 0.09);
}

.admission-process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.admission-process-line {
  position: absolute;
  left: 7.8%;
  right: 7.8%;
  top: 70px;
  height: 3px;
  z-index: 1;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(6, 77, 173, 0.16) 0%,
      var(--blue) 50%,
      rgba(6, 77, 173, 0.16) 100%);
}

.admission-process-item {
  position: relative;
  text-align: center;
}

.admission-process-icon {
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 8px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, #063f92 100%);
  color: #ffffff;
  box-shadow:
    0 12px 28px rgba(6, 77, 173, 0.26),
    0 0 0 1px rgba(6, 77, 173, 0.08);
}

.admission-process-icon i {
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

.admission-process-icon span {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #082f6f;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(8, 47, 111, 0.24);
}

.admission-process-card {
  min-height: 116px;
  padding: 20px 14px 18px;
  border: 1px solid #dcecff;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(7, 34, 80, 0.055);
  transition: 0.25s ease;
}

.admission-process-card h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.admission-process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 700;
}

.admission-process-item:hover .admission-process-icon {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(6, 77, 173, 0.34);
}

.admission-process-item:hover .admission-process-card {
  transform: translateY(-5px);
  border-color: #b7d6f8;
  box-shadow: 0 16px 34px rgba(7, 34, 80, 0.12);
}

/* Responsive */
@media (max-width: 1199.98px) {
  .admission-process-shell {
    overflow-x: auto;
    padding-bottom: 22px;
  }

  .admission-process-grid {
    min-width: 1060px;
  }

  .admission-process-line {
    min-width: 900px;
  }

  .admission-process-shell::-webkit-scrollbar {
    height: 6px;
  }

  .admission-process-shell::-webkit-scrollbar-track {
    background: #eef4fc;
    border-radius: 999px;
  }

  .admission-process-shell::-webkit-scrollbar-thumb {
    background: #b9d4f5;
    border-radius: 999px;
  }
}

@media (max-width: 767.98px) {
  .home-admission-section {
    padding: 42px 0 48px;
  }

  .home-section-heading {
    margin-bottom: 24px;
  }

  .home-section-heading h2 {
    font-size: 28px;
  }

  .home-section-heading p {
    font-size: 13.5px;
  }

  .admission-process-shell {
    border-radius: 22px;
    padding: 22px 14px 18px;
  }

  .admission-process-grid {
    min-width: 980px;
    gap: 14px;
  }

  .admission-process-icon {
    width: 72px;
    height: 72px;
  }

  .admission-process-icon i {
    font-size: 25px;
  }

  .admission-process-card {
    min-height: 110px;
    padding: 17px 12px 15px;
  }
}

/* ========================================================= Fee Section ========================================================= */
.fee-section {
  padding: 48px 0 56px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.fee-heading {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.fee-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 7px 15px;
  border: 1px solid #d8e8fb;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fee-heading h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.fee-heading p {
  max-width: 590px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

.fee-shell {
  padding: 18px;
  border: 1px solid #e6eef9;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(6, 77, 173, 0.08), transparent 32%), linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 38px rgba(7, 34, 80, 0.07);
}

/* Fee Left Image Card */
.fee-image-card {
  height: 100%;
  min-height: 430px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #e6eef9;
  background: #eef6ff;
  box-shadow: 0 14px 34px rgba(7, 34, 80, 0.08);
}

.fee-image-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.fee-image-card:hover img {
  transform: scale(1.05);
}

/* Fee Table Card */
.fee-table-card {
  height: 100%;
  padding: 22px;
  border: 1px solid #e6eef9;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(7, 34, 80, 0.055);
}

.fee-table-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.fee-table-top h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.fee-table-top p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}

.fee-table-top span {
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.fee-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #e6eef9;
  border-radius: 16px;
}

.fee-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

.fee-table thead {
  background: #f1f7ff;
}

.fee-table th {
  padding: 14px 16px;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fee-table td {
  padding: 15px 16px;
  border-top: 1px solid #e6eef9;
  color: #14305e;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
  vertical-align: middle;
}

.fee-table td strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 900;
}

.fee-table td small {
  display: block;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 650;
}

.fee-table tbody tr:hover {
  background: #f8fbff;
}

.fee-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid #e6eef9;
}

.fee-note i {
  color: var(--blue);
  font-size: 15px;
  margin-top: 2px;
}

.fee-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 650;
}

/* ========================================================= Life in Tbilisi ========================================================= */
.life-section {
  padding: 38px 0 42px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.life-grid {
  display: grid;
  grid-template-columns: 1.08fr repeat(5, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid #e6eef9;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(7, 34, 80, 0.06);
}

.life-intro {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.life-kicker {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 13px;
  border: 1px solid #d8e8fb;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.life-intro h2 {
  margin: 0 0 10px;
}

.life-intro p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 650;
}

.life-overlay-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border-radius: 16px;
  background: #082f6f;
  border: 1px solid #e6eef9;
  text-align: left;
  box-shadow: 0 8px 22px rgba(7, 34, 80, 0.08);
}

.life-card-img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.life-overlay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 29, 74, 0.02) 0%, rgba(6, 29, 74, 0.10) 35%, rgba(6, 29, 74, 0.70) 76%, rgba(6, 29, 74, 0.96) 100%);
  pointer-events: none;
}

.life-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 13px 16px;
}

.life-card-content h3 {
  min-height: auto;
  display: block;
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
  text-align: left;
  letter-spacing: -0.01em;
}

.life-overlay-card:hover {
  transform: translateY(-4px);
  border-color: #bed8f8;
  box-shadow: 0 14px 34px rgba(7, 34, 80, 0.16);
}

.life-overlay-card:hover .life-card-img {
  transform: scale(1.07);
}

/* ========================================================= Career and Recognition ========================================================= */
.career-section {
  padding: 0 0 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.career-box {
  overflow: hidden;
  padding: 22px 22px 10px;
}

.career-box h2 {
  margin-bottom: 14px;
}

.career-item {
  min-height: 122px;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: start;
  padding: 19px 16px;
  border-right: 1px solid var(--line);
}

.career-item i {
  grid-row: span 2;
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
}

.career-item p {
  grid-column: 2;
}

.row .col:last-child .career-item {
  border-right: 0;
}

.recognition-section {
  padding: 0 0 30px;
  background: #ffffff;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.support-card {
  min-height: 132px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  padding: 20px 17px;
}

.support-card i {
  color: var(--blue);
  font-size: 33px;
  line-height: 1;
}

.recognition-note {
  margin: 12px 0 0;
  text-align: center;
  color: #53617a;
  font-size: 12px;
  font-weight: 700;
}

/* FINAL CTA SECTION */
.home-final-cta-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.home-final-cta {
  max-width: fit-content;
  margin: 0 auto;
  padding: 64px 44px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.home-final-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(11, 61, 145, 0.10), transparent 65%);
  pointer-events: none;
}

.home-final-cta-content,
.home-final-cta-actions,
.home-final-cta-note {
  position: relative;
  z-index: 1;
}

.home-final-cta-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #0b3d91;
  background: #eef4ff;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.home-final-cta h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #101828;
  letter-spacing: -0.8px;
}

.home-final-cta p {
  max-width: 650px;
  margin: 20px auto 0;
  font-size: 17px;
  line-height: 1.75;
  color: #5f6b7a;
}

.home-final-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.home-final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.home-final-cta-btn-primary {
  color: #ffffff;
  background: #0b3d91;
  border: 1px solid #0b3d91;
  box-shadow: 0 12px 24px rgba(11, 61, 145, 0.22);
}

.home-final-cta-btn-primary:hover {
  color: #ffffff;
  background: #082f73;
  border-color: #082f73;
  transform: translateY(-2px);
}

.home-final-cta-btn-outline {
  color: #0b3d91;
  background: #ffffff;
  border: 1px solid #ccd7e5;
}

.home-final-cta-btn-outline:hover {
  color: #ffffff;
  background: #0b3d91;
  border-color: #0b3d91;
  transform: translateY(-2px);
}

.home-final-cta-note {
  margin-top: 22px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: #7a8698 !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .home-final-cta-section {
    padding: 60px 16px;
  }

  .home-final-cta {
    padding: 46px 22px;
    border-radius: 24px;
  }

  .home-final-cta h2 {
    font-size: 30px;
    letter-spacing: -0.4px;
  }

  .home-final-cta p {
    font-size: 15.5px;
  }

  .home-final-cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .home-final-cta-btn {
    width: 100%;
  }
}

/* =========================================================
   FOOTER - RESPONSIVE FIX
========================================================= */

.footer {
  padding: 38px 0 18px;
  background: #052452;
  color: #dce8ff;
  overflow: hidden;
}

.footer .gau-container {
  width: min(calc(100% - 80px), 1240px);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.65fr 1.35fr 0.8fr;
  gap: 34px;
  align-items: flex-start;
  width: 100%;
}

.footer-grid>div {
  min-width: 0;
}

.footer-logo {
  width: 150px;
  max-width: 100%;
  height: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-about-text {
  max-width: 270px;
  margin: 0;
  color: #dce8ff;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 500;
}

.footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.footer a,
.footer p {
  color: #dce8ff;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

.footer-links a,
.footer-programs a {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 8px;
  word-break: break-word;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-contact-list p,
.footer-contact-list a {
  margin: 0;
  word-break: break-word;
}

/* Social Media Icons */
.footer-social .socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.footer-social .socials a {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.footer-social .socials a i {
  display: block;
  line-height: 1;
  font-size: 17px;
}

.footer-social .socials a:hover {
  color: #052452;
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
}

.copyright {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: rgba(220, 232, 255, 0.78);
  font-size: 11.5px;
  line-height: 1.6;
  font-weight: 600;
}

/* =========================================================
   RESPONSIVE
========================================================= */

/* Medium Desktop */
@media (max-width: 1199.98px) {
  .footer .gau-container {
    width: min(calc(100% - 56px), 1140px);
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.8fr 0.8fr 1.2fr;
    gap: 30px;
  }

  .footer-social {
    grid-column: 1 / -1;
  }

  .footer-social .socials {
    margin-top: 10px;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .footer {
    padding: 36px 0 18px;
  }

  .footer .gau-container {
    width: min(calc(100% - 44px), 960px);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px 34px;
  }

  .footer-grid>div:first-child {
    grid-column: 1 / -1;
  }

  .footer-about-text {
    max-width: 620px;
  }

  .footer-social {
    grid-column: auto;
  }
}

/* Small Tablet */
@media (max-width: 767.98px) {
  .footer {
    padding: 34px 0 16px;
  }

  .footer .gau-container {
    width: min(calc(100% - 34px), 720px);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 26px;
  }

  .footer-grid>div:first-child {
    grid-column: 1 / -1;
  }

  .footer-contact-list {
    gap: 8px;
  }

  .footer-social .socials {
    gap: 10px;
  }

  .footer-social .socials a {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .footer {
    padding: 30px 0 16px;
  }

  .footer .gau-container {
    width: min(calc(100% - 28px), 540px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-logo {
    width: 138px;
    margin-bottom: 12px;
  }

  .footer-about-text {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.65;
  }

  .footer h3 {
    margin-bottom: 10px;
  }

  .footer-links a,
  .footer-programs a {
    margin-bottom: 7px;
  }

  .footer-social .socials {
    margin-top: 12px;
  }

  .copyright {
    margin-top: 24px;
    padding-top: 14px;
    font-size: 11px;
  }
}

/* Very Small Phones */
@media (max-width: 380px) {
  .footer .gau-container {
    width: min(calc(100% - 22px), 360px);
  }

  .footer-social .socials a {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    font-size: 15px;
  }

  .footer-social .socials a i {
    font-size: 15px;
  }
}
/* =========================================================
   FOOTER MOBILE ALIGNMENT FIX
========================================================= */

@media (max-width: 575.98px) {
  .footer {
    padding: 32px 0 18px;
    text-align: center;
  }

  .footer .gau-container {
    width: min(calc(100% - 32px), 540px);
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-grid>div {
    width: 100%;
    text-align: center;
  }

  .footer-logo {
    display: block;
    width: 150px;
    max-width: 80%;
    margin: 0 auto 14px;
  }

  .footer-about-text {
    max-width: 310px;
    margin: 0 auto;
    text-align: center;
    font-size: 12.5px;
    line-height: 1.65;
  }

  .footer h3 {
    margin: 0 0 12px;
    text-align: center;
    font-size: 15px;
  }

  .footer-links,
  .footer-programs,
  .footer-contact-list,
  .footer-social {
    text-align: center;
  }

  .footer-links a,
  .footer-programs a {
    width: auto;
    display: block;
    margin: 0 auto 9px;
    text-align: center;
  }

  .footer-contact-list {
    align-items: center;
    gap: 8px;
  }

  .footer-contact-list p,
  .footer-contact-list a {
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    word-break: break-word;
  }

  .footer-social .socials {
    justify-content: center;
    margin-top: 14px;
  }

  .copyright {
    max-width: 320px;
    margin: 26px auto 0;
    padding-top: 14px;
    text-align: center;
  }
}

/* ========================================================= Responsive CSS ========================================================= */
/* Large Desktop Adjustment */
@media (min-width: 1200px) and (max-width: 1280px) {
  .main-navbar .navbar-collapse {
    margin-left: 12px;
  }

  .main-menu {
    gap: 20px;
  }

  .main-menu .nav-link {
    font-size: 13px;
  }

  .btn-apply {
    min-width: 105px;
  }

  .btn-book {
    min-width: 144px;
  }
}

/* 1280px and below */
@media (max-width: 1280px) {
  .gau-container {
    width: min(calc(100% - 70px), var(--container));
  }

  .brand-logo {
    width: 236px;
  }
}

/* 1199px and below */
@media (max-width: 1199.98px) {
  .brand-logo {
    width: 135px;
  }

  .top-strip-inner {
    gap: 12px;
  }

  .top-left,
  .top-right {
    gap: 14px;
  }

  .nav-container {
    min-height: 70px;
    flex-wrap: wrap;
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 12px;
    padding: 12px 0 16px;
    border-top: 1px solid #e6eef9;
    background: #ffffff;
  }

  .main-menu {
    align-items: flex-start;
    gap: 0;
    margin: 0 !important;
    padding: 4px 0;
  }

  .main-menu .nav-link {
    display: inline-block;
    padding: 13px 0 !important;
    font-size: 14px;
    border-bottom: 1px solid #eef4fc;
  }

  .main-menu .nav-link.active::after {
    left: 0;
    bottom: 7px;
    width: 26px;
    transform: none;
  }

  .dropdown-menu {
    margin: 2px 0 10px;
    box-shadow: none;
    border-radius: 10px;
  }

  .nav-cta {
    margin-top: 12px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .btn-apply,
  .btn-book {
    min-height: 44px;
    padding: 11px 18px;
  }

  .hero-banner,
  .hero-content {
    min-height: 330px;
  }

  .hero-copy {
    width: 460px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 5vw, 48px);
  }

  .hero-image {
    width: 72%;
  }

  .hero-shade {
    background: linear-gradient(90deg, #f9fcff 0%, #f9fcff 34%, rgba(249, 252, 255, 0.92) 46%, rgba(249, 252, 255, 0.48) 62%, rgba(249, 252, 255, 0) 100%);
  }

  .fact-card {
    padding-inline: 20px;
    gap: 16px;
  }

  .fact-card h3 {
    font-size: 15px;
  }

  .georgia-wrapper {
    padding: 16px;
  }

  .georgia-panel {
    padding: 24px 20px;
  }

  .admission-timeline-wrap {
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .admission-timeline {
    min-width: 1040px;
  }

  .admission-timeline-wrap::-webkit-scrollbar {
    height: 6px;
  }

  .admission-timeline-wrap::-webkit-scrollbar-track {
    background: #eef4fc;
    border-radius: 999px;
  }

  .admission-timeline-wrap::-webkit-scrollbar-thumb {
    background: #b9d4f5;
    border-radius: 999px;
  }

  .life-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .life-intro {
    grid-column: span 3;
    min-height: auto;
  }

  .life-overlay-card,
  .life-card-img {
    min-height: 260px;
  }
}

/* 991px and below */
@media (max-width: 991.98px) {
  .gau-container {
    width: min(calc(100% - 48px), 900px);
  }

  .top-strip {
    padding: 7px 0;
    font-size: 12px;
  }

  .top-strip-inner {
    min-height: auto;
    padding: 8px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .top-left,
  .top-right {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }

  .top-strip a {
    white-space: normal;
    line-height: 1.25;
  }

  .main-navbar,
  .nav-container {
    min-height: 66px;
  }

  .brand-logo {
    width: 126px;
  }

  .hero-banner {
    min-height: auto;
    background: #f9fcff;
  }

  .hero-content {
    min-height: auto;
    padding: 58px 0 52px;
  }

  .hero-copy {
    width: 100%;
    max-width: 540px;
  }

  .hero-copy h1 {
    max-width: 520px;
    font-size: clamp(32px, 7vw, 46px);
    line-height: 1.04;
  }

  .hero-copy p {
    max-width: 500px;
    font-size: 15px;
  }

  .hero-image {
    width: 100%;
    opacity: 0.22;
    background-position: center right;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(249, 252, 255, 0.98) 0%, rgba(249, 252, 255, 0.92) 52%, rgba(249, 252, 255, 0.76) 100%);
  }

  .hero-pills {
    display: flex;
    width: 100%;
  }

  .hero-pills span {
    flex: 1 1 50%;
    border-bottom: 1px solid var(--line);
  }

  .hero-pills span:nth-child(even) {
    border-right: 0;
  }

  .hero-pills span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .facts-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-card:nth-child(2) {
    border-right: 0;
  }

  .fact-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .georgia-section {
    padding: 24px 0 34px;
  }

  .georgia-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .georgia-wrapper {
    padding: 14px;
  }

  .georgia-panel {
    height: auto;
  }

  .georgia-panel ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
  }

  .georgia-overlay-card,
  .georgia-card-img {
    min-height: 320px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-heading {
    min-height: auto;
  }

  .program-content {
    max-width: 70%;
  }

  .fee-section {
    padding: 40px 0 46px;
  }

  .fee-shell {
    padding: 14px;
    border-radius: 20px;
  }

  .fee-image-card,
  .fee-image-card img {
    min-height: 320px;
  }

  .fee-table-card {
    border-radius: 18px;
  }

  .recognition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section {
    padding: 44px 0;
  }

  .cta-shell {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }

  .cta-copy {
    padding: 0;
  }

  .enquiry-card {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 767px and below */
@media (max-width: 767.98px) {
  .gau-container {
    width: min(calc(100% - 30px), 560px);
  }

  /* Mobile Top Strip Icon Only */
  .top-strip {
    padding: 0;
    font-size: 0;
  }

  .top-strip-inner {
    min-height: 34px;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .top-left,
  .top-right {
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .top-strip a {
    width: 38px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 1;
    white-space: nowrap;
  }

  .top-strip a i {
    font-size: 14px;
    margin: 0;
  }

  .top-strip .small-icon {
    font-size: 10px;
    margin-left: -2px;
  }

  .main-navbar,
  .nav-container {
    min-height: 62px;
  }

  .nav-container {
    gap: 10px;
  }

  .brand-logo {
    width: 116px;
  }

  .navbar-toggler {
    padding: 5px 8px;
  }

  .navbar-collapse {
    padding: 10px 0 14px;
  }

  .main-menu .nav-link {
    font-size: 13.5px;
    padding: 12px 0 !important;
  }

  .nav-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-apply,
  .btn-book {
    width: 100%;
    min-width: 100%;
    min-height: 43px;
  }

  .hero-banner,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    align-items: flex-start;
    padding: 48px 0 46px;
  }

  .hero-copy {
    padding: 0;
    text-align: left;
    margin-inline: auto;
  }

  .hero-copy h1 {
    margin-bottom: 14px;
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.06;
  }

  .hero-copy p {
    margin-bottom: 18px;
    font-size: 14.5px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
    justify-content: center;
  }

  .hero-actions .btn {
    width: min(100%, 330px);
  }

  .btn-primary-blue,
  .btn-outline-blue {
    min-height: 42px;
    padding: 10px 16px;
  }

  .hero-image {
    opacity: 0.18;
    background-position: center;
  }

  .hero-pills {
    text-align: left;
  }

  .hero-pills span {
    flex-basis: 100%;
    border-right: 0;
    justify-content: center;
  }

  .hero-pills span:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .hero-pills span:last-child {
    border-bottom: 0;
  }

  .facts-band {
    grid-template-columns: 1fr;
  }

  .fact-card {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px;
  }

  .fact-card:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 28px 0;
  }

  .why-choose-section {
    padding-top: 6px;
  }

  .why-card {
    min-height: 140px;
  }

  .georgia-wrapper {
    padding: 12px;
    border-radius: 16px;
  }

  .georgia-panel {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .georgia-panel ul {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .georgia-panel h2 {
    font-size: 26px;
  }

  .georgia-overlay-card,
  .georgia-card-img {
    min-height: 300px;
  }

  .georgia-card-content {
    padding: 22px 17px 18px;
  }

  .program-card {
    min-height: 230px;
  }

  .program-content {
    max-width: 100%;
  }

  .program-card::before {
    background: rgba(255, 255, 255, 0.92);
  }

  .steps-section {
    padding: 38px 0 44px;
  }

  .steps-heading {
    margin-bottom: 26px;
  }

  .steps-heading h2 {
    font-size: 28px;
  }

  .steps-heading p {
    font-size: 13.5px;
  }

  .admission-timeline-wrap {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .admission-timeline {
    min-width: 980px;
    gap: 12px;
  }

  .step-node {
    width: 70px;
    height: 70px;
  }

  .step-node i {
    font-size: 24px;
  }

  .step-content {
    min-height: 112px;
    padding: 16px 10px 14px;
  }

  .fee-heading {
    margin-bottom: 24px;
  }

  .fee-heading h2 {
    font-size: 28px;
  }

  .fee-heading p {
    font-size: 13.5px;
  }

  .fee-table-top {
    flex-direction: column;
    gap: 10px;
  }

  .fee-table-card {
    padding: 16px;
  }

  .life-section {
    padding: 30px 0 36px;
  }

  .life-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .life-intro {
    grid-column: span 2;
    padding: 20px 16px;
    text-align: center;
  }

  .life-overlay-card,
  .life-card-img {
    min-height: 230px;
  }

  .life-card-content {
    padding: 16px 12px 14px;
  }

  .life-card-content h3 {
    font-size: 13.5px;
  }

  .career-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .row .col:last-child .career-item {
    border-bottom: 0;
  }

  .recognition-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    text-align: center;
  }

  .cta-shell {
    padding: 18px;
    border-radius: 22px;
  }

  .cta-copy h2 {
    font-size: 30px;
  }

  .cta-copy p {
    font-size: 13.5px;
  }

  .cta-buttons {
    flex-direction: column;
    justify-content: center;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .enquiry-card {
    padding: 18px;
    border-radius: 18px;
  }
}
/* 575px and below */
@media (max-width: 575.98px) {
  .brand-logo {
    width: 106px;
  }

  .hero-content {
    padding: 42px 0 40px;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 10vw, 36px);
  }

  .hero-copy p {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-blue,
  .btn-outline-blue {
    width: 100%;
  }

  .hero-image {
    opacity: 0.14;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(249, 252, 255, 0.98) 0%, rgba(249, 252, 255, 0.94) 100%);
  }

  .georgia-section {
    padding: 18px 0 28px;
  }

  .georgia-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .georgia-wrapper {
    padding: 10px;
  }

  .georgia-panel h2 {
    font-size: 24px;
  }

  .georgia-panel strong {
    font-size: 13px;
  }

  .georgia-panel li,
  .georgia-card-content p {
    font-size: 12.5px;
  }

  .georgia-overlay-card,
  .georgia-card-img {
    min-height: 270px;
  }

  .georgia-card-content h3 {
    font-size: 15px;
  }

  .fee-section {
    padding: 34px 0 40px;
  }

  .fee-shell {
    padding: 10px;
  }

  .fee-image-card,
  .fee-image-card img {
    min-height: 260px;
    border-radius: 16px;
  }

  .fee-table-card {
    padding: 14px;
  }

  .fee-table {
    min-width: 600px;
  }

  .life-grid {
    grid-template-columns: 1fr;
  }

  .life-intro {
    grid-column: span 1;
  }

  .life-overlay-card,
  .life-card-img {
    min-height: 240px;
  }

  .cta-section {
    padding: 36px 0;
  }

  .cta-shell {
    padding: 14px;
  }

  .cta-points {
    flex-direction: column;
  }

  .cta-points span {
    width: 100%;
  }

  .cta-copy h2 {
    font-size: 27px;
  }

  .enquiry-card {
    padding: 16px;
  }
}

/* 440px and below */
@media (max-width: 440px) {
  .brand-logo {
    width: 174px;
  }

  .nav-cta {
    width: 100%;
  }

  .btn-apply,
  .btn-book {
    width: 100%;
  }

  .hero-copy h1 {
    letter-spacing: -0.025em;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* 380px and below */
@media (max-width: 380px) {
  .brand-logo {
    width: 98px;
  }

  .hero-copy h1 {
    font-size: 27px;
  }

  .hero-copy p {
    font-size: 13.5px;
  }

  .btn-primary-blue,
  .btn-outline-blue,
  .btn-apply,
  .btn-book {
    font-size: 13px;
  }
}


/* =========================================================
   HOME PAGE REBUILD SECTIONS - GAU THEME
   Use after hero + facts section
========================================================= */

.home-kicker,
.pathway-heading .home-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 7px 14px;
  border: 1px solid #d8e8fb;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-section-heading {
  max-width: 760px;
  margin: 0 auto 26px;
}

.home-section-heading h2,
.pathway-heading h2,
.route-header h2,
.career-parent-intro h2,
.parents-intro-card h2,
.beyond-intro h2,
.beyond-process h2,
.home-final-cta h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.7vw, 38px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.home-section-heading p,
.pathway-heading p,
.career-parent-intro p,
.parents-intro-card p,
.beyond-intro p,
.home-final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

/* Pathway */
.pathway-section {
  padding: 42px 0 34px;
  background: #ffffff;
}

.pathway-heading {
  max-width: 980px;
  margin: 0 auto 24px;
}

.pathway-heading h2 {
  text-align: center;
}

.pathway-heading p {
  max-width: 920px;
  margin: 0 auto 7px;
  text-align: center;
}

.pathway-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pathway-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 120px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: .25s ease;
}

.pathway-card:hover {
  transform: translateY(-5px);
  border-color: #bed8f8;
  box-shadow: var(--shadow);
}

.pathway-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--soft-2);
  color: var(--blue);
  font-size: 30px;
}

.pathway-card h3,
.home-program-card h3,
.georgia-choice-card h3,
.home-process-card h3,
.route-card h3,
.support-card-new h3,
.parent-info-card h3,
.beyond-image-card h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
}

.pathway-card p,
.georgia-choice-card p,
.home-process-card p,
.route-card p,
.support-card-new p,
.parent-info-card p,
.beyond-image-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.52;
  font-weight: 650;
}

.pathway-action {
  margin-top: 18px;
}

/* Programs */
.home-program-section {
  padding: 34px 0 42px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.home-program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.home-program-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.home-program-card.mba-card {
  background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
}

.home-program-copy {
  padding: 30px 26px;
}

.program-label {
  display: block;
  color: var(--blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  line-height: .9;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.home-program-copy h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: .98;
  font-weight: 900;
}

.home-program-copy h2 small {
  display: block;
  font-family: "Inter", sans-serif;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
}

.home-program-copy p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 12.7px;
  line-height: 1.55;
  font-weight: 650;
}

.program-best-box {
  margin-bottom: 16px;
}

.program-best-box strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 900;
}

.program-best-box span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 650;
}

.home-program-media {
  position: relative;
  min-height: 270px;
  background: var(--soft-2);
}

.home-program-media>img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.program-snapshot {
  padding: 20px 22px;
}

.program-snapshot h3 {
  font-size: 13px;
  margin-bottom: 11px;
}

.program-snapshot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.program-snapshot li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.program-snapshot li strong {
  color: var(--navy);
  font-weight: 900;
  text-align: right;
}

.program-note {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

/* Georgia Choice */
.georgia-choice-section {
  padding: 42px 0;
  background: #ffffff;
}

.georgia-choice-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.georgia-choice-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: .25s ease;
}

.georgia-choice-card:hover {
  transform: translateY(-5px);
  border-color: #bed8f8;
  box-shadow: var(--shadow);
}

.choice-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 18px auto 10px;
  border-radius: 50%;
  background: var(--soft-2);
  color: var(--blue);
  font-size: 22px;
}

.georgia-choice-card h3 {
  min-height: 38px;
  padding: 0 12px;
}

.georgia-choice-card p {
  min-height: 72px;
  padding: 0 14px;
}

.georgia-choice-card img {
  width: calc(100% - 22px);
  height: 118px;
  margin: 12px auto 11px;
  border-radius: 12px;
  object-fit: cover;
}

/* Admission Flow */
.home-admission-section {
  padding: 42px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.home-admission-flow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid #d9eafb;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(7, 34, 80, .07);
  overflow: hidden;
}

.home-process-card {
  position: relative;
  min-height: 170px;
  padding: 28px 16px 18px;
  text-align: center;
  border-right: 1px solid #e7f0fb;
}

.home-process-card:last-child {
  border-right: 0;
}

.home-process-card span {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(6, 77, 173, .22);
}

.home-process-card h3 {
  margin-top: 28px;
  font-size: 13.2px;
}

/* Route Comparison */
/* =========================================================
   HOME COST COMPARISON SECTION
========================================================= */

.home-cost-comparison-section {
  padding: 56px 0 64px;
  background:
    radial-gradient(circle at 10% 0%, rgba(6, 77, 173, 0.07), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.home-cost-heading {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.home-cost-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 7px 15px;
  border: 1px solid #d8e8fb;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-cost-heading h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.home-cost-heading p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 650;
}

/* Table Outer Card */
.home-cost-table-card {
  padding: 20px;
  border: 1px solid #dcecff;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(5, 40, 97, 0.09);
}

.home-cost-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #dcecff;
  border-radius: 18px;
  background: #ffffff;
}

/* Table */
.home-cost-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.home-cost-table th,
.home-cost-table td {
  border-right: 1px solid #dcecff;
  border-bottom: 1px solid #e6eef9;
}

.home-cost-table th:last-child,
.home-cost-table td:last-child {
  border-right: 0;
}

.home-cost-table tr:last-child td {
  border-bottom: 0;
}

/* Head */
.home-cost-table thead th {
  padding: 15px 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #064dad 0%, #052b55 100%);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
  vertical-align: middle;
}

.home-cost-table thead th span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10.5px;
  font-weight: 800;
}

.home-cost-table thead .particular-head {
  width: 230px;
  background: #f1f7ff;
  color: var(--navy);
  text-align: left;
}

.home-cost-table thead .gau-head {
  background: linear-gradient(135deg, #052b55 0%, #064dad 100%);
}

/* Body */
.home-cost-table tbody td {
  padding: 15px 14px;
  color: #203657;
  background: #ffffff;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 750;
  text-align: center;
  vertical-align: middle;
}

.home-cost-table tbody td:first-child {
  text-align: left;
  color: var(--navy);
  font-weight: 900;
  background: #fbfdff;
}

.home-cost-table tbody td:first-child i {
  width: 24px;
  display: inline-flex;
  color: var(--blue);
  font-size: 15px;
  margin-right: 7px;
}

.home-cost-table tbody td:first-child small {
  color: #536579;
  font-weight: 700;
}

.home-cost-table tbody tr:hover td {
  background: #f8fbff;
}

/* GAU Highlight Column */
.home-cost-table .gau-value {
  color: var(--navy);
  background: #eef6ff;
  font-weight: 900;
}

.home-cost-table tbody tr:hover .gau-value {
  background: #e7f1ff;
}

/* Total Row */
.home-cost-table .total-row td {
  background: #f7fbff;
  font-size: 13.5px;
  font-weight: 900;
}

.home-cost-table .total-row td:first-child {
  background: #eef6ff;
}

.home-cost-table .gau-total {
  color: var(--blue);
  background: #eaf3ff !important;
  font-size: 14px;
  font-weight: 950;
}

/* Note */
.home-cost-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 13px 15px;
  border: 1px solid #e1edf9;
  border-radius: 14px;
  background: #f8fbff;
}

.home-cost-note i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--blue);
  font-size: 15px;
}

.home-cost-note p {
  margin: 0;
  color: #536579;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 650;
}

/* Action */
.home-cost-action {
  margin-top: 18px;
  text-align: center;
}

.home-cost-action .btn {
  min-height: 42px;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 767.98px) {
  .home-cost-comparison-section {
    padding: 44px 0 52px;
  }

  .home-cost-table-card {
    padding: 14px;
    border-radius: 22px;
  }

  .home-cost-heading {
    margin-bottom: 22px;
  }

  .home-cost-heading h2 {
    font-size: 28px;
  }

  .home-cost-heading p {
    font-size: 13.5px;
  }

  .home-cost-note {
    padding: 12px;
  }
}
/* =========================================================
   CAREER + PARENT SECTION - CLEAN REDESIGN
========================================================= */

.career-parent-section {
  padding: 64px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(6, 77, 173, 0.07), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

/* Shared Kicker */
.career-parent-section .home-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 14px;
  border: 1px solid #d8e8fb;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =========================================================
   CAREER SUPPORT AREA
========================================================= */

.career-support-area {
  display: grid;
  grid-template-columns: 0.92fr 1.55fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 30px;
}

/* Left Intro */
.career-parent-intro {
  position: relative;
  min-height: 100%;
  padding: 34px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(5, 40, 97, 0.18);
}


.career-parent-intro .home-kicker {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.career-parent-intro h2 {
  max-width: 440px;
  margin: 0 0 14px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.career-parent-intro p {
  max-width: 500px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 650;
}

.career-parent-intro .btn {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-color: #ffffff;
  color: var(--navy);
}

.career-parent-intro .btn:hover {
  background: #eef6ff;
  border-color: #eef6ff;
  color: var(--navy);
}

/* Career Cards */
.career-support-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-card-new {
  min-height: 190px;
  padding: 26px 24px;
  border: 1px solid #dcecff;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(7, 34, 80, 0.07);
  transition: 0.28s ease;
}

.support-card-new:hover {
  transform: translateY(-5px);
  border-color: #b7d6f8;
  box-shadow: 0 20px 44px rgba(7, 34, 80, 0.13);
}

.support-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 26px;
}

.support-card-new h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.support-card-new p {
  margin: 0;
  color: var(--muted);
  font-size: 13.2px;
  line-height: 1.65;
  font-weight: 650;
}

/* =========================================================
   PARENTS SECTION
========================================================= */

.parents-section-box {
  padding: 26px;
  border: 1px solid #dcecff;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(5, 40, 97, 0.08);
}

.parents-section-heading {
  max-width: 820px;
  margin: 0 auto 26px;
  text-align: center;
}

.parents-section-heading h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.parents-section-heading p {
  max-width: 700px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 650;
}

.parents-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Parent Cards */
.parents-info-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.parent-info-card {
  min-height: 210px;
  padding: 24px 18px;
  border: 1px solid #dcecff;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(6, 77, 173, 0.06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  text-align: center;
  box-shadow: 0 10px 26px rgba(7, 34, 80, 0.055);
  transition: 0.28s ease;
}

.parent-info-card:hover {
  transform: translateY(-5px);
  border-color: #b7d6f8;
  box-shadow: 0 18px 38px rgba(7, 34, 80, 0.12);
}

.parent-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 25px;
}

.parent-info-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.parent-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 650;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
  .career-support-area {
    grid-template-columns: 1fr;
  }

  .parents-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .parents-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-parent-intro {
    padding: 30px;
  }
}

@media (max-width: 767.98px) {
  .career-parent-section {
    padding: 48px 0;
  }

  .career-support-cards {
    grid-template-columns: 1fr;
  }

  .parents-section-box {
    padding: 20px;
    border-radius: 22px;
  }

  .parents-info-grid {
    grid-template-columns: 1fr;
  }

  .parents-section-heading {
    text-align: left;
  }

  .parents-actions {
    justify-content: flex-start;
  }

  .career-parent-intro h2,
  .parents-section-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  .career-parent-intro {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .support-card-new,
  .parent-info-card {
    min-height: auto;
    padding: 22px;
  }

  .parents-actions .btn {
    width: 100%;
  }
}

/* -----------------------------------Beyond------------------------------------- */
.beyond-section {
  padding: 42px 0;
  background: #ffffff;
}

.beyond-top-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 20px;
}

.beyond-intro {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: var(--shadow-sm);
}

.beyond-image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.beyond-image-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.beyond-image-card h3,
.beyond-image-card p {
  padding-left: 16px;
  padding-right: 16px;
}

.beyond-image-card h3 {
  margin-top: 14px;
}

.beyond-image-card p {
  padding-bottom: 16px;
}

.beyond-process {
  padding: 20px;
  border: 1px solid #dceafa;
  border-radius: 22px;
  background: #f8fbff;
  box-shadow: 0 8px 24px rgba(7, 34, 80, .055);
}

.beyond-process h2 {
  text-align: center;
  margin-bottom: 18px;
  font-size: clamp(24px, 2vw, 32px);
}

.beyond-process-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}

.beyond-process-grid div {
  min-height: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e6eef9;
  text-align: center;
}

.beyond-process-grid i {
  color: var(--blue);
  font-size: 23px;
}

.beyond-process-grid span {
  color: var(--navy);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
}

/* FAQ */
.home-faq-section {
  padding: 54px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.home-faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.home-faq-accordion .accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(7, 34, 80, .055);
}

.home-faq-accordion .accordion-button {
  color: var(--navy);
  background: #ffffff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: none;
}

.home-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--blue);
  background: #eef6ff;
}

.home-faq-accordion .accordion-body {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 650;
}

/* Final CTA */
.home-final-cta-section {
  padding: 54px 0;
  background: #ffffff;
}

.home-final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 26px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, .16), transparent 34%), linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  box-shadow: 0 20px 48px rgba(5, 40, 97, .18);
}

.home-final-cta .home-kicker {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
  color: #ffffff;
}

.home-final-cta h2,
.home-final-cta p {
  color: #ffffff;
}

.home-final-cta p {
  opacity: .86;
  max-width: 680px;
}

.home-final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}

.home-final-cta .btn-outline-blue {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, .09);
}

.home-final-cta .btn-outline-blue:hover {
  background: #ffffff;
  color: var(--blue);
}

/* Responsive for rebuilt sections */
@media (max-width: 1199.98px) {
  .georgia-choice-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-admission-flow {
    min-width: 980px;
  }

  .home-admission-section .gau-container {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .parents-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .parents-intro-card {
    grid-column: span 3;
  }

  .beyond-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .beyond-intro {
    grid-column: span 2;
  }

  .beyond-process-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 991.98px) {

  .pathway-card-grid,
  .home-program-grid,
  .route-grid,
  .career-parent-grid {
    grid-template-columns: 1fr;
  }

  .home-program-card {
    grid-template-columns: 1fr;
  }

  .home-program-media>img {
    height: 210px;
  }

  .career-support-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-final-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-final-cta-actions {
    min-width: 0;
  }
}

@media (max-width: 767.98px) {

  .pathway-section,
  .home-program-section,
  .georgia-choice-section,
  .home-admission-section,
  .route-section,
  .career-parent-section,
  .beyond-section,
  .home-faq-section,
  .home-final-cta-section {
    padding: 34px 0;
  }

  .pathway-card-grid,
  .georgia-choice-grid,
  .career-support-cards,
  .parents-strip,
  .beyond-top-grid {
    grid-template-columns: 1fr;
  }

  .parents-intro-card,
  .beyond-intro {
    grid-column: span 1;
  }

  .home-program-copy {
    padding: 24px 20px;
  }

  .route-shell {
    padding: 14px;
  }

  .home-process-card {
    min-height: 160px;
  }

  .beyond-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-final-cta {
    padding: 26px 20px;
    border-radius: 22px;
  }
}

@media (max-width: 575.98px) {
  .pathway-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pathway-icon {
    margin: 0 auto;
  }

  .program-label {
    font-size: 34px;
  }

  .home-program-copy h2 {
    font-size: 26px;
  }

  .route-card {
    min-height: 230px;
  }

  .beyond-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-final-cta-actions .btn {
    width: 100%;
  }
}

/* ========================================================= Footer ========================================================= */
.footer {
  padding: 32px 0 17px;
  background: #052452;
  color: #dce8ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.82fr 0.75fr 0.86fr 1.25fr;
  gap: 34px;
  align-items: start;
}

.footer-logo {
  width: 150px;
  margin-bottom: 13px;
  filter: brightness(0) invert(1);
}

.footer h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 7px;
  color: #dce8ff;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

.footer a:hover {
  color: #ffffff;
}

.socials {
  display: flex;
  gap: 13px;
  margin-top: 10px;
  color: #ffffff;
  font-size: 16px;
}

.copyright {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbdaf7;
  font-size: 11px;
}

/* ========================================================= Responsive CSS ========================================================= */
/* Large Desktop Adjustment */
@media (min-width: 1200px) and (max-width: 1280px) {
  .main-navbar .navbar-collapse {
    margin-left: 12px;
  }

  .main-menu {
    gap: 20px;
  }

  .main-menu .nav-link {
    font-size: 13px;
  }

  .btn-apply {
    min-width: 105px;
  }

  .btn-book {
    min-width: 144px;
  }
}

/* 1280px and below */
@media (max-width: 1280px) {
  .gau-container {
    width: min(calc(100% - 70px), var(--container));
  }

  .brand-logo {
    width: 236px;
  }
}

/* 1199px and below */
@media (max-width: 1199.98px) {
  .brand-logo {
    width: 135px;
  }

  .top-strip-inner {
    gap: 12px;
  }

  .top-left,
  .top-right {
    gap: 14px;
  }

  .nav-container {
    min-height: 70px;
    flex-wrap: wrap;
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 12px;
    padding: 12px 0 16px;
    border-top: 1px solid #e6eef9;
    background: #ffffff;
  }

  .main-menu {
    align-items: flex-start;
    gap: 0;
    margin: 0 !important;
    padding: 4px 0;
  }

  .main-menu .nav-link {
    display: inline-block;
    padding: 13px 0 !important;
    font-size: 14px;
    border-bottom: 1px solid #eef4fc;
  }

  .main-menu .nav-link.active::after {
    left: 0;
    bottom: 7px;
    width: 26px;
    transform: none;
  }

  .dropdown-menu {
    margin: 2px 0 10px;
    box-shadow: none;
    border-radius: 10px;
  }

  .nav-cta {
    margin-top: 12px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .btn-apply,
  .btn-book {
    min-height: 44px;
    padding: 11px 18px;
  }

  .hero-banner,
  .hero-content {
    min-height: 330px;
  }

  .hero-copy {
    width: 460px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 5vw, 48px);
  }

  .hero-image {
    width: 72%;
  }

  .hero-shade {
    background: linear-gradient(90deg, #f9fcff 0%, #f9fcff 34%, rgba(249, 252, 255, 0.92) 46%, rgba(249, 252, 255, 0.48) 62%, rgba(249, 252, 255, 0) 100%);
  }

  .fact-card {
    padding-inline: 20px;
    gap: 16px;
  }

  .fact-card h3 {
    font-size: 15px;
  }

  .georgia-wrapper {
    padding: 16px;
  }

  .georgia-panel {
    padding: 24px 20px;
  }

  .admission-timeline-wrap {
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .admission-timeline {
    min-width: 1040px;
  }

  .admission-timeline-wrap::-webkit-scrollbar {
    height: 6px;
  }

  .admission-timeline-wrap::-webkit-scrollbar-track {
    background: #eef4fc;
    border-radius: 999px;
  }

  .admission-timeline-wrap::-webkit-scrollbar-thumb {
    background: #b9d4f5;
    border-radius: 999px;
  }

  .life-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .life-intro {
    grid-column: span 3;
    min-height: auto;
  }

  .life-overlay-card,
  .life-card-img {
    min-height: 260px;
  }
}

/* 991px and below */
@media (max-width: 991.98px) {
  .gau-container {
    width: min(calc(100% - 48px), 900px);
  }

  .top-strip {
    padding: 7px 0;
    font-size: 12px;
  }

  .top-strip-inner {
    min-height: auto;
    padding: 8px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .top-left,
  .top-right {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }

  .top-strip a {
    white-space: normal;
    line-height: 1.25;
  }

  .main-navbar,
  .nav-container {
    min-height: 66px;
  }

  .brand-logo {
    width: 126px;
  }

  .hero-banner {
    min-height: auto;
    background: #f9fcff;
  }

  .hero-content {
    min-height: auto;
    padding: 58px 0 52px;
  }

  .hero-copy {
    width: 100%;
    max-width: 540px;
  }

  .hero-copy h1 {
    max-width: 520px;
    font-size: clamp(32px, 7vw, 46px);
    line-height: 1.04;
  }

  .hero-copy p {
    max-width: 500px;
    font-size: 15px;
  }

  .hero-image {
    width: 100%;
    opacity: 0.22;
    background-position: center right;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(249, 252, 255, 0.98) 0%, rgba(249, 252, 255, 0.92) 52%, rgba(249, 252, 255, 0.76) 100%);
  }

  .hero-pills {
    display: flex;
    width: 100%;
  }

  .hero-pills span {
    flex: 1 1 50%;
    border-bottom: 1px solid var(--line);
  }

  .hero-pills span:nth-child(even) {
    border-right: 0;
  }

  .hero-pills span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .facts-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-card:nth-child(2) {
    border-right: 0;
  }

  .fact-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .georgia-section {
    padding: 24px 0 34px;
  }

  .georgia-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .georgia-wrapper {
    padding: 14px;
  }

  .georgia-panel {
    height: auto;
  }

  .georgia-panel ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
  }

  .georgia-overlay-card,
  .georgia-card-img {
    min-height: 320px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-heading {
    min-height: auto;
  }

  .program-content {
    max-width: 70%;
  }

  .fee-section {
    padding: 40px 0 46px;
  }

  .fee-shell {
    padding: 14px;
    border-radius: 20px;
  }

  .fee-image-card,
  .fee-image-card img {
    min-height: 320px;
  }

  .fee-table-card {
    border-radius: 18px;
  }

  .recognition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section {
    padding: 44px 0;
  }

  .cta-shell {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }

  .cta-copy {
    padding: 0;
  }

  .enquiry-card {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 767px and below */
@media (max-width: 767.98px) {
  .gau-container {
    width: min(calc(100% - 30px), 560px);
  }

  /* Mobile Top Strip Icon Only */
  .top-strip {
    padding: 0;
    font-size: 0;
  }

  .top-strip-inner {
    min-height: 34px;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .top-left,
  .top-right {
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .top-strip a {
    width: 38px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 1;
    white-space: nowrap;
  }

  .top-strip a i {
    font-size: 14px;
    margin: 0;
  }

  .top-strip .small-icon {
    font-size: 10px;
    margin-left: -2px;
  }

  .main-navbar,
  .nav-container {
    min-height: 62px;
  }

  .nav-container {
    gap: 10px;
  }

  .brand-logo {
    width: 116px;
  }

  .navbar-toggler {
    padding: 5px 8px;
  }

  .navbar-collapse {
    padding: 10px 0 14px;
  }

  .main-menu .nav-link {
    font-size: 13.5px;
    padding: 12px 0 !important;
  }

  .nav-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-apply,
  .btn-book {
    width: 100%;
    min-width: 100%;
    min-height: 43px;
  }

  .hero-banner,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    align-items: flex-start;
    padding: 48px 0 46px;
  }

  .hero-copy {
    padding: 0;
    text-align: left;
    margin-inline: auto;
  }

  .hero-copy h1 {
    margin-bottom: 14px;
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.06;
  }

  .hero-copy p {
    margin-bottom: 18px;
    font-size: 14.5px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
    justify-content: center;
  }

  .hero-actions .btn {
    width: min(100%, 330px);
  }

  .btn-primary-blue,
  .btn-outline-blue {
    min-height: 42px;
    padding: 10px 16px;
  }

  .hero-image {
    opacity: 0.18;
    background-position: center;
  }

  .hero-pills {
    text-align: left;
  }

  .hero-pills span {
    flex-basis: 100%;
    border-right: 0;
    justify-content: center;
  }

  .hero-pills span:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .hero-pills span:last-child {
    border-bottom: 0;
  }

  .facts-band {
    grid-template-columns: 1fr;
  }

  .fact-card {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px;
  }

  .fact-card:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 28px 0;
  }

  .why-choose-section {
    padding-top: 6px;
  }

  .why-card {
    min-height: 140px;
  }

  .georgia-wrapper {
    padding: 12px;
    border-radius: 16px;
  }

  .georgia-panel {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .georgia-panel ul {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .georgia-panel h2 {
    font-size: 26px;
  }

  .georgia-overlay-card,
  .georgia-card-img {
    min-height: 300px;
  }

  .georgia-card-content {
    padding: 22px 17px 18px;
  }

  .program-card {
    min-height: 230px;
  }

  .program-content {
    max-width: 100%;
  }

  .program-card::before {
    background: rgba(255, 255, 255, 0.92);
  }

  .steps-section {
    padding: 38px 0 44px;
  }

  .steps-heading {
    margin-bottom: 26px;
  }

  .steps-heading h2 {
    font-size: 28px;
  }

  .steps-heading p {
    font-size: 13.5px;
  }

  .admission-timeline-wrap {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .admission-timeline {
    min-width: 980px;
    gap: 12px;
  }

  .step-node {
    width: 70px;
    height: 70px;
  }

  .step-node i {
    font-size: 24px;
  }

  .step-content {
    min-height: 112px;
    padding: 16px 10px 14px;
  }

  .fee-heading {
    margin-bottom: 24px;
  }

  .fee-heading h2 {
    font-size: 28px;
  }

  .fee-heading p {
    font-size: 13.5px;
  }

  .fee-table-top {
    flex-direction: column;
    gap: 10px;
  }

  .fee-table-card {
    padding: 16px;
  }

  .life-section {
    padding: 30px 0 36px;
  }

  .life-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .life-intro {
    grid-column: span 2;
    padding: 20px 16px;
    text-align: center;
  }

  .life-overlay-card,
  .life-card-img {
    min-height: 230px;
  }

  .life-card-content {
    padding: 16px 12px 14px;
  }

  .life-card-content h3 {
    font-size: 13.5px;
  }

  .career-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .row .col:last-child .career-item {
    border-bottom: 0;
  }

  .recognition-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    text-align: center;
  }

  .cta-shell {
    padding: 18px;
    border-radius: 22px;
  }

  .cta-copy h2 {
    font-size: 30px;
  }

  .cta-copy p {
    font-size: 13.5px;
  }

  .cta-buttons {
    flex-direction: column;
    justify-content: center;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .enquiry-card {
    padding: 18px;
    border-radius: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer {
    text-align: center;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .socials {
    justify-content: center;
  }
}

/* 575px and below */
@media (max-width: 575.98px) {
  .brand-logo {
    width: 106px;
  }

  .hero-content {
    padding: 42px 0 40px;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 10vw, 36px);
  }

  .hero-copy p {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-blue,
  .btn-outline-blue {
    width: 100%;
  }

  .hero-image {
    opacity: 0.14;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(249, 252, 255, 0.98) 0%, rgba(249, 252, 255, 0.94) 100%);
  }

  .georgia-section {
    padding: 18px 0 28px;
  }

  .georgia-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .georgia-wrapper {
    padding: 10px;
  }

  .georgia-panel h2 {
    font-size: 24px;
  }

  .georgia-panel strong {
    font-size: 13px;
  }

  .georgia-panel li,
  .georgia-card-content p {
    font-size: 12.5px;
  }

  .georgia-overlay-card,
  .georgia-card-img {
    min-height: 270px;
  }

  .georgia-card-content h3 {
    font-size: 15px;
  }

  .fee-section {
    padding: 34px 0 40px;
  }

  .fee-shell {
    padding: 10px;
  }

  .fee-image-card,
  .fee-image-card img {
    min-height: 260px;
    border-radius: 16px;
  }

  .fee-table-card {
    padding: 14px;
  }

  .fee-table {
    min-width: 600px;
  }

  .life-grid {
    grid-template-columns: 1fr;
  }

  .life-intro {
    grid-column: span 1;
  }

  .life-overlay-card,
  .life-card-img {
    min-height: 240px;
  }

  .cta-section {
    padding: 36px 0;
  }

  .cta-shell {
    padding: 14px;
  }

  .cta-points {
    flex-direction: column;
  }

  .cta-points span {
    width: 100%;
  }

  .cta-copy h2 {
    font-size: 27px;
  }

  .enquiry-card {
    padding: 16px;
  }
}

/* 440px and below */
@media (max-width: 440px) {
  .brand-logo {
    width: 174px;
  }

  .nav-cta {
    width: 100%;
  }

  .btn-apply,
  .btn-book {
    width: 100%;
  }

  .hero-copy h1 {
    letter-spacing: -0.025em;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* 380px and below */
@media (max-width: 380px) {
  .brand-logo {
    width: 98px;
  }

  .hero-copy h1 {
    font-size: 27px;
  }

  .hero-copy p {
    font-size: 13.5px;
  }

  .btn-primary-blue,
  .btn-outline-blue,
  .btn-apply,
  .btn-book {
    font-size: 13px;
  }
}


/* ======================================About Page=================================== */
/* =========================================================
   ABOUT PAGE DESIGN
   Scoped CSS: will not affect home page
========================================================= */

.about-page {
  --about-primary: #002b55;
  --about-primary-2: #003b73;
  --about-blue: #004aad;
  --about-light-blue: #eaf3ff;
  --about-text: #102033;
  --about-muted: #536579;
  --about-border: #dfe8f2;
  --about-white: #ffffff;
  --about-shadow: 0 14px 38px rgba(4, 30, 66, 0.12);

  font-family: "Inter", sans-serif;
  color: var(--about-text);
  background: #ffffff;
  overflow-x: hidden;
}

.about-page a {
  text-decoration: none;
}

/* Hero */
/* =========================================================
   ABOUT PAGE HERO SECTION
   Background image attached through HTML, not CSS
========================================================= */


.about-page {
  --about-primary: #002b55;
  --about-primary-2: #003b73;
  --about-blue: #004aad;
  --about-text: #102033;
  --about-muted: #536579;
  --about-border: #dfe8f2;
  --about-white: #ffffff;
  --about-soft: #f5f8fc;
  --about-shadow: 0 14px 38px rgba(4, 30, 66, 0.12);

  font-family: "Inter", sans-serif;
  color: var(--about-text);
  background: #ffffff;
  overflow-x: hidden;
}

.about-page a {
  text-decoration: none;
}

/* Hero */
.about-page .about-page-hero-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.about-page .about-page-hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-page .about-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      rgba(0, 28, 58, 0.94) 0%,
      rgba(0, 38, 75, 0.78) 38%,
      rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}

.about-page .about-page-hero-section .container {
  position: relative;
  z-index: 2;
}

.about-page .about-page-hero-content {
  max-width: 610px;
}

.about-page .about-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 600;
}

.about-page .about-page-breadcrumb a {
  color: rgba(255, 255, 255, 0.76);
}

.about-page .about-page-breadcrumb span {
  color: #ffffff;
  font-weight: 800;
}

.about-page .about-page-hero-content h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-page .about-page-hero-content p {
  max-width: 475px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.about-page .about-page-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.about-page .about-page-btn-primary,
.about-page .about-page-btn-outline,
.about-page .about-page-small-btn,
.about-page .about-page-light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  transition: 0.25s ease;
}

.about-page .about-page-btn-primary {
  padding: 14px 24px;
  background: #004aad;
  color: #ffffff;
  border: 2px solid #004aad;
}

.about-page .about-page-btn-primary:hover {
  background: #002b55;
  border-color: #002b55;
  color: #ffffff;
}

.about-page .about-page-btn-outline {
  padding: 14px 24px;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.about-page .about-page-btn-outline:hover {
  background: #ffffff;
  color: #004aad;
}

.about-page .about-page-small-btn {
  min-height: 42px;
  padding: 13px 20px;
  background: #002b55;
  color: #ffffff;
  border: 2px solid #002b55;
}

.about-page .about-page-small-btn:hover {
  background: #004aad;
  border-color: #004aad;
  color: #ffffff;
}

.about-page .about-page-light-btn {
  padding: 13px 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.about-page .about-page-light-btn:hover {
  background: #ffffff;
  color: #002b55;
}

/* Overview */
.about-page .about-page-overview-section {
  padding: 70px 0 62px;
  background: #ffffff;
}

.about-page .about-page-overview-content {
  max-width: 470px;
}

.about-page .about-page-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #004aad;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-page .about-page-overview-content h2,
.about-page .about-page-section-heading h2 {
  margin: 0 0 15px;
  color: var(--about-text);
  font-size: 34px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-page .about-page-overview-content p {
  margin: 0 0 18px;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
}

/* Stats */
.about-page .about-page-stats-card {
  background: #ffffff;
  border: 1px solid #edf1f6;
  border-radius: 8px;
  box-shadow: var(--about-shadow);
  overflow: hidden;
}

.about-page .about-page-stat-col {
  border-right: 1px solid var(--about-border);
  border-bottom: 1px solid var(--about-border);
}

.about-page .about-page-stat-col:nth-child(3n) {
  border-right: 0;
}

.about-page .about-page-stat-col:nth-child(n + 4) {
  border-bottom: 0;
}

.about-page .about-page-stat-box {
  min-height: 176px;
  padding: 34px 18px;
  text-align: center;
  background: #ffffff;
}

.about-page .about-page-stat-box i {
  display: block;
  margin-bottom: 12px;
  color: var(--about-primary);
  font-size: 42px;
  line-height: 1;
}

.about-page .about-page-stat-box h3 {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 5px;
  color: var(--about-text);
  font-size: 27px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.about-page .about-page-stat-box p {
  max-width: 150px;
  margin: 0 auto;
  color: #405265;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

/* Section Heading */
.about-page .about-page-section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
}

.about-page .about-page-section-heading p {
  margin: 0;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Why */
.about-page .about-page-why-section {
  padding: 38px 0 55px;
  background: #ffffff;
}

.about-page .about-page-feature-row {
  margin-top: 20px;
}

.about-page .about-page-feature-item {
  height: 100%;
  padding: 10px 20px;
  text-align: center;
  border-right: 1px solid var(--about-border);
}

.about-page .about-page-feature-row>div:last-child .about-page-feature-item {
  border-right: 0;
}

.about-page .about-page-feature-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #e9f1fa;
  color: var(--about-primary);
  font-size: 27px;
}

.about-page .about-page-feature-item h4 {
  margin: 0 0 8px;
  color: var(--about-text);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.about-page .about-page-feature-item p {
  margin: 0;
  color: var(--about-muted);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 500;
}


/* =========================================================
   ABOUT PAGE HISTORY TIMELINE
========================================================= */
.about-page .about-page-history-timeline-section {
  padding: 60px 0 75px;
  background: #ffffff;
}

.about-page .about-page-history-heading {
  max-width: 760px;
  margin: 0 auto 46px;
}

.about-page .about-page-history-heading h2 {
  margin: 8px 0 12px;
  color: var(--about-text);
  font-size: clamp(32px, 3vw, 50px);
  line-height: 1.08;
  font-weight: 900;
}

.about-page .about-page-history-heading p {
  margin: 0;
  color: var(--about-muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.about-page .about-page-history-timeline {
  position: relative;
  max-width: 1150px;
  margin: 0 auto;
}

.about-page .about-page-history-center-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, #dce9f8 0%, var(--about-primary) 50%, #dce9f8 100%);
  transform: translateX(-50%);
  border-radius: 999px;
}

.about-page .about-page-history-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 110px 1fr;
  align-items: center;
  margin-bottom: 34px;
}

.about-page .about-page-history-item:last-child {
  margin-bottom: 0;
}

.about-page .about-page-history-card {
  position: relative;
  padding: 24px 22px;
  border: 1px solid #e5edf7;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(2, 29, 59, 0.08);
  transition: 0.3s ease;
  max-width: 460px;
}

.about-page .about-page-history-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(2, 29, 59, 0.14);
}

.about-page .about-page-history-card h3 {
  margin: 0 0 10px;
  color: var(--about-text);
  font-size: 21px;
  line-height: 1.3;
  font-weight: 850;
}

.about-page .about-page-history-card p {
  margin: 0;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
}

/* left side card */
.about-page .about-page-history-item.left .about-page-history-card {
  justify-self: end;
  margin-right: 28px;
}

.about-page .about-page-history-item.left .about-page-history-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-top: 1px solid #e5edf7;
  border-right: 1px solid #e5edf7;
  transform: translateY(-50%) rotate(45deg);
}

/* right side card */
.about-page .about-page-history-item.right .about-page-history-card {
  justify-self: start;
  margin-left: 28px;
}

.about-page .about-page-history-item.right .about-page-history-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-left: 1px solid #e5edf7;
  border-bottom: 1px solid #e5edf7;
  transform: translateY(-50%) rotate(45deg);
}

.about-page .about-page-history-year {
  position: relative;
  z-index: 2;
  width: 82px;
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 7px solid #edf4fc;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(2, 29, 59, 0.12);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.about-page .about-page-history-year::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--about-primary) 0%, #063f92 100%);
  z-index: -1;
}

.about-page .about-page-history-empty {
  min-height: 1px;
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 991.98px) {
  .about-page .about-page-history-item {
    grid-template-columns: 1fr 90px 1fr;
  }

  .about-page .about-page-history-card {
    max-width: 100%;
  }

  .about-page .about-page-history-item.left .about-page-history-card {
    margin-right: 20px;
  }

  .about-page .about-page-history-item.right .about-page-history-card {
    margin-left: 20px;
  }
}
/* =========================================================
   MOBILE - PROFESSIONAL HISTORY TIMELINE FIX
========================================================= */
@media (max-width: 767.98px) {
  .about-page .about-page-history-timeline-section {
    padding: 48px 0 58px;
  }

  .about-page .about-page-history-heading {
    max-width: 100%;
    margin: 0 auto 34px;
    padding: 0 4px;
  }

  .about-page .about-page-history-heading h2 {
    font-size: 30px;
  }

  .about-page .about-page-history-heading p {
    font-size: 13.5px;
    line-height: 1.65;
  }

  .about-page .about-page-history-timeline {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 6px;
  }

  /* Center vertical line on mobile */
  .about-page .about-page-history-center-line {
    left: 50%;
    top: 20px;
    bottom: 20px;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg,
        #dce9f8 0%,
        var(--about-primary) 50%,
        #dce9f8 100%);
    opacity: 0.75;
  }

  /* Each item becomes centered stack */
  .about-page .about-page-history-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-template-columns: none;
    gap: 0;
    margin-bottom: 34px;
    text-align: center;
  }

  .about-page .about-page-history-item:last-child {
    margin-bottom: 0;
  }

  .about-page .about-page-history-empty {
    display: none !important;
  }

  /* Year circle comes on top center */
  .about-page .about-page-history-year {
    order: 1;
    position: relative;
    z-index: 3;
    grid-column: auto;
    width: 68px;
    height: 68px;
    margin: 0 auto -24px;
    border: 6px solid #edf4fc;
    background: #ffffff;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(2, 29, 59, 0.13);
  }

  .about-page .about-page-history-year::before {
    inset: 7px;
    background: linear-gradient(135deg, var(--about-primary) 0%, #063f92 100%);
  }

  /* Card sits below year circle */
  .about-page .about-page-history-card {
    order: 2;
    grid-column: auto;
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding: 46px 18px 20px;
    border-radius: 16px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 12px 28px rgba(2, 29, 59, 0.09);
  }

  .about-page .about-page-history-item.left .about-page-history-card,
  .about-page .about-page-history-item.right .about-page-history-card {
    justify-self: auto;
    margin: 0 !important;
  }

  /* Remove side arrows on mobile */
  .about-page .about-page-history-item.left .about-page-history-card::after,
  .about-page .about-page-history-item.right .about-page-history-card::before {
    display: none !important;
  }

  .about-page .about-page-history-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.25;
  }

  .about-page .about-page-history-card p {
    font-size: 13px;
    line-height: 1.65;
  }
}


/* =========================================================
   COMMON SECTION STYLES
========================================================= */
.about-page-section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
}

.about-page-section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #0a4aa3;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-page-section-heading h2 {
  margin: 0 0 12px;
  color: #082f6f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1.08;
  font-weight: 900;
}

.about-page-section-heading p {
  margin: 0;
  color: #596b85;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

/* =========================================================
   MISSION VISION VALUES
========================================================= */
.about-page .about-page-mvv-section {
  padding: 65px 0;
  background: #ffffff;
}

.about-page .about-page-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-page .about-page-mvv-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px;
  border: 1px solid #e6edf7;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(7, 34, 80, 0.06);
  transition: 0.3s ease;
}

.about-page .about-page-mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(7, 34, 80, 0.12);
}

.about-page .about-page-mvv-icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eef5ff;
  color: #0a4aa3;
  font-size: 24px;
}

.about-page .about-page-mvv-content h3 {
  margin: 0 0 10px;
  color: #082f6f;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 850;
}

.about-page .about-page-mvv-content p {
  margin: 0;
  color: #596b85;
  font-size: 14px;
  line-height: 1.75;
}



/* =========================================================
   LEADER MESSAGE
========================================================= */
.about-page .about-page-leader-section {
  padding: 15px 0 65px;
  background: #ffffff;
}

.about-page .about-page-leader-box {
  overflow: hidden;
  border: 1px solid #e5edf7;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 36px rgba(7, 34, 80, 0.07);
}

.about-page .about-page-leader-content {
  height: 100%;
  padding: 40px 36px;
}

.about-page .about-page-leader-content h2 {
  margin: 10px 0 14px;
  color: #082f6f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 2.5vw, 42px);
  line-height: 1.12;
  font-weight: 900;
}

.about-page .about-page-leader-content p {
  margin: 0 0 14px;
  color: #596b85;
  font-size: 14.5px;
  line-height: 1.8;
  font-weight: 500;
}

.about-page .about-page-leader-sign {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #dbe6f4;
}

.about-page .about-page-leader-sign strong {
  display: block;
  color: #082f6f;
  font-size: 16px;
  font-weight: 850;
}

.about-page .about-page-leader-sign span {
  display: block;
  margin-top: 4px;
  color: #596b85;
  font-size: 13px;
  font-weight: 600;
}

.about-page .about-page-leader-image-wrap {
  height: 100%;
  min-height: 100%;
}

.about-page .about-page-leader-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
}

/* =========================================================
   BUSINESS PROGRAMS
========================================================= */
/* =========================================================
   COMPACT BUSINESS SCHOOL PROGRAMS SECTION
========================================================= */

.about-page .about-page-business-program-section {
  padding: 42px 0 52px;
  background: #ffffff;
}

/* Heading Compact */
.about-page .about-page-business-program-section .about-page-section-heading {
  max-width: 680px;
  margin: 0 auto 28px;
}

.about-page .about-page-business-program-section .about-page-section-heading h2 {
  margin: 0 0 8px;
  color: #082f6f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.about-page .about-page-business-program-section .about-page-section-heading p {
  max-width: 560px;
  margin: 0 auto;
  color: #596b85;
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 500;
}

/* Grid */
.about-page .about-page-business-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* Card */
.about-page .about-page-business-program-card {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 255px;
  overflow: hidden;
  border: 1px solid #e5edf7;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(7, 34, 80, 0.055);
  transition: 0.28s ease;
}

.about-page .about-page-business-program-card:hover {
  transform: translateY(-4px);
  border-color: #c7dcf5;
  box-shadow: 0 16px 34px rgba(7, 34, 80, 0.11);
}

/* Image */
.about-page .about-page-business-program-img {
  height: 100%;
  min-height: 255px;
  overflow: hidden;
  background: #eef5ff;
}

.about-page .about-page-business-program-img img {
  width: 100%;
  height: 100%;
  min-height: 255px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: 0.45s ease;
}

.about-page .about-page-business-program-card:hover .about-page-business-program-img img {
  transform: scale(1.05);
}

/* Content */
.about-page .about-page-business-program-body {
  padding: 22px 22px 20px;
}

.about-page .program-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  background: #eef5ff;
  color: #0a4aa3;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.about-page .about-page-business-program-body h3 {
  margin: 0 0 9px;
  color: #082f6f;
  font-size: 23px;
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.about-page .about-page-business-program-body p {
  margin: 0 0 13px;
  color: #596b85;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
}

/* Points */
.about-page .about-page-program-points {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.about-page .about-page-program-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 7px;
  color: #14305e;
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 650;
}

.about-page .about-page-program-points i {
  margin-top: 2px;
  color: #0a4aa3;
  font-size: 13px;
}

/* Button */
.about-page .about-page-business-program-body .btn {
  min-height: 38px;
  padding: 9px 15px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 991.98px) {
  .about-page .about-page-business-program-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-page-business-program-card {
    grid-template-columns: 38% 62%;
  }
}

@media (max-width: 767.98px) {
  .about-page .about-page-business-program-section {
    padding: 38px 0 46px;
  }

  .about-page .about-page-business-program-card {
    grid-template-columns: 1fr;
  }

  .about-page .about-page-business-program-img,
  .about-page .about-page-business-program-img img {
    min-height: 190px;
    height: 190px;
  }

  .about-page .about-page-business-program-body {
    padding: 20px;
  }

  .about-page .about-page-business-program-body h3 {
    font-size: 22px;
  }
}
/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991.98px) {

  .about-page .about-page-mvv-grid,
  .about-page .about-page-business-program-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-page-leader-content {
    padding: 34px 26px;
  }

  .about-page .about-page-business-program-img {
    height: 220px;
  }
}

@media (max-width: 767.98px) {
  .about-page .about-page-mvv-card {
    flex-direction: column;
  }

  .about-page .about-page-leader-content h2,
  .about-page-section-heading h2 {
    font-size: 30px;
  }

  .about-page .about-page-business-program-body h3 {
    font-size: 24px;
  }

  .about-page .about-page-business-program-img {
    height: 210px;
  }
}

/* Campus + Accreditation */
.about-page .about-page-campus-section {
  padding: 0 0 45px;
  background: #ffffff;
}

.about-page .about-page-campus-card,
.about-page .about-page-accredit-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(2, 29, 59, 0.12);
}

.about-page .about-page-campus-img,
.about-page .about-page-accredit-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page .about-page-campus-overlay,
.about-page .about-page-accredit-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-page .about-page-campus-overlay {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.93) 50%,
      rgba(255, 255, 255, 0.08) 100%);
}

.about-page .about-page-accredit-overlay {
  background: linear-gradient(90deg,
      rgba(0, 38, 75, 0.96),
      rgba(0, 38, 75, 0.88));
}

.about-page .about-page-campus-content,
.about-page .about-page-accredit-content {
  position: relative;
  z-index: 2;
  padding: 32px;
}

.about-page .about-page-accredit-content {
  color: #ffffff;
  padding: 38px;
}

.about-page .about-page-campus-content h3,
.about-page .about-page-accredit-content h3 {
  margin: 0 0 15px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.about-page .about-page-accredit-content h3 {
  color: #fff;
  font-size: 48px;
}

.about-page .about-page-campus-content p,
.about-page .about-page-accredit-content p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
}

.about-page .about-page-accredit-content p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
}

.about-page .about-page-campus-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.about-page .about-page-campus-content li {
  margin-bottom: 5px;
  color: #1e3146;
  font-size: 14px;
}

.about-page .about-page-campus-content li i {
  color: var(--about-primary);
  margin-right: 8px;
}

/* Journey CTA */
/* =========================================================
   ABOUT PAGE JOURNEY CTA - DYNAMIC WORKABLE DESIGN
========================================================= */

.about-page .about-page-journey-section {
  position: relative;
  padding: 78px 0;
  overflow: hidden;
  background: #fff;
}




.about-page .about-page-journey-section .container {
  position: relative;
  z-index: 2;
}

.about-page .about-page-journey-box {
  max-width: 1120px;
  margin: 0 auto;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  background:
      linear-gradient(90deg,
        rgba(5, 40, 97, 0.96) 0%,
        rgba(5, 40, 97, 0.88) 45%,
        rgba(5, 40, 97, 0.70) 100%),
      radial-gradient(circle at 80% 10%, rgba(6, 77, 173, 0.45), transparent 34%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 20, 48, 0.30);
}

/* Top Content */
.about-page .about-page-journey-content {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.about-page .about-page-journey-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-page .about-page-journey-content h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.about-page .about-page-journey-content p {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 600;
}



/* Bottom CTA Buttons */
.about-page .about-page-journey-actions {
  max-width: 620px;
  margin: 34px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-page .about-page-journey-btn {
  min-height: 48px;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;
  transition: 0.25s ease;
}

.about-page .about-page-journey-btn-primary {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #052b55;
  box-shadow: 0 12px 28px rgba(0, 20, 48, 0.18);
}

.about-page .about-page-journey-btn-primary:hover {
  background: #eef6ff;
  color: #052b55;
  transform: translateY(-2px);
}

.about-page .about-page-journey-btn-whatsapp {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.about-page .about-page-journey-btn-whatsapp:hover {
  background: #ffffff;
  color: #064dad;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991.98px) {
  .about-page .about-page-journey-steps {
    grid-template-columns: 1fr;
  }

  .about-page .about-page-journey-step {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .about-page .about-page-journey-section {
    padding: 58px 0;
  }

  .about-page .about-page-journey-box {
    padding: 32px 22px;
    border-radius: 24px;
  }

  .about-page .about-page-journey-content h2 {
    font-size: 30px;
  }

  .about-page .about-page-journey-content p {
    font-size: 13.8px;
  }

  .about-page .about-page-journey-actions {
    flex-direction: column;
    padding-top: 22px;
  }

  .about-page .about-page-journey-btn {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .about-page .about-page-journey-box {
    padding: 28px 18px;
  }

  .about-page .about-page-journey-step {
    padding: 24px 20px 22px;
  }

  .about-page .about-page-program-actions {
    width: 100%;
  }

  .about-page .about-page-program-actions a {
    flex: 1;
  }
}
/* Responsive */
@media (max-width: 991px) {
  .about-page .about-page-hero-section {
    min-height: 520px;
  }

  .about-page .about-page-hero-bg-img {
    min-height: 520px;
  }

  .about-page .about-page-hero-content h1 {
    font-size: 40px;
  }

  .about-page .about-page-overview-section {
    padding: 60px 0;
  }

  .about-page .about-page-overview-content {
    max-width: 100%;
  }

  .about-page .about-page-overview-content h2 {
    font-size: 31px;
  }

  .about-page .about-page-feature-item {
    border-right: 0;
    border-bottom: 1px solid var(--about-border);
    padding: 25px 15px;
  }

  .about-page .about-page-feature-row>div:last-child .about-page-feature-item {
    border-bottom: 0;
  }

  .about-page .about-page-journey-step {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    padding: 28px 15px 0;
    margin-top: 28px;
  }
}

@media (max-width: 767px) {
  .about-page .about-page-hero-content h1 {
    font-size: 34px;
  }

  .about-page .about-page-hero-content p {
    font-size: 14px;
  }

  .about-page .about-page-hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-page .about-page-overview-section {
    padding: 52px 0;
  }

  .about-page .about-page-overview-content h2,
  .about-page .about-page-section-heading h2 {
    font-size: 29px;
  }

  .about-page .about-page-stat-col {
    border-right: 1px solid var(--about-border);
    border-bottom: 1px solid var(--about-border);
  }

  .about-page .about-page-stat-col:nth-child(2n) {
    border-right: 0;
  }

  .about-page .about-page-stat-col:nth-child(n + 4) {
    border-bottom: 1px solid var(--about-border);
  }

  .about-page .about-page-stat-col:nth-child(n + 5) {
    border-bottom: 0;
  }

  .about-page .about-page-stat-box {
    min-height: 160px;
    padding: 28px 14px;
  }

  .about-page .about-page-stat-box i {
    font-size: 36px;
  }

  .about-page .about-page-stat-box h3 {
    font-size: 22px;
  }

  .about-page .about-page-campus-content,
  .about-page .about-page-accredit-content {
    padding: 26px;
  }

  .about-page .about-page-journey-text h2 {
    font-size: 29px;
  }
}

/* =========================================================
   BBA PAGE DESIGN
   All custom classes scoped with bba-page-
========================================================= */

.bba-page {
  --bba-navy: #052b55;
  --bba-navy-dark: #001f42;
  --bba-blue: #064dad;
  --bba-red: #f02b2b;
  --bba-text: #102033;
  --bba-muted: #4e5f78;
  --bba-border: #dfe7f1;
  --bba-soft: #f6f9fd;
  --bba-white: #ffffff;
  --bba-shadow: 0 14px 35px rgba(5, 36, 82, 0.12);

  font-family: "Inter", sans-serif;
  color: var(--bba-text);
  background: #ffffff;
  overflow-x: hidden;
}

.bba-page a {
  text-decoration: none;
}

/* =========================================================
   BBA HERO SECTION 
========================================================= */

.bba-page .bba-page-hero-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bba-navy);
}

.bba-page .bba-page-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.bba-page .bba-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(0, 31, 66, 0.98) 0%,
      rgba(0, 43, 85, 0.95) 38%,
      rgba(0, 43, 85, 0.52) 63%,
      rgba(0, 43, 85, 0.12) 100%);
}

.bba-page .bba-page-hero-section .container {
  position: relative;
  z-index: 2;
}

.bba-page .bba-page-hero-content {
  max-width: 650px;
  padding: 34px 0;
  color: #ffffff;
}

.bba-page .bba-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 600;
}

.bba-page .bba-page-breadcrumb a {
  color: rgba(255, 255, 255, 0.74);
}

.bba-page .bba-page-breadcrumb span {
  color: #ffffff;
  font-weight: 800;
}

.bba-page .bba-page-hero-content h1 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(36px, 3.7vw, 50px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.bba-page .bba-page-hero-content p {
  max-width: 520px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

.bba-page .bba-page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.bba-page .bba-page-hero-meta span:not(:last-child)::after {
  content: "|";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.55);
}

.bba-page .bba-page-hero-points {
  max-width: 520px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.bba-page .bba-page-hero-point {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 14px;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.bba-page .bba-page-hero-point:last-child {
  border-right: 0;
}

.bba-page .bba-page-hero-point i {
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1;
}

.bba-page .bba-page-hero-point span {
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
}

.bba-page .bba-page-hero-buttons,
.bba-page .bba-page-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bba-page .bba-page-btn-red,
.bba-page .bba-page-btn-outline {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 12.5px;
  line-height: 1;
  font-weight: 900;
  transition: 0.25s ease;
}

.bba-page .bba-page-btn-red {
  color: #ffffff;
  background: var(--bba-red);
  border: 2px solid var(--bba-red);
}

.bba-page .bba-page-btn-red:hover {
  color: #ffffff;
  background: #d91717;
  border-color: #d91717;
}

.bba-page .bba-page-btn-outline {
  color: #ffffff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.bba-page .bba-page-btn-outline:hover {
  color: var(--bba-navy);
  background: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {

  .bba-page .bba-page-hero-section,
  .bba-page .bba-page-hero-img {
    min-height: 460px;
  }

  .bba-page .bba-page-hero-content {
    padding: 40px 0;
  }

  .bba-page .bba-page-hero-content h1 {
    font-size: 40px;
  }

  .bba-page .bba-page-hero-points {
    grid-template-columns: repeat(2, 1fr);
    max-width: 440px;
  }

  .bba-page .bba-page-hero-point:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 575px) {

  .bba-page .bba-page-hero-section,
  .bba-page .bba-page-hero-img {
    min-height: 540px;
  }

  .bba-page .bba-page-hero-content {
    padding: 34px 0;
  }

  .bba-page .bba-page-hero-content h1 {
    font-size: 34px;
  }

  .bba-page .bba-page-hero-content p {
    font-size: 14px;
  }

  .bba-page .bba-page-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .bba-page .bba-page-btn-red,
  .bba-page .bba-page-btn-outline {
    width: 100%;
  }
}

/* Common Heading */
.bba-page .bba-page-section-heading {
  max-width: 760px;
  margin: 0 auto 30px;
}

.bba-page .bba-page-section-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--bba-blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bba-page .bba-page-section-heading h2 {
  margin: 0 0 13px;
  color: var(--bba-text);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.bba-page .bba-page-section-heading p {
  max-width: 700px;
  margin: 0 auto 10px;
  color: var(--bba-muted);
  font-size: 13.5px;
  line-height: 1.8;
  font-weight: 600;
}

/* Overview */
.bba-page .bba-page-overview-section {
  padding: 44px 0 32px;
  background: #ffffff;
}

.bba-page .bba-page-info-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--bba-border);
  border-radius: 8px;
  background: #fbfdff;
  box-shadow: 0 8px 24px rgba(5, 36, 82, 0.05);
}

.bba-page .bba-page-info-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid var(--bba-border);
}

.bba-page .bba-page-info-item:last-child {
  border-right: 0;
}

.bba-page .bba-page-info-item i {
  flex: 0 0 auto;
  color: #486082;
  font-size: 30px;
}

.bba-page .bba-page-info-item h4 {
  margin: 0 0 4px;
  color: var(--bba-text);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}

.bba-page .bba-page-info-item p {
  margin: 0;
  color: #314562;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
}

/* Audience */
.bba-page .bba-page-audience-section {
  padding: 28px 0 34px;
  background: #ffffff;
}

.bba-page .bba-page-audience-card {
  padding: 26px;
  border: 1px solid var(--bba-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(5, 36, 82, 0.06);
}

.bba-page .bba-page-audience-content h3 {
  margin: 0 0 18px;
  color: var(--bba-navy);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.bba-page .bba-page-audience-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bba-page .bba-page-audience-content li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: #203755;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.bba-page .bba-page-audience-content li i {
  color: #e92727;
  font-size: 15px;
  margin-top: 3px;
}

.bba-page .bba-page-audience-img-box {
  height: 260px;
  overflow: hidden;
  border-radius: 8px;
}

.bba-page .bba-page-audience-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Study */
.bba-page .bba-page-study-section {
  padding: 22px 0 36px;
  background: #ffffff;
}

.bba-page .bba-page-study-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--bba-border);
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
}

.bba-page .bba-page-study-item {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 22px 12px;
  text-align: center;
  border-right: 1px solid var(--bba-border);
  border-bottom: 1px solid var(--bba-border);
}

.bba-page .bba-page-study-item:nth-child(5n) {
  border-right: 0;
}

.bba-page .bba-page-study-item:nth-child(n + 6) {
  border-bottom: 0;
}

.bba-page .bba-page-study-item i {
  margin-bottom: 9px;
  color: #506681;
  font-size: 30px;
}

.bba-page .bba-page-study-item h4 {
  margin: 0;
  color: var(--bba-navy);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

/* Career */
.bba-page .bba-page-career-section {
  padding: 24px 0 44px;
  background: #ffffff;
}

.bba-page .bba-page-career-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.bba-page .bba-page-career-item {
  text-align: center;
}

.bba-page .bba-page-career-item i {
  display: block;
  margin-bottom: 10px;
  color: #526a86;
  font-size: 30px;
}

.bba-page .bba-page-career-item h4 {
  margin: 0;
  color: var(--bba-navy);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

/* CTA */
.bba-page .bba-page-cta-section {
  padding: 0 0 34px;
  background: #ffffff;
}

.bba-page .bba-page-cta-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bba-navy);
}

.bba-page .bba-page-cta-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.bba-page .bba-page-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg,
      rgba(0, 31, 66, 0.98) 0%,
      rgba(0, 43, 85, 0.96) 55%,
      rgba(0, 43, 85, 0.45) 72%,
      rgba(0, 43, 85, 0.05) 100%);
}

.bba-page .bba-page-cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 44px 46px;
  color: #ffffff;
}

.bba-page .bba-page-cta-content h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 31px;
  line-height: 1.2;
  font-weight: 900;
}

.bba-page .bba-page-cta-content p {
  max-width: 590px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

/* Benefits */
.bba-page .bba-page-benefits-section {
  padding: 0 0 34px;
  background: #ffffff;
}

.bba-page .bba-page-benefits-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--bba-border);
  border-radius: 8px;
  background: #fbfdff;
}

.bba-page .bba-page-benefit-item {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid var(--bba-border);
}

.bba-page .bba-page-benefit-item:last-child {
  border-right: 0;
}

.bba-page .bba-page-benefit-item i {
  color: #506781;
  font-size: 28px;
}

.bba-page .bba-page-benefit-item h4 {
  margin: 0;
  color: var(--bba-navy);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 991px) {

  .bba-page .bba-page-info-strip,
  .bba-page .bba-page-benefits-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .bba-page .bba-page-info-item,
  .bba-page .bba-page-benefit-item {
    border-bottom: 1px solid var(--bba-border);
  }

  .bba-page .bba-page-study-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bba-page .bba-page-study-item {
    border-right: 1px solid var(--bba-border) !important;
    border-bottom: 1px solid var(--bba-border) !important;
  }

  .bba-page .bba-page-study-item:nth-child(2n) {
    border-right: 0 !important;
  }

  .bba-page .bba-page-study-item:nth-child(n + 9) {
    border-bottom: 0 !important;
  }

  .bba-page .bba-page-career-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .bba-page .bba-page-hero-section {
    min-height: 560px;
  }

  .bba-page .bba-page-hero-content {
    padding: 46px 0;
  }

  .bba-page .bba-page-hero-content h1 {
    font-size: 38px;
  }

  .bba-page .bba-page-hero-content p {
    font-size: 16px;
  }

  .bba-page .bba-page-hero-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .bba-page .bba-page-hero-point:nth-child(2n) {
    border-right: 0;
  }

  .bba-page .bba-page-hero-buttons,
  .bba-page .bba-page-cta-buttons {
    flex-direction: column;
  }

  .bba-page .bba-page-btn-red,
  .bba-page .bba-page-btn-outline {
    width: 100%;
  }

  .bba-page .bba-page-section-heading h2 {
    font-size: 26px;
  }

  .bba-page .bba-page-info-strip,
  .bba-page .bba-page-benefits-strip {
    grid-template-columns: 1fr;
  }

  .bba-page .bba-page-info-item,
  .bba-page .bba-page-benefit-item {
    border-right: 0;
  }

  .bba-page .bba-page-audience-card {
    padding: 18px;
  }

  .bba-page .bba-page-career-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bba-page .bba-page-cta-content {
    padding: 34px 24px;
  }

  .bba-page .bba-page-cta-content h2 {
    font-size: 25px;
  }
}

/* =========================================================
   MBA PAGE DESIGN
========================================================= */

.mba-page {
  --mba-navy: #052b55;
  --mba-navy-dark: #001f42;
  --mba-blue: #064dad;
  --mba-red: #f02b2b;
  --mba-text: #102033;
  --mba-muted: #4e5f78;
  --mba-border: #dfe7f1;
  --mba-soft: #f6f9fd;
  --mba-white: #ffffff;
  --mba-shadow: 0 14px 35px rgba(5, 36, 82, 0.12);

  font-family: "Inter", sans-serif;
  color: var(--mba-text);
  background: #ffffff;
  overflow-x: hidden;
}

.mba-page a {
  text-decoration: none;
}

/* Hero */
.mba-page .mba-page-hero-section {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--mba-navy);
}

.mba-page .mba-page-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.mba-page .mba-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      rgba(0, 31, 66, 0.98) 0%,
      rgba(0, 43, 85, 0.95) 38%,
      rgba(0, 43, 85, 0.52) 63%,
      rgba(0, 43, 85, 0.12) 100%);
}

.mba-page .mba-page-hero-section .container {
  position: relative;
  z-index: 2;
}

.mba-page .mba-page-hero-content {
  max-width: 650px;
  padding: 34px 0;
  color: #ffffff;
}

.mba-page .mba-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 600;
}

.mba-page .mba-page-breadcrumb a {
  color: rgba(255, 255, 255, 0.74);
}

.mba-page .mba-page-breadcrumb span {
  color: #ffffff;
  font-weight: 800;
}

.mba-page .mba-page-hero-content h1 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(36px, 3.7vw, 50px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.mba-page .mba-page-hero-content p {
  max-width: 520px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

.mba-page .mba-page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.mba-page .mba-page-hero-meta span:not(:last-child)::after {
  content: "|";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.55);
}

.mba-page .mba-page-hero-points {
  max-width: 520px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.mba-page .mba-page-hero-point {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 14px;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.mba-page .mba-page-hero-point:last-child {
  border-right: 0;
}

.mba-page .mba-page-hero-point i {
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1;
}

.mba-page .mba-page-hero-point span {
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
}

.mba-page .mba-page-hero-buttons,
.mba-page .mba-page-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mba-page .mba-page-btn-red,
.mba-page .mba-page-btn-outline {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 12.5px;
  line-height: 1;
  font-weight: 900;
  transition: 0.25s ease;
}

.mba-page .mba-page-btn-red {
  color: #ffffff;
  background: var(--mba-red);
  border: 2px solid var(--mba-red);
}

.mba-page .mba-page-btn-red:hover {
  color: #ffffff;
  background: #d91717;
  border-color: #d91717;
}

.mba-page .mba-page-btn-outline {
  color: #ffffff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.mba-page .mba-page-btn-outline:hover {
  color: var(--mba-navy);
  background: #ffffff;
}

/* Common Heading */
.mba-page .mba-page-section-heading {
  max-width: 760px;
  margin: 0 auto 30px;
}

.mba-page .mba-page-section-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--mba-blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mba-page .mba-page-section-heading h2 {
  margin: 0 0 13px;
  color: var(--mba-text);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.mba-page .mba-page-section-heading p {
  max-width: 760px;
  margin: 0 auto 10px;
  color: var(--mba-muted);
  font-size: 13.5px;
  line-height: 1.8;
  font-weight: 600;
}

/* Overview */
.mba-page .mba-page-overview-section {
  padding: 44px 0 32px;
  background: #ffffff;
}

.mba-page .mba-page-info-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--mba-border);
  border-radius: 8px;
  background: #fbfdff;
  box-shadow: 0 8px 24px rgba(5, 36, 82, 0.05);
}

.mba-page .mba-page-info-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid var(--mba-border);
}

.mba-page .mba-page-info-item:last-child {
  border-right: 0;
}

.mba-page .mba-page-info-item i {
  flex: 0 0 auto;
  color: #486082;
  font-size: 30px;
}

.mba-page .mba-page-info-item h4 {
  margin: 0 0 4px;
  color: var(--mba-text);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}

.mba-page .mba-page-info-item p {
  margin: 0;
  color: #314562;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
}

/* Audience */
.mba-page .mba-page-audience-section {
  padding: 28px 0 34px;
  background: #ffffff;
}

.mba-page .mba-page-audience-card {
  padding: 26px;
  border: 1px solid var(--mba-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(5, 36, 82, 0.06);
}

.mba-page .mba-page-audience-content h3 {
  margin: 0 0 18px;
  color: var(--mba-navy);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mba-page .mba-page-audience-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mba-page .mba-page-audience-content li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: #203755;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.mba-page .mba-page-audience-content li i {
  color: #e92727;
  font-size: 15px;
  margin-top: 3px;
}

.mba-page .mba-page-audience-img-box {
  height: 260px;
  overflow: hidden;
  border-radius: 8px;
}

.mba-page .mba-page-audience-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Study */
.mba-page .mba-page-study-section {
  padding: 22px 0 36px;
  background: #ffffff;
}

.mba-page .mba-page-study-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--mba-border);
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
}

.mba-page .mba-page-study-item {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 22px 12px;
  text-align: center;
  border-right: 1px solid var(--mba-border);
  border-bottom: 1px solid var(--mba-border);
}

.mba-page .mba-page-study-item:nth-child(5n) {
  border-right: 0;
}

.mba-page .mba-page-study-item:nth-child(n + 6) {
  border-bottom: 0;
}

.mba-page .mba-page-study-item i {
  margin-bottom: 9px;
  color: #506681;
  font-size: 30px;
}

.mba-page .mba-page-study-item h4 {
  margin: 0;
  color: var(--mba-navy);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

/* Career */
.mba-page .mba-page-career-section {
  padding: 24px 0 44px;
  background: #ffffff;
}

.mba-page .mba-page-career-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.mba-page .mba-page-career-item {
  text-align: center;
}

.mba-page .mba-page-career-item i {
  display: block;
  margin-bottom: 10px;
  color: #526a86;
  font-size: 30px;
}

.mba-page .mba-page-career-item h4 {
  margin: 0;
  color: var(--mba-navy);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

/* CTA */
.mba-page .mba-page-cta-section {
  padding: 0 0 34px;
  background: #ffffff;
}

.mba-page .mba-page-cta-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mba-navy);
}

.mba-page .mba-page-cta-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.mba-page .mba-page-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg,
      rgba(0, 31, 66, 0.98) 0%,
      rgba(0, 43, 85, 0.96) 55%,
      rgba(0, 43, 85, 0.45) 72%,
      rgba(0, 43, 85, 0.05) 100%);
}

.mba-page .mba-page-cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 44px 46px;
  color: #ffffff;
}

.mba-page .mba-page-cta-content h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 31px;
  line-height: 1.2;
  font-weight: 900;
}

.mba-page .mba-page-cta-content p {
  max-width: 590px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

/* Benefits */
.mba-page .mba-page-benefits-section {
  padding: 0 0 34px;
  background: #ffffff;
}

.mba-page .mba-page-benefits-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--mba-border);
  border-radius: 8px;
  background: #fbfdff;
}

.mba-page .mba-page-benefit-item {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid var(--mba-border);
}

.mba-page .mba-page-benefit-item:last-child {
  border-right: 0;
}

.mba-page .mba-page-benefit-item i {
  color: #506781;
  font-size: 28px;
}

.mba-page .mba-page-benefit-item h4 {
  margin: 0;
  color: var(--mba-navy);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 991px) {

  .mba-page .mba-page-hero-section,
  .mba-page .mba-page-hero-img {
    min-height: 460px;
  }

  .mba-page .mba-page-info-strip,
  .mba-page .mba-page-benefits-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .mba-page .mba-page-study-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mba-page .mba-page-career-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 767px) {

  .mba-page .mba-page-hero-section,
  .mba-page .mba-page-hero-img {
    min-height: 540px;
  }

  .mba-page .mba-page-hero-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .mba-page .mba-page-hero-point:nth-child(2n) {
    border-right: 0;
  }

  .mba-page .mba-page-hero-buttons,
  .mba-page .mba-page-cta-buttons {
    flex-direction: column;
  }

  .mba-page .mba-page-btn-red,
  .mba-page .mba-page-btn-outline {
    width: 100%;
  }

  .mba-page .mba-page-info-strip,
  .mba-page .mba-page-benefits-strip {
    grid-template-columns: 1fr;
  }

  .mba-page .mba-page-info-item,
  .mba-page .mba-page-benefit-item {
    border-right: 0;
    border-bottom: 1px solid var(--mba-border);
  }

  .mba-page .mba-page-career-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mba-page .mba-page-cta-content {
    padding: 34px 24px;
  }
}

/* =========================================================
   ADMISSION PAGE DESIGN
========================================================= */

.admission-page {
  --admission-navy: #052b55;
  --admission-blue: #064dad;
  --admission-blue-2: #0b63ce;
  --admission-red: #e8272e;
  --admission-text: #102033;
  --admission-muted: #536579;
  --admission-border: #dfe8f2;
  --admission-soft: #f6f9fd;
  --admission-soft-blue: #eef6ff;
  --admission-white: #ffffff;
  --admission-shadow: 0 14px 35px rgba(5, 36, 82, 0.12);
  --admission-shadow-hover: 0 20px 45px rgba(5, 36, 82, 0.16);

  font-family: "Inter", sans-serif;
  color: var(--admission-text);
  background: #ffffff;
  overflow-x: hidden;
}

.admission-page a {
  text-decoration: none;
}

/* HERO */
.admission-page .admission-page-hero-section {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--admission-navy);
}

.admission-page .admission-page-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.admission-page .admission-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 12% 28%, rgba(6, 77, 173, 0.34), transparent 28%),
    linear-gradient(90deg,
      rgba(0, 24, 55, 0.98) 0%,
      rgba(0, 35, 76, 0.94) 38%,
      rgba(0, 43, 85, 0.60) 68%,
      rgba(0, 43, 85, 0.18) 100%);
}

.admission-page .admission-page-hero-section .container {
  position: relative;
  z-index: 2;
}

.admission-page .admission-page-hero-content {
  max-width: 720px;
  padding: 70px 0;
  color: #ffffff;
}

.admission-page .admission-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.admission-page .admission-page-breadcrumb a {
  color: rgba(255, 255, 255, 0.74);
}

.admission-page .admission-page-breadcrumb a:hover {
  color: #ffffff;
}

.admission-page .admission-page-breadcrumb span {
  color: #ffffff;
  font-weight: 900;
}

.admission-page .admission-page-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--admission-blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admission-page .admission-page-hero-content .admission-page-kicker {
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.admission-page .admission-page-hero-content h1 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.admission-page .admission-page-hero-content p {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 650;
}

.admission-page .admission-page-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* BUTTONS */
.admission-page .admission-page-btn-primary,
.admission-page .admission-page-btn-outline {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  transition: 0.25s ease;
}

.admission-page .admission-page-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--admission-blue) 0%, var(--admission-navy) 100%);
  border: 2px solid var(--admission-blue);
  box-shadow: 0 12px 26px rgba(6, 77, 173, 0.26);
}

.admission-page .admission-page-btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--admission-blue-2) 0%, var(--admission-navy) 100%);
  border-color: var(--admission-blue-2);
}

.admission-page .admission-page-btn-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.admission-page .admission-page-btn-outline:hover {
  color: var(--admission-navy);
  background: #ffffff;
  border-color: #ffffff;
}

/* INFO CARDS */
.admission-page .admission-page-info-section {
  padding: 60px 0 36px;
  background: #ffffff;
}

.admission-page .admission-page-info-card {
  height: 100%;
  padding: 30px 22px;
  border: 1px solid var(--admission-border);
  border-radius: 20px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 10px 28px rgba(5, 36, 82, 0.07);
  transition: 0.28s ease;
}

.admission-page .admission-page-info-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--admission-shadow-hover);
}

.admission-page .admission-page-info-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #edf6ff 0%, #dceeff 100%);
  color: var(--admission-blue);
  font-size: 25px;
}

.admission-page .admission-page-info-card:hover .admission-page-info-icon {
  color: #ffffff;
  background: linear-gradient(135deg, var(--admission-blue) 0%, var(--admission-navy) 100%);
}

.admission-page .admission-page-info-card h3 {
  margin: 0 0 8px;
  color: var(--admission-text);
  font-size: 17px;
  font-weight: 900;
}

.admission-page .admission-page-info-card p {
  margin: 0;
  color: var(--admission-muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

/* OVERVIEW */
.admission-page .admission-page-overview-section {
  padding: 46px 0 66px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.admission-page .admission-page-overview-content h2,
.admission-page .admission-page-section-heading h2,
.admission-page .admission-page-detail-card h2,
.admission-page .admission-page-apply-info h2 {
  margin: 0 0 14px;
  color: var(--admission-text);
  font-size: 32px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.admission-page .admission-page-overview-content p,
.admission-page .admission-page-section-heading p,
.admission-page .admission-page-apply-info p {
  color: var(--admission-muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.admission-page .admission-page-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.admission-page .admission-page-check-grid div {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--admission-border);
  border-radius: 12px;
  background: #ffffff;
  color: var(--admission-navy);
  font-size: 13px;
  font-weight: 850;
}

.admission-page .admission-page-check-grid i {
  color: var(--admission-blue);
}

.admission-page .admission-page-image-card {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--admission-shadow);
}

.admission-page .admission-page-main-img {
  width: 100%;
  height: 390px;
  display: block;
  object-fit: cover;
}

/* PROCESS */
.admission-page .admission-page-process-section {
  padding: 66px 0;
  background: #ffffff;
}

.admission-page .admission-page-section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
}

.admission-page .admission-page-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.admission-page .admission-page-process-card {
  position: relative;
  min-height: 255px;
  padding: 26px 20px;
  border: 1px solid var(--admission-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(5, 36, 82, 0.06);
  transition: 0.28s ease;
}

.admission-page .admission-page-process-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--admission-shadow-hover);
}

.admission-page .admission-page-process-card span {
  position: absolute;
  right: 18px;
  top: 18px;
  color: rgba(6, 77, 173, 0.12);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.admission-page .admission-page-process-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--admission-soft-blue);
  color: var(--admission-blue);
  font-size: 23px;
}

.admission-page .admission-page-process-card h3 {
  margin: 0 0 10px;
  color: var(--admission-text);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
}

.admission-page .admission-page-process-card p {
  margin: 0;
  color: var(--admission-muted);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 600;
}

/* ELIGIBILITY */
.admission-page .admission-page-eligibility-section {
  padding: 66px 0;
  background: var(--admission-soft);
}

.admission-page .admission-page-detail-card {
  height: 100%;
  padding: 32px;
  border: 1px solid var(--admission-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--admission-shadow);
}

.admission-page .admission-page-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.admission-page .admission-page-card-head>i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  background: var(--admission-soft-blue);
  color: var(--admission-blue);
  font-size: 24px;
}

.admission-page .admission-page-card-head h2 {
  margin: 0;
}

.admission-page .admission-page-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admission-page .admission-page-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
  color: #263f5e;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.admission-page .admission-page-list li:last-child {
  margin-bottom: 0;
}

.admission-page .admission-page-list i {
  color: var(--admission-blue);
  margin-top: 3px;
}

/* PROGRAM */
.admission-page .admission-page-program-section {
  padding: 66px 0;
  background: #ffffff;
}

.admission-page .admission-page-program-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid var(--admission-border);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--admission-shadow);
  transition: 0.28s ease;
}

.admission-page .admission-page-program-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--admission-shadow-hover);
}

.admission-page .admission-page-program-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--admission-blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admission-page .admission-page-program-card h3 {
  margin: 0 0 12px;
  color: var(--admission-navy);
  font-size: 26px;
  font-weight: 900;
}

.admission-page .admission-page-program-card p {
  color: var(--admission-muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.admission-page .admission-page-program-card a {
  margin-top: 22px;
  color: var(--admission-blue);
  font-size: 13px;
  font-weight: 900;
}

/* APPLY */
/* =========================================================
   ADMISSION APPLY CTA SECTION
========================================================= */

.admission-page .admission-page-apply-section {
  padding: 72px 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(6, 77, 173, 0.10), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.admission-page .admission-page-apply-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid var(--admission-border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(5, 36, 82, 0.11);
}


.admission-page .admission-page-apply-content {
  max-width: 720px;
  padding-left: 8px;
}

.admission-page .admission-page-apply-content h2 {
  max-width: 650px;
  margin: 0 0 14px;
  color: var(--admission-text);
  font-size: 38px;
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.admission-page .admission-page-apply-content p {
  max-width: 640px;
  margin: 0;
  color: var(--admission-muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 600;
}

.admission-page .admission-page-apply-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.admission-page .admission-page-apply-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 15px;
  border: 1px solid var(--admission-border);
  border-radius: 15px;
  background: var(--admission-soft);
  color: var(--admission-navy);
  font-size: 13px;
  font-weight: 850;
}

.admission-page .admission-page-apply-features i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--admission-soft-blue);
  color: var(--admission-blue);
  font-size: 16px;
}

.admission-page .admission-page-apply-action {
  height: 100%;
  padding: 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(135deg, var(--admission-blue) 0%, var(--admission-navy) 100%);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(6, 77, 173, 0.22);
}

.admission-page .admission-page-apply-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 26px;
}

.admission-page .admission-page-apply-action h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.admission-page .admission-page-apply-action p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}

.admission-page .admission-page-open-form-btn {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border: 0;
  border-radius: 13px;
  background: #ffffff;
  color: var(--admission-navy);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 20, 48, 0.20);
  transition: 0.25s ease;
}

.admission-page .admission-page-open-form-btn:hover {
  color: var(--admission-navy);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 20, 48, 0.26);
}

.admission-page .admission-page-open-form-btn i {
  font-size: 15px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .admission-page .admission-page-apply-card {
    padding: 34px;
  }

  .admission-page .admission-page-apply-content h2 {
    font-size: 32px;
  }

  .admission-page .admission-page-apply-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .admission-page .admission-page-apply-section {
    padding: 54px 0;
  }

  .admission-page .admission-page-apply-card {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .admission-page .admission-page-apply-content h2 {
    font-size: 27px;
  }

  .admission-page .admission-page-apply-content p,
  .admission-page .admission-page-apply-action p {
    font-size: 13.5px;
  }

  .admission-page .admission-page-apply-action {
    padding: 24px;
    border-radius: 20px;
  }

  .admission-page .admission-page-apply-action h3 {
    font-size: 23px;
  }
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
  .admission-page .admission-page-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .admission-page .admission-page-hero-section {
    min-height: 480px;
  }

  .admission-page .admission-page-hero-content h1 {
    font-size: 42px;
  }

  .admission-page .admission-page-main-img {
    height: 330px;
  }

  .admission-page .admission-page-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {

  .admission-page .admission-page-info-section,
  .admission-page .admission-page-overview-section,
  .admission-page .admission-page-process-section,
  .admission-page .admission-page-eligibility-section,
  .admission-page .admission-page-program-section,
  .admission-page .admission-page-apply-section {
    padding: 48px 0;
  }

  .admission-page .admission-page-check-grid {
    grid-template-columns: 1fr;
  }

  .admission-page .admission-page-process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .admission-page .admission-page-hero-section {
    min-height: 540px;
  }

  .admission-page .admission-page-hero-content {
    padding: 48px 0;
  }

  .admission-page .admission-page-hero-content h1 {
    font-size: 36px;
  }

  .admission-page .admission-page-hero-content p {
    font-size: 14px;
    line-height: 1.65;
  }

  .admission-page .admission-page-hero-actions {
    flex-direction: column;
  }

  .admission-page .admission-page-btn-primary,
  .admission-page .admission-page-btn-outline {
    width: 100%;
  }

  .admission-page .admission-page-detail-card,
  .admission-page .admission-page-program-card,
  .admission-page .admission-page-apply-info,
  .admission-page .admission-page-form-card {
    padding: 24px;
  }

  .admission-page .admission-page-overview-content h2,
  .admission-page .admission-page-section-heading h2,
  .admission-page .admission-page-detail-card h2,
  .admission-page .admission-page-apply-info h2 {
    font-size: 26px;
  }

  .admission-page .admission-page-card-head {
    align-items: flex-start;
  }
}

/* =========================================================
   LIFE PAGE DESIGN
========================================================= */

.life-page {
  --life-navy: #052b55;
  --life-blue: #064dad;
  --life-red: #e8272e;
  --life-text: #102033;
  --life-muted: #536579;
  --life-border: #dfe8f2;
  --life-soft: #f6f9fd;
  --life-white: #ffffff;
  --life-shadow: 0 14px 35px rgba(5, 36, 82, 0.12);

  font-family: "Inter", sans-serif;
  color: var(--life-text);
  background: #ffffff;
  overflow-x: hidden;
}

.life-page a {
  text-decoration: none;
}

/* =========================================================
   HERO SECTION WITH SINGLE GLASS TAB
========================================================= */

.life-page .life-page-hero-section {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: visible;
  margin-bottom: 78px;
  background: var(--life-navy);
  width: 100%;
}

.life-page .life-page-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.life-page .life-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(0, 24, 55, 0.96) 0%,
      rgba(0, 34, 74, 0.72) 38%,
      rgba(0, 43, 85, 0.38) 68%,
      rgba(0, 43, 85, 0.10) 100%);
}

.life-page .life-page-hero-section .container {
  position: relative;
  z-index: 2;
}

.life-page .life-page-hero-content {
  max-width: 720px;
  color: #ffffff;
  padding: 74px 0 85px;
}

.life-page .life-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.life-page .life-page-breadcrumb a {
  color: rgba(255, 255, 255, 0.74);
}

.life-page .life-page-breadcrumb a:hover {
  color: #ffffff;
}

.life-page .life-page-breadcrumb span {
  color: #ffffff;
  font-weight: 900;
}

.life-page .life-page-hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.life-page .life-page-hero-content h1 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.life-page .life-page-hero-content p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 650;
}


/* =========================================================
   PREMIUM SINGLE GLASS TAB DESIGN - BLUE ACTIVE
========================================================= */

.life-page .life-page-glass-tab-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -42px;
  z-index: 20;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Main pill container */
.life-page .life-page-glass-tabs {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 8px;
  list-style: none;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 999px;

  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(255, 255, 255, 0.12) 100%);

  border: 1px solid rgba(255, 255, 255, 0.32);

  box-shadow:
    0 22px 48px rgba(0, 20, 48, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -1px 0 rgba(255, 255, 255, 0.10);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Soft glass shine */
.life-page .life-page-glass-tabs::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.05) 48%,
      rgba(255, 255, 255, 0) 100%);
}

/* Smooth active sliding background */
.life-page .life-page-glass-tabs::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  width: calc(50% - 12px);
  height: calc(100% - 16px);
  border-radius: 999px;
  background:
    linear-gradient(135deg,
      var(--life-blue) 0%,
      var(--life-navy) 100%);
  box-shadow:
    0 12px 28px rgba(6, 77, 173, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s ease,
    box-shadow 0.28s ease;
}

/* Move slider when second tab is active */
.life-page .life-page-glass-tabs:has(#life-hostel-support-tab.active)::after {
  transform: translateX(calc(100% + 8px));
}

/* Nav item */
.life-page .life-page-glass-tabs .nav-item {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
}

/* Tab button */
.life-page .life-page-glass-tabs .nav-link {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  white-space: normal;
  box-sizing: border-box;
  transition:
    color 0.28s ease,
    background 0.28s ease,
    transform 0.28s ease;
}

.life-page .life-page-glass-tabs .nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
}

.life-page .life-page-glass-tabs .nav-link i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.life-page .life-page-glass-tabs .nav-link span {
  min-width: 0;
  display: block;
  letter-spacing: -0.01em;
}

/* Active tab */
.life-page .life-page-glass-tabs .nav-link.active {
  color: #ffffff;
  background: transparent;
}

.life-page .life-page-glass-tabs .nav-link.active i {
  color: var(--life-blue);
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 22, 52, 0.18);
}

/* Smooth content transition */
.life-page .tab-pane.fade {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.32s ease,
    transform 0.32s ease;
}

.life-page .tab-pane.fade.show.active {
  opacity: 1;
  transform: translateY(0);
}
/* =========================================================
   MOBILE TAB DESIGN
   Inactive: White BG + Blue Text/Icon
   Active: Blue BG + White Text/Icon
========================================================= */

@media (max-width: 767.98px) {
  .life-page .life-page-glass-tab-wrap {
    bottom: -102px;
    max-width: 100%;
    padding: 0 12px;
  }

  .life-page .life-page-glass-tabs {
    grid-template-columns: 1fr;
    border-radius: 28px;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow:
      0 18px 38px rgba(0, 20, 48, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  /* Disable desktop sliding effect on mobile */
  .life-page .life-page-glass-tabs::after {
    display: none !important;
  }

  /* Inactive Tab */
  .life-page .life-page-glass-tabs .nav-link {
    min-height: 58px;
    justify-content: flex-start;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 20px;
    color: var(--life-blue) !important;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(0, 20, 48, 0.08);
  }

  .life-page .life-page-glass-tabs .nav-link i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eef6ff !important;
    color: var(--life-blue) !important;
    border: 1px solid #d8e8fb !important;
    font-size: 16px;
    box-shadow: none !important;
  }

  .life-page .life-page-glass-tabs .nav-link span {
    color: inherit;
  }

  /* Active Tab */
  .life-page .life-page-glass-tabs .nav-link.active {
    background: linear-gradient(135deg,
        var(--life-blue) 0%,
        var(--life-navy) 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 26px rgba(6, 77, 173, 0.30);
  }

  .life-page .life-page-glass-tabs .nav-link.active i {
    background: rgba(255, 255, 255, 0.16) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
  }

  .life-page .life-page-glass-tabs .nav-link:hover {
    transform: none;
  }
}

/* =========================================================
   COMMON SECTIONS
========================================================= */

.life-page .life-page-campus-overview,
.life-page .life-page-hostel-hero,
.life-page .life-page-feature-section,
.life-page .life-page-gallery-section,
.life-page .life-page-room-section,
.life-page .life-page-support-section,
.life-page .life-page-parent-section {
  padding: 44px 0;
  background: #ffffff;
}

.life-page .life-page-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--life-blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.life-page .life-page-text-block h2,
.life-page .life-page-section-heading h2,
.life-page .life-page-support-card h2,
.life-page .life-page-parent-card h2,
.life-page .life-page-form-card h2 {
  margin: 0 0 14px;
  color: var(--life-text);
  font-size: 32px;
  line-height: 1.18;
  font-weight: 900;
}

.life-page .life-page-text-block p,
.life-page .life-page-section-heading p,
.life-page .life-page-parent-card p,
.life-page .life-page-form-card p {
  color: var(--life-muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.life-page .life-page-section-heading {
  max-width: 760px;
  margin: 0 auto 30px;
}

.life-page .life-page-image-card {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--life-shadow);
}

.life-page .life-page-main-img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
}

.life-page .life-page-check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.life-page .life-page-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 9px;
  color: #243b5a;
  font-size: 14px;
  font-weight: 700;
}

.life-page .life-page-check-list i {
  color: var(--life-blue);
  margin-top: 2px;
}

/* =========================================================
   FEATURE CARDS
========================================================= */

.life-page .life-page-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.life-page .life-page-feature-card {
  padding: 28px 22px;
  border: 1px solid var(--life-border);
  border-radius: 14px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(5, 36, 82, 0.06);
}

.life-page .life-page-feature-card i {
  color: var(--life-navy);
  font-size: 34px;
  margin-bottom: 14px;
}

.life-page .life-page-feature-card h3 {
  font-size: 16px;
  font-weight: 900;
}

.life-page .life-page-feature-card p {
  color: var(--life-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* =========================================================
   GALLERY
========================================================= */

.life-page .life-page-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 18px;
}

.life-page .life-page-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(5, 36, 82, 0.1);
}

.life-page .life-page-gallery-card.large {
  grid-column: span 2;
}

.life-page .life-page-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.life-page .life-page-gallery-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(5, 43, 85, 0.92);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

/* =========================================================
   HOSTEL
========================================================= */

.life-page .life-page-hostel-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.life-page .life-page-hostel-points div {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--life-border);
  border-radius: 12px;
  background: #f7fbff;
  color: var(--life-navy);
  font-size: 13px;
  font-weight: 900;
}

.life-page .life-page-room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.life-page .life-page-room-card {
  overflow: hidden;
  border: 1px solid var(--life-border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--life-shadow);
}

.life-page .life-page-room-card img {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
}

.life-page .life-page-room-body {
  padding: 22px;
  text-align: center;
}

.life-page .life-page-room-body h3 {
  color: var(--life-navy);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.life-page .life-page-room-body strong {
  display: block;
  margin: 8px 0;
  color: var(--life-navy);
  font-size: 26px;
  font-weight: 900;
}

.life-page .life-page-room-body p {
  color: var(--life-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* =========================================================
   SUPPORT / AMENITIES / FORM
========================================================= */

.life-page .life-page-support-card,
.life-page .life-page-parent-card,
.life-page .life-page-form-card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--life-border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(5, 36, 82, 0.07);
}

.life-page .life-page-amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.life-page .life-page-amenity-grid div {
  padding: 14px;
  border: 1px solid var(--life-border);
  border-radius: 12px;
  background: #f7fbff;
  color: var(--life-navy);
  font-size: 13px;
  font-weight: 800;
}

.life-page .life-page-amenity-grid i {
  margin-right: 7px;
  color: var(--life-blue);
}

.life-page .life-page-food-img {
  width: 100%;
  height: 190px;
  border-radius: 12px;
  object-fit: cover;
}

.life-page .life-page-form-card .form-control,
.life-page .life-page-form-card .form-select {
  min-height: 46px;
  border: 1px solid var(--life-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.life-page .life-page-form-btn {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--life-red);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

/* =========================================================
   BUTTONS
========================================================= */

.life-page .life-page-btn-red,
.life-page .life-page-btn-outline {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  transition: 0.25s ease;
}

.life-page .life-page-btn-red {
  color: #ffffff;
  background: var(--life-red);
  border: 2px solid var(--life-red);
}

.life-page .life-page-btn-red:hover {
  color: #ffffff;
  background: #c9151d;
  border-color: #c9151d;
}

.life-page .life-page-btn-outline {
  color: var(--life-navy);
  background: transparent;
  border: 2px solid var(--life-navy);
}

.life-page .life-page-btn-outline:hover {
  color: #ffffff;
  background: var(--life-navy);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
  .life-page .life-page-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .life-page .life-page-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .life-page .life-page-room-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .life-page .life-page-hero-section {
    min-height: 500px;
    margin-bottom: 128px;
  }

  .life-page .life-page-hero-content {
    padding: 52px 0 140px;
  }

  .life-page .life-page-hero-content h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .life-page .life-page-hero-content p {
    font-size: 14px;
    line-height: 1.65;
  }

  .life-page .life-page-glass-tab-wrap {
    bottom: -96px;
    width: calc(100vw - 22px);
  }

  .life-page .life-page-glass-tabs {
    grid-template-columns: 1fr;
    border-radius: 26px;
    gap: 8px;
  }

  .life-page .life-page-glass-tabs .nav-link {
    min-height: 54px;
    border-radius: 18px;
    font-size: 13px;
    padding: 12px 14px;
  }
}

@media (max-width: 575.98px) {
  .life-page .life-page-hero-content h1 {
    font-size: 34px;
  }

  .life-page .life-page-feature-grid,
  .life-page .life-page-gallery-grid,
  .life-page .life-page-hostel-points,
  .life-page .life-page-amenity-grid {
    grid-template-columns: 1fr;
  }

  .life-page .life-page-gallery-card.large {
    grid-column: span 1;
  }

  .life-page .life-page-main-img {
    height: 260px;
  }
}

@media (max-width: 420px) {
  .life-page .life-page-hero-content h1 {
    font-size: 32px;
  }

  .life-page .life-page-glass-tabs .nav-link {
    font-size: 12.5px;
  }
}

/* =========================================================
   HOSTEL TAB BROCHURE STYLE - GAU BLUE THEME
========================================================= */

.hostel-tab-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--life-blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hostel-tab-hero-section {
  background: #ffffff;
}

.hostel-tab-hero-grid {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 620px;
}

.hostel-tab-hero-content {
  position: relative;
  padding: 80px 9vw 70px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(135deg, var(--life-navy) 0%, #063b78 100%);
  color: #ffffff;
}

.hostel-tab-hero-content::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, #d7b46a, #f0dca6, #d7b46a);
}

.hostel-tab-hero-content .hostel-tab-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.hostel-tab-hero-content h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hostel-tab-hero-content h3 {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 850;
}

.hostel-tab-hero-content p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 600;
}

.hostel-tab-hero-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 52px;
}

.hostel-tab-hero-tags span {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

.hostel-tab-fee-box {
  max-width: 410px;
  margin-top: 58px;
  padding: 24px 28px;
  border-radius: 22px;
  background: #ffffff;
  color: var(--life-navy);
  box-shadow: 0 18px 40px rgba(0, 20, 48, 0.20);
}

.hostel-tab-fee-box small {
  display: block;
  margin-bottom: 12px;
  color: var(--life-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hostel-tab-fee-box strong {
  display: block;
  color: var(--life-text);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
}

.hostel-tab-hero-image {
  position: relative;
  overflow: hidden;
}

.hostel-tab-hero-image a,
.hostel-tab-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.hostel-tab-hero-image img {
  object-fit: cover;
  object-position: center;
}

.hostel-tab-comfort-section,
.hostel-tab-room-section,
.hostel-tab-furnished-section,
.hostel-tab-gallery-section {
  padding: 72px 0;
}

.hostel-tab-comfort-section,
.hostel-tab-furnished-section {
  background:
    radial-gradient(circle at top right, rgba(6, 77, 173, 0.07), transparent 30%),
    #f7fbff;
}

.hostel-tab-room-section,
.hostel-tab-question-section {
  background: #ffffff;
}

.hostel-tab-gallery-section {
  background:
    radial-gradient(circle at top left, rgba(6, 77, 173, 0.07), transparent 30%),
    #f7fbff;
}

.hostel-tab-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.hostel-tab-section-head.text-center {
  margin-left: auto;
  margin-right: auto;
}

.hostel-tab-section-head h2 {
  margin: 0 0 12px;
  color: var(--life-text);
  font-size: 38px;
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hostel-tab-section-head p {
  margin: 0;
  color: var(--life-muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.hostel-tab-comfort-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hostel-tab-comfort-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--life-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(5, 36, 82, 0.08);
  transition: 0.28s ease;
}

.hostel-tab-comfort-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(5, 36, 82, 0.15);
}

.hostel-tab-comfort-card img {
  width: 100%;
  height: 175px;
  display: block;
  object-fit: cover;
}

.hostel-tab-comfort-card div {
  padding: 22px;
}

.hostel-tab-comfort-card h3 {
  margin: 0 0 8px;
  color: var(--life-text);
  font-size: 17px;
  font-weight: 900;
}

.hostel-tab-comfort-card p {
  margin: 0;
  color: var(--life-muted);
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 600;
}

.hostel-tab-question-section {
  padding: 46px 0;
}

.hostel-tab-question-box {
  padding: 34px;
  border: 1px solid var(--life-border);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(5, 36, 82, 0.10);
}

.hostel-tab-question-title span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--life-blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hostel-tab-question-title h2 {
  margin: 0 0 24px;
  color: var(--life-text);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
}

.hostel-tab-question-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.hostel-tab-question-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hostel-tab-question-grid strong {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #b8d4f3;
  border-radius: 50%;
  color: var(--life-blue);
  background: #eef6ff;
  font-size: 18px;
  font-weight: 900;
}

.hostel-tab-question-grid p {
  margin: 0;
  color: var(--life-muted);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 650;
}

.hostel-tab-room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.hostel-tab-room-card {
  overflow: hidden;
  border: 1px solid var(--life-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(5, 36, 82, 0.10);
  transition: 0.28s ease;
}

.hostel-tab-room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(5, 36, 82, 0.16);
}

.hostel-tab-room-img {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
}

.hostel-tab-room-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s ease;
}

.hostel-tab-room-card:hover .hostel-tab-room-img img {
  transform: scale(1.06);
}

.hostel-tab-room-img span {
  position: absolute;
  left: 22px;
  top: 18px;
  min-width: 110px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--life-navy);
  color: #ffffff;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hostel-tab-room-body {
  padding: 28px;
}

.hostel-tab-room-body h3 {
  margin: 0 0 8px;
  color: var(--life-text);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.hostel-tab-room-body strong {
  display: block;
  color: var(--life-blue);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.hostel-tab-room-body small {
  display: block;
  margin: 8px 0 16px;
  color: var(--life-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hostel-tab-room-body p {
  margin: 0;
  color: var(--life-muted);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
}

.hostel-tab-fee-note {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  padding: 18px 24px;
  border: 1px solid #b8d4f3;
  border-radius: 18px;
  background: #eef6ff;
}

.hostel-tab-fee-note strong {
  color: var(--life-navy);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.hostel-tab-fee-note p {
  margin: 0;
  color: var(--life-muted);
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 650;
}

.hostel-tab-main-room {
  position: relative;
  display: block;
  height: 520px;
  overflow: hidden;
  border: 8px solid #ffffff;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(5, 36, 82, 0.14);
}

.hostel-tab-main-room img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hostel-tab-gallery-hover {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(5, 43, 85, 0.88);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.hostel-tab-comfort-points {
  height: 100%;
  padding: 34px;
  border: 1px solid var(--life-border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(5, 36, 82, 0.10);
}

.hostel-tab-comfort-points ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.hostel-tab-comfort-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--life-muted);
  font-size: 14px;
  font-weight: 650;
}

.hostel-tab-comfort-points li i {
  color: var(--life-blue);
  margin-top: 2px;
}

.hostel-tab-thumb-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hostel-tab-thumb-gallery a {
  display: block;
  height: 105px;
  overflow: hidden;
  border-radius: 16px;
  border: 4px solid #eef6ff;
}

.hostel-tab-thumb-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hostel-tab-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 18px;
}

.hostel-tab-gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 6px solid #ffffff;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(5, 36, 82, 0.10);
}

.hostel-tab-gallery-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.hostel-tab-gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s ease;
}

.hostel-tab-gallery-card:hover img {
  transform: scale(1.06);
}

.hostel-tab-gallery-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(5, 43, 85, 0.9);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.lg-backdrop {
  z-index: 3000 !important;
}

.lg-outer {
  z-index: 3010 !important;
}

.lg-toolbar,
.lg-actions,
.lg-sub-html,
.lg-thumb-outer {
  z-index: 3020 !important;
}

@media (max-width: 991.98px) {
  .hostel-tab-hero-grid {
    grid-template-columns: 1fr;
  }

  .hostel-tab-hero-content::after {
    display: none;
  }

  .hostel-tab-hero-image {
    height: 430px;
  }

  .hostel-tab-comfort-grid,
  .hostel-tab-question-grid,
  .hostel-tab-room-grid,
  .hostel-tab-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hostel-tab-main-room {
    height: 420px;
  }
}

@media (max-width: 575.98px) {
  .hostel-tab-hero-content {
    padding: 54px 24px;
  }

  .hostel-tab-hero-content h2 {
    font-size: 42px;
  }

  .hostel-tab-hero-content h3 {
    font-size: 23px;
  }

  .hostel-tab-comfort-grid,
  .hostel-tab-question-grid,
  .hostel-tab-room-grid,
  .hostel-tab-gallery-grid,
  .hostel-tab-thumb-gallery {
    grid-template-columns: 1fr;
  }

  .hostel-tab-gallery-card.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hostel-tab-gallery-grid {
    grid-auto-rows: 230px;
  }

  .hostel-tab-section-head h2 {
    font-size: 28px;
  }

  .hostel-tab-question-box,
  .hostel-tab-comfort-points {
    padding: 24px;
  }

  .hostel-tab-main-room {
    height: 330px;
  }

  .hostel-tab-fee-note {
    flex-direction: column;
    gap: 8px;
  }
}


/* =========================================================
   FINAL HOSTEL TAB - PROFESSIONAL BROCHURE FLOW
========================================================= */

.hostel-tab-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--life-blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hostel-tab-comfort-section,
.hostel-tab-room-section,
.hostel-tab-furnished-section,
.hostel-tab-mess-section,
.hostel-tab-nearby-section {
  padding: 72px 0;
}

.hostel-tab-comfort-section,
.hostel-tab-furnished-section,
.hostel-tab-nearby-section {
  background:
    radial-gradient(circle at top right, rgba(6, 77, 173, 0.07), transparent 30%),
    #f7fbff;
}

.hostel-tab-room-section,
.hostel-tab-question-section,
.hostel-tab-mess-section {
  background: #ffffff;
}

.hostel-tab-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.hostel-tab-section-head.text-center {
  margin-left: auto;
  margin-right: auto;
}

.hostel-tab-section-head h2 {
  margin: 0 0 12px;
  color: var(--life-text);
  font-size: 38px;
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hostel-tab-section-head p {
  margin: 0;
  color: var(--life-muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.hostel-tab-mini-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--life-border);
  border-radius: 18px;
  background: #ffffff;
  color: var(--life-navy);
  box-shadow: 0 10px 24px rgba(5, 36, 82, 0.07);
}

.hostel-tab-mini-note i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--life-blue), var(--life-navy));
  font-size: 18px;
}

.hostel-tab-mini-note span {
  color: var(--life-muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

/* Comfort cards */
.hostel-tab-comfort-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hostel-tab-comfort-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--life-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(5, 36, 82, 0.08);
  transition: 0.28s ease;
}

.hostel-tab-comfort-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(5, 36, 82, 0.15);
}

.hostel-tab-comfort-card img {
  width: 100%;
  height: 175px;
  display: block;
  object-fit: cover;
}

.hostel-tab-comfort-card div {
  padding: 22px;
}

.hostel-tab-comfort-card h3 {
  margin: 0 0 8px;
  color: var(--life-text);
  font-size: 17px;
  font-weight: 900;
}

.hostel-tab-comfort-card p {
  margin: 0;
  color: var(--life-muted);
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 600;
}

/* Parent question */
.hostel-tab-question-section {
  padding: 46px 0;
}

.hostel-tab-question-box {
  padding: 34px;
  border: 1px solid var(--life-border);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(5, 36, 82, 0.10);
}

.hostel-tab-question-title span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--life-blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hostel-tab-question-title h2 {
  margin: 0 0 24px;
  color: var(--life-text);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
}

.hostel-tab-question-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.hostel-tab-question-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hostel-tab-question-grid strong {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #b8d4f3;
  border-radius: 50%;
  color: var(--life-blue);
  background: #eef6ff;
  font-size: 18px;
  font-weight: 900;
}

.hostel-tab-question-grid p {
  margin: 0;
  color: var(--life-muted);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 650;
}

/* Room cards */
.hostel-tab-room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.hostel-tab-room-card {
  width: 100%;
  display: block;
  padding: 0;
  border: 1px solid var(--life-border);
  border-radius: 24px;
  background: #ffffff;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(5, 36, 82, 0.10);
  transition: 0.28s ease;
  cursor: pointer;
}

.hostel-tab-room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(5, 36, 82, 0.16);
}

.hostel-tab-room-img {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
}

.hostel-tab-room-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s ease;
}

.hostel-tab-room-card:hover .hostel-tab-room-img img {
  transform: scale(1.06);
}

.hostel-tab-room-img span {
  position: absolute;
  left: 22px;
  top: 18px;
  min-width: 110px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--life-navy);
  color: #ffffff;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hostel-tab-room-body {
  padding: 28px;
}

.hostel-tab-room-body h3 {
  margin: 0 0 8px;
  color: var(--life-text);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.hostel-tab-room-body strong {
  display: block;
  color: var(--life-blue);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.hostel-tab-room-body small {
  display: block;
  margin: 8px 0 16px;
  color: var(--life-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hostel-tab-room-body p {
  margin: 0 0 18px;
  color: var(--life-muted);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
}

.hostel-tab-room-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--life-navy);
  font-size: 13px;
  font-weight: 900;
}

.hostel-tab-room-action i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf3ff;
  color: var(--life-blue);
}

.hostel-tab-fee-note {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  padding: 18px 24px;
  border: 1px solid #b8d4f3;
  border-radius: 18px;
  background: #eef6ff;
}

.hostel-tab-fee-note strong {
  color: var(--life-navy);
  font-size: 13px;
  font-weight: 900;
}

.hostel-tab-fee-note p {
  margin: 0;
  color: var(--life-muted);
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 650;
}

/* Furnished section */
.hostel-tab-main-room {
  position: relative;
  display: block;
  height: 520px;
  overflow: hidden;
  border: 8px solid #ffffff;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(5, 36, 82, 0.14);
}

.hostel-tab-main-room img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hostel-tab-gallery-hover {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(5, 43, 85, 0.88);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.hostel-tab-comfort-points {
  height: 100%;
  padding: 34px;
  border: 1px solid var(--life-border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(5, 36, 82, 0.10);
}

.hostel-tab-comfort-points ul,
.hostel-tab-mess-content ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.hostel-tab-comfort-points li,
.hostel-tab-mess-content li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--life-muted);
  font-size: 14px;
  font-weight: 650;
}

.hostel-tab-comfort-points li i,
.hostel-tab-mess-content li i {
  color: var(--life-blue);
  margin-top: 2px;
}

.hostel-tab-thumb-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hostel-tab-thumb-gallery a {
  display: block;
  height: 105px;
  overflow: hidden;
  border-radius: 16px;
  border: 4px solid #eef6ff;
}

.hostel-tab-thumb-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Indian Mess */
.hostel-tab-mess-section {
  position: relative;
  overflow: hidden;
}

.hostel-tab-mess-content h2 {
  margin: 0 0 12px;
  color: var(--life-text);
  font-size: 36px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hostel-tab-mess-content p {
  margin: 0;
  color: var(--life-muted);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 600;
}

.hostel-tab-mess-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
}

.hostel-tab-mess-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 6px solid #ffffff;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(5, 36, 82, 0.11);
}

.hostel-tab-mess-card.large {
  grid-row: span 2;
}

.hostel-tab-mess-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.hostel-tab-mess-card:hover img {
  transform: scale(1.06);
}

.hostel-tab-mess-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(5, 43, 85, 0.9);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.hostel-tab-mess-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid #b8d4f3;
  background: #eef6ff;
  color: var(--life-navy);
  font-size: 13px;
  font-weight: 800;
}

.hostel-tab-mess-note i {
  color: var(--life-blue);
  font-size: 20px;
}

/* Nearby */
.hostel-tab-nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.hostel-tab-nearby-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--life-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(5, 36, 82, 0.08);
  transition: 0.28s ease;
}

.hostel-tab-nearby-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 44px rgba(5, 36, 82, 0.14);
}

.hostel-tab-nearby-card img {
  width: 100%;
  height: 145px;
  display: block;
  object-fit: cover;
}

.hostel-tab-nearby-card div {
  padding: 20px;
}

.hostel-tab-nearby-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--life-blue), var(--life-navy));
}

.hostel-tab-nearby-card h3 {
  margin: 0 0 6px;
  color: var(--life-text);
  font-size: 16px;
  font-weight: 900;
}

.hostel-tab-nearby-card p {
  margin: 0;
  color: var(--life-muted);
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 600;
}

/* Modal */
.life-page-hostel-modal .modal-content {
  position: relative;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 20, 48, 0.28);
}

.life-page-hostel-modal .modal-body {
  padding: 28px;
  background: #ffffff;
}

.life-page .life-page-hostel-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 9;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 1;
  box-shadow: 0 8px 22px rgba(0, 20, 48, 0.16);
}

.life-page .life-page-hostel-modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 170px;
  gap: 14px;
}

.life-page .life-page-hostel-modal-gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #eef6ff;
}

.life-page .life-page-hostel-modal-gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.life-page .life-page-hostel-modal-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.life-page .life-page-hostel-modal-gallery-item span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(5, 43, 85, 0.9);
  color: #ffffff;
}

.life-page .life-page-hostel-modal-content {
  height: 100%;
  padding: 10px 8px;
}

.life-page .life-page-hostel-modal-content h2 {
  margin: 0 0 10px;
  color: var(--life-text);
  font-size: 32px;
  line-height: 1.16;
  font-weight: 900;
}

.life-page .life-page-hostel-modal-content>strong {
  display: block;
  margin-bottom: 14px;
  color: var(--life-blue);
  font-size: 26px;
  font-weight: 900;
}

.life-page .life-page-hostel-modal-content>p {
  color: var(--life-muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.life-page .life-page-hostel-modal-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.life-page .life-page-hostel-modal-list div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--life-border);
  border-radius: 14px;
  background: #f8fbff;
  color: var(--life-navy);
  font-size: 13px;
  font-weight: 800;
}

.life-page .life-page-hostel-modal-list i {
  color: var(--life-blue);
  margin-top: 2px;
}

.life-page .life-page-hostel-modal-note {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: #eef6ff;
  color: #42566f;
}

.life-page .life-page-hostel-modal-note i {
  color: var(--life-blue);
  margin-top: 2px;
}

.life-page .life-page-hostel-modal-note p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 650;
}

.life-page .life-page-hostel-modal-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin-top: 18px;
  padding: 13px 20px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--life-blue), var(--life-navy));
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  transition: 0.25s ease;
}

.life-page .life-page-hostel-modal-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* LightGallery over modal/page */
.lg-backdrop {
  z-index: 3000 !important;
}

.lg-outer {
  z-index: 3010 !important;
}

.lg-toolbar,
.lg-actions,
.lg-sub-html,
.lg-thumb-outer {
  z-index: 3020 !important;
}

/* Responsive */
@media (max-width: 991.98px) {

  .hostel-tab-comfort-grid,
  .hostel-tab-question-grid,
  .hostel-tab-room-grid,
  .hostel-tab-nearby-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hostel-tab-mess-gallery {
    margin-top: 24px;
  }

  .hostel-tab-main-room {
    height: 420px;
  }
}

@media (max-width: 575.98px) {

  .hostel-tab-comfort-section,
  .hostel-tab-room-section,
  .hostel-tab-furnished-section,
  .hostel-tab-mess-section,
  .hostel-tab-nearby-section {
    padding: 50px 0;
  }

  .hostel-tab-comfort-grid,
  .hostel-tab-question-grid,
  .hostel-tab-room-grid,
  .hostel-tab-mess-gallery,
  .hostel-tab-nearby-grid,
  .life-page .life-page-hostel-modal-gallery,
  .hostel-tab-thumb-gallery {
    grid-template-columns: 1fr;
  }

  .hostel-tab-mess-card.large,
  .life-page .life-page-hostel-modal-gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hostel-tab-section-head h2,
  .hostel-tab-mess-content h2 {
    font-size: 28px;
  }

  .hostel-tab-question-box,
  .hostel-tab-comfort-points {
    padding: 24px;
  }

  .hostel-tab-main-room {
    height: 330px;
  }

  .life-page-hostel-modal .modal-body {
    padding: 18px;
  }

  .life-page .life-page-hostel-modal-content h2 {
    font-size: 26px;
  }
}

/* =========================================================
   CONTACT PAGE DESIGN - UPDATED BLUE THEME
========================================================= */

.contact-page {
  --contact-navy: #052b55;
  --contact-blue: #064dad;
  --contact-blue-2: #0b63ce;
  --contact-text: #102033;
  --contact-muted: #536579;
  --contact-border: #dfe8f2;
  --contact-soft: #f6f9fd;
  --contact-soft-blue: #eef6ff;
  --contact-white: #ffffff;
  --contact-shadow: 0 14px 35px rgba(5, 36, 82, 0.12);
  --contact-shadow-hover: 0 20px 45px rgba(5, 36, 82, 0.16);

  font-family: "Inter", sans-serif;
  color: var(--contact-text);
  background: #ffffff;
  overflow-x: hidden;
}

.contact-page a {
  text-decoration: none;
}

/* =========================================================
   HERO SECTION
========================================================= */

.contact-page .contact-page-hero-section {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--contact-navy);
}

.contact-page .contact-page-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.02);
}

.contact-page .contact-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 12% 28%, rgba(6, 77, 173, 0.35), transparent 28%),
    linear-gradient(90deg,
      rgba(0, 24, 55, 0.98) 0%,
      rgba(0, 35, 76, 0.94) 38%,
      rgba(0, 43, 85, 0.62) 68%,
      rgba(0, 43, 85, 0.18) 100%);
}

.contact-page .contact-page-hero-section .container {
  position: relative;
  z-index: 2;
}

.contact-page .contact-page-hero-content {
  max-width: 720px;
  padding: 70px 0;
  color: #ffffff;
}

.contact-page .contact-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.contact-page .contact-page-breadcrumb a {
  color: rgba(255, 255, 255, 0.74);
}

.contact-page .contact-page-breadcrumb a:hover {
  color: #ffffff;
}

.contact-page .contact-page-breadcrumb span {
  color: #ffffff;
  font-weight: 900;
}

.contact-page .contact-page-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--contact-blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page .contact-page-hero-content .contact-page-kicker {
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-page .contact-page-hero-content h1 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.contact-page .contact-page-hero-content p {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 650;
}

.contact-page .contact-page-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   BUTTONS - BLUE THEME
========================================================= */

.contact-page .contact-page-btn-red,
.contact-page .contact-page-btn-outline {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  transition: 0.25s ease;
}

.contact-page .contact-page-btn-red {
  color: #ffffff;
  background: linear-gradient(135deg, var(--contact-blue) 0%, var(--contact-navy) 100%);
  border: 2px solid var(--contact-blue);
  box-shadow: 0 12px 26px rgba(6, 77, 173, 0.26);
}

.contact-page .contact-page-btn-red:hover {
  color: #ffffff;
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--contact-blue-2) 0%, var(--contact-navy) 100%);
  border-color: var(--contact-blue-2);
  box-shadow: 0 16px 34px rgba(6, 77, 173, 0.32);
}

.contact-page .contact-page-btn-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.contact-page .contact-page-btn-outline:hover {
  color: var(--contact-navy);
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* =========================================================
   QUICK CONTACT CARDS
========================================================= */

.contact-page .contact-page-card-section {
  position: relative;
  padding: 62px 0 36px;
  background: #ffffff;
}

.contact-page .contact-page-info-card {
  position: relative;
  height: 100%;
  padding: 30px 22px;
  border: 1px solid var(--contact-border);
  border-radius: 20px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 10px 28px rgba(5, 36, 82, 0.07);
  transition: 0.28s ease;
  overflow: hidden;
}

.contact-page .contact-page-info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--contact-blue), var(--contact-navy));
  opacity: 0;
  transition: 0.25s ease;
}

.contact-page .contact-page-info-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--contact-shadow-hover);
}

.contact-page .contact-page-info-card:hover::before {
  opacity: 1;
}

.contact-page .contact-page-info-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #edf6ff 0%, #dceeff 100%);
  color: var(--contact-blue);
  font-size: 25px;
  box-shadow: inset 0 0 0 1px rgba(6, 77, 173, 0.08);
  transition: 0.25s ease;
}

.contact-page .contact-page-info-card:hover .contact-page-info-icon {
  color: #ffffff;
  background: linear-gradient(135deg, var(--contact-blue) 0%, var(--contact-navy) 100%);
  transform: translateY(-2px);
}

.contact-page .contact-page-info-card h3 {
  margin: 0 0 8px;
  color: var(--contact-text);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.contact-page .contact-page-info-card p {
  min-height: 42px;
  margin: 0 0 10px;
  color: var(--contact-muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

.contact-page .contact-page-info-card a {
  color: var(--contact-blue);
  font-size: 13px;
  font-weight: 900;
  word-break: break-word;
}

.contact-page .contact-page-info-card a:hover {
  color: var(--contact-navy);
}

/* =========================================================
   FORM SECTION
========================================================= */

.contact-page .contact-page-form-section {
  padding: 40px 0 66px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.contact-page .contact-page-left-card,
.contact-page .contact-page-form-card,
.contact-page .contact-page-address-card,
.contact-page .contact-page-faq-card {
  height: 100%;
  border: 1px solid var(--contact-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--contact-shadow);
  overflow: hidden;
}

.contact-page .contact-page-left-card {
  display: flex;
  flex-direction: column;
}

.contact-page .contact-page-left-img {
  width: 100%;
  height: 285px;
  display: block;
  object-fit: cover;
}

.contact-page .contact-page-left-content {
  flex: 1;
  padding: 30px;
}

.contact-page .contact-page-left-content h2,
.contact-page .contact-page-form-heading h2,
.contact-page .contact-page-section-heading h2,
.contact-page .contact-page-faq-card h2 {
  margin: 0 0 14px;
  color: var(--contact-text);
  font-size: 30px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.contact-page .contact-page-left-content p,
.contact-page .contact-page-form-heading p,
.contact-page .contact-page-section-heading p {
  margin: 0;
  color: var(--contact-muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.contact-page .contact-page-left-content ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.contact-page .contact-page-left-content li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 11px;
  color: #263f5e;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 750;
}

/* Icons changed from red to blue */
.contact-page .contact-page-left-content li i {
  color: var(--contact-blue);
  margin-top: 2px;
}

.contact-page .contact-page-form-card {
  padding: 34px;
}

.contact-page .contact-page-form-heading {
  margin-bottom: 24px;
}

.contact-page .contact-page-form-card label {
  margin-bottom: 7px;
  color: var(--contact-text);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.contact-page .contact-page-form-card .form-control,
.contact-page .contact-page-form-card .form-select {
  min-height: 48px;
  border: 1px solid var(--contact-border);
  border-radius: 10px;
  color: var(--contact-text);
  background-color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
  transition: 0.22s ease;
}

.contact-page .contact-page-form-card .form-control:focus,
.contact-page .contact-page-form-card .form-select:focus {
  border-color: rgba(6, 77, 173, 0.52);
  box-shadow: 0 0 0 4px rgba(6, 77, 173, 0.09);
}

.contact-page .contact-page-form-card textarea.form-control {
  min-height: 112px;
  resize: vertical;
}

.contact-page .contact-page-submit-btn {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--contact-blue) 0%, var(--contact-navy) 100%);
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(6, 77, 173, 0.24);
  transition: 0.25s ease;
}

.contact-page .contact-page-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(6, 77, 173, 0.32);
}

/* =========================================================
   LOCATION SECTION
========================================================= */

.contact-page .contact-page-location-section {
  padding: 66px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(6, 77, 173, 0.08), transparent 28%),
    var(--contact-soft);
}

.contact-page .contact-page-section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
}

.contact-page .contact-page-address-card {
  padding: 34px;
}

.contact-page .contact-page-address-card h3 {
  color: var(--contact-navy);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 26px;
}

.contact-page .contact-page-address-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-page .contact-page-address-item:last-child {
  margin-bottom: 0;
}

.contact-page .contact-page-address-item i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: linear-gradient(135deg, #edf6ff 0%, #dceeff 100%);
  color: var(--contact-blue);
  font-size: 18px;
}

.contact-page .contact-page-address-item h4 {
  margin-bottom: 4px;
  color: var(--contact-text);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.contact-page .contact-page-address-item p {
  color: var(--contact-muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  font-weight: 600;
}

.contact-page .contact-page-map-card {
  height: 100%;
  min-height: 405px;
  overflow: hidden;
  border: 1px solid var(--contact-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--contact-shadow);
}

.contact-page .contact-page-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 405px;
  border: 0;
  display: block;
}

/* =========================================================
   FAQ + CTA SECTION
========================================================= */

.contact-page .contact-page-faq-section {
  padding: 66px 0;
  background: #ffffff;
}

.contact-page .contact-page-faq-card {
  padding: 34px;
}

.contact-page .contact-page-accordion .accordion-item {
  border: 1px solid var(--contact-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(5, 36, 82, 0.04);
}

.contact-page .contact-page-accordion .accordion-button {
  color: var(--contact-text);
  background: #ffffff;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 900;
  box-shadow: none;
}

.contact-page .contact-page-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.contact-page .contact-page-accordion .accordion-button:not(.collapsed) {
  color: var(--contact-navy);
  background: var(--contact-soft-blue);
}

.contact-page .contact-page-accordion .accordion-button::after {
  filter: none;
}

.contact-page .contact-page-accordion .accordion-body {
  color: var(--contact-muted);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 600;
}

.contact-page .contact-page-cta-card {
  position: relative;
  height: 100%;
  min-height: 405px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--contact-navy);
  box-shadow: var(--contact-shadow);
}

.contact-page .contact-page-cta-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-page .contact-page-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(0, 25, 56, 0.98),
      rgba(0, 43, 85, 0.78));
}

.contact-page .contact-page-cta-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 42px;
  color: #ffffff;
}

.contact-page .contact-page-cta-content h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.contact-page .contact-page-cta-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 600;
}

/* =========================================================
   FORCE ALL CONTACT ICONS TO BLUE / NAVY, NO RED
========================================================= */

.contact-page i {
  color: inherit;
}

.contact-page .contact-page-info-icon i,
.contact-page .contact-page-left-content li i,
.contact-page .contact-page-address-item i,
.contact-page .contact-page-accordion i {
  color: inherit;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
  .contact-page .contact-page-hero-section {
    min-height: 480px;
  }

  .contact-page .contact-page-hero-content h1 {
    font-size: 42px;
  }

  .contact-page .contact-page-left-img {
    height: 260px;
  }
}

@media (max-width: 767.98px) {
  .contact-page .contact-page-card-section {
    padding-top: 44px;
  }

  .contact-page .contact-page-form-section,
  .contact-page .contact-page-location-section,
  .contact-page .contact-page-faq-section {
    padding: 48px 0;
  }
}

@media (max-width: 575.98px) {
  .contact-page .contact-page-hero-section {
    min-height: 540px;
  }

  .contact-page .contact-page-hero-content {
    padding: 48px 0;
  }

  .contact-page .contact-page-hero-content h1 {
    font-size: 36px;
  }

  .contact-page .contact-page-hero-content p {
    font-size: 14px;
    line-height: 1.65;
  }

  .contact-page .contact-page-hero-actions {
    flex-direction: column;
  }

  .contact-page .contact-page-btn-red,
  .contact-page .contact-page-btn-outline {
    width: 100%;
  }

  .contact-page .contact-page-form-card,
  .contact-page .contact-page-address-card,
  .contact-page .contact-page-faq-card,
  .contact-page .contact-page-cta-content,
  .contact-page .contact-page-left-content {
    padding: 24px;
  }

  .contact-page .contact-page-left-content h2,
  .contact-page .contact-page-form-heading h2,
  .contact-page .contact-page-section-heading h2,
  .contact-page .contact-page-faq-card h2,
  .contact-page .contact-page-cta-content h2 {
    font-size: 26px;
  }

  .contact-page .contact-page-map-card,
  .contact-page .contact-page-map-card iframe,
  .contact-page .contact-page-cta-card {
    min-height: 340px;
  }
}


/* =========================================================
   REUSABLE PROGRAM FEE SECTION
========================================================= */

.program-fee-section {
  padding: 66px 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(6, 77, 173, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.program-fee-heading {
  max-width: 760px;
  margin: 0 auto 38px;
}

.program-fee-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #064dad;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-fee-heading h2 {
  margin: 0 0 12px;
  color: #102033;
  font-size: 34px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.program-fee-heading p {
  margin: 0;
  color: #536579;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

/* Main Fee Card */
.program-fee-main-card {
  height: 100%;
  padding: 34px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, #052b55 0%, #064dad 100%);
  box-shadow: 0 20px 45px rgba(5, 36, 82, 0.18);
  color: #ffffff;
}

.program-fee-card-top span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-fee-card-top h3 {
  margin: 0 0 28px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
}

.program-fee-price-box {
  padding: 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.program-fee-price-box small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.program-fee-price-box strong {
  display: block;
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.program-fee-price-box p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
}

.program-fee-total {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 18px 0 24px;
}

.program-fee-total div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.program-fee-total span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.program-fee-total strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.program-fee-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 13px 22px;
  border-radius: 12px;
  background: #ffffff;
  color: #052b55;
  font-size: 13px;
  font-weight: 900;
  transition: 0.25s ease;
}

.program-fee-btn:hover {
  color: #052b55;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 22, 52, 0.18);
}

/* Detail Card */
.program-fee-detail-card {
  height: 100%;
  padding: 34px;
  border: 1px solid #dfe8f2;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(5, 36, 82, 0.10);
}

.program-fee-detail-head {
  margin-bottom: 26px;
}

.program-fee-detail-head h3 {
  margin: 0 0 10px;
  color: #102033;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
}

.program-fee-detail-head p {
  margin: 0;
  color: #536579;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.program-fee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.program-fee-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid #dfe8f2;
  border-radius: 18px;
  background: #f8fbff;
}

.program-fee-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: #eaf3ff;
  color: #064dad;
  font-size: 20px;
}

.program-fee-item h4 {
  margin: 0 0 6px;
  color: #102033;
  font-size: 15px;
  font-weight: 900;
}

.program-fee-item p {
  margin: 0;
  color: #536579;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 600;
}

.program-fee-note {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #eef6ff;
  border: 1px solid #d8eaff;
}

.program-fee-note i {
  color: #064dad;
  font-size: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.program-fee-note p {
  margin: 0;
  color: #42566f;
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 650;
}

/* Responsive */
@media (max-width: 991.98px) {
  .program-fee-section {
    padding: 54px 0;
  }

  .program-fee-heading h2 {
    font-size: 30px;
  }

  .program-fee-price-box strong {
    font-size: 36px;
  }
}

@media (max-width: 575.98px) {

  .program-fee-main-card,
  .program-fee-detail-card {
    padding: 24px;
    border-radius: 20px;
  }

  .program-fee-grid,
  .program-fee-total {
    grid-template-columns: 1fr;
  }

  .program-fee-heading h2 {
    font-size: 26px;
  }

  .program-fee-detail-head h3 {
    font-size: 23px;
  }

  .program-fee-price-box strong {
    font-size: 34px;
  }
}

/* =========================================================
   GLOBAL ENQUIRY MODAL
========================================================= */

.global-enquiry-modal {
  z-index: 2000;
}

.global-enquiry-modal .modal-dialog {
  max-width: 450px;
}

.global-enquiry-modal .modal-content {
  position: relative;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(0, 20, 48, 0.28);
}

.global-enquiry-modal .modal-body {
  padding: 0;
  max-height: 92vh;
  overflow-y: auto;
}

.global-enquiry-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 1;
  box-shadow: 0 8px 22px rgba(0, 20, 48, 0.16);
}

/* Top Header */
.global-enquiry-top {
  padding: 30px 34px 10px;
  background:
    linear-gradient(135deg, #052b55 0%, #064dad 100%);
  color: #ffffff;
}

.global-enquiry-top h2 {
  max-width: 430px;
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.global-enquiry-top p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 600;
}

/* Form */
.global-enquiry-card {
  padding: 26px 34px 34px;
  background: #ffffff;
}

.global-enquiry-card .form-control,
.global-enquiry-card .form-select {
  min-height: 44px;
  border: 1px solid #dfe8f2;
  border-radius: 10px;
  color: #102033;
  background-color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
}

.global-enquiry-card .form-control::placeholder {
  color: #7a8ba0;
}

.global-enquiry-card .form-control:focus,
.global-enquiry-card .form-select:focus {
  border-color: rgba(6, 77, 173, 0.55);
  box-shadow: 0 0 0 4px rgba(6, 77, 173, 0.09);
}

.global-enquiry-submit {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 4px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, #064dad 0%, #052b55 100%);
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(6, 77, 173, 0.24);
  transition: 0.25s ease;
}

.global-enquiry-submit:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(6, 77, 173, 0.32);
}

/* Success Message */
.global-enquiry-success {
  padding: 46px 34px 42px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(6, 77, 173, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.global-enquiry-success[hidden],
.global-enquiry-top[hidden],
.global-enquiry-card[hidden] {
  display: none !important;
}

.global-enquiry-success-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #eef6ff;
  color: #064dad;
  font-size: 42px;
  box-shadow: 0 12px 28px rgba(6, 77, 173, 0.12);
}

.global-enquiry-success span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #eef6ff;
  color: #064dad;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.global-enquiry-success h3 {
  margin: 0 0 10px;
  color: #052b55;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.global-enquiry-success p {
  max-width: 420px;
  margin: 0 auto 26px;
  color: #536579;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 650;
}

.global-enquiry-success-btn {
  min-width: 150px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, #064dad 0%, #052b55 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(6, 77, 173, 0.24);
}

.global-enquiry-success-btn:hover {
  color: #ffffff;
}

@media (max-width: 767.98px) {
  .global-enquiry-modal .modal-dialog {
    max-width: calc(100% - 24px);
      margin-top: 25px !important;
      margin-bottom: 4px !important;
      min-height: auto !important;
      align-items: flex-start !important;
    }

  .global-enquiry-top {
    padding: 35px 24px 22px;
  }

  .global-enquiry-card {
    padding: 24px;
  }

  .global-enquiry-top h2 {
    font-size: 25px;
  }

  .global-enquiry-success {
    padding: 42px 24px 36px;
  }
}
