:root {
  --navy: #071428;
  --navy-2: #0b1f3a;
  --navy-3: #14345c;
  --gold: #c9a227;
  --gold-lt: #e8c547;
  --cream: #f6f1e6;
  --ivory: #fbf8f1;
  --white: #fff;
  --ink: #1c2430;
  --muted: #5c6570;
  --teal: #0f766e;
  --shadow: 0 22px 50px rgba(7, 20, 40, 0.16);
  --radius: 22px;
  --font-body: Inter, system-ui, sans-serif;
  --font-heading: Poppins, system-ui, sans-serif;
  --page-gutter: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  box-sizing: border-box;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 3.7vw, 3.45rem);
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.eyebrow {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin-bottom: 12px;
}

.section {
  padding: 92px 0;
}

.section__head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 48px;
}

.section__head h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
}

.section__sub,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.subhead {
  margin: 22px 0 14px;
  color: var(--navy);
}

.center-copy {
  text-align: center;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-weight: 500;
  transition: 0.28s ease;
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold-lt), var(--gold));
  color: var(--navy);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--navy);
  display: grid;
  place-items: center;
  gap: 18px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
}

.preloader__mark {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-lt);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  animation: rise 0.8s ease;
}

.preloader__mark img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.preloader__bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.preloader__bar i {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gold);
  animation: load 0.9s ease infinite;
}

/* Site header — 3 layers */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.topbar {
  color: #d7deea;
  font-size: 0.82rem;
}

/* Layer 1 — full-width scrolling announcements */
.topbar--announce {
  background: var(--navy);
  padding: 9px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

.topbar__ticker {
  width: 100%;
  overflow: hidden;
}

.topbar__track {
  display: flex;
  width: max-content;
  gap: 48px;
  padding-left: 100%;
  animation: ticker 38s linear infinite;
}

.topbar__track span {
  white-space: nowrap;
  color: var(--gold-lt);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.topbar__track span::before {
  content: "◆";
  margin-right: 14px;
  color: var(--gold);
  font-size: 0.55rem;
  vertical-align: middle;
}

/* Layer 2 — phone & email */
.topbar--contact {
  background: var(--navy-2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
}

.topbar__contact {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e8eef8;
  font-weight: 500;
  transition: color 0.25s ease;
}

.topbar__contact a:hover {
  color: var(--gold-lt);
}

.topbar__contact svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* Layer 2 — main header (2 rows) */
.header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
}

.header__brand {
  background: var(--white);
  border-bottom: 1px solid #e8e2d4;
}

.header__brand-inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.logo img {
  width: auto;
  height: 88px;
  max-width: min(300px, 52vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  border: 0;
  background: transparent;
  display: block;
}

.logo__text,
.logo > span {
  display: none;
}

.logo strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1.05;
  color: var(--navy);
}

.logo small {
  display: block;
  color: var(--navy-3);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 2px;
}

.logo--light,
.logo--light strong {
  color: #ffffff;
}

.logo--light small {
  color: #9eb0c8;
}

.logo--light img {
  background: #fff;
  border-radius: 8px;
  padding: 4px 6px;
}

.header__programs {
  display: flex;
  align-items: stretch;
  margin-left: auto;
  border: 1px solid #e8e2d4;
  border-radius: 8px;
  overflow: hidden;
}

.program-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 72px;
  padding: 8px 10px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.program-link + .program-link {
  border-left: 1px solid #e8e2d4;
}

.program-link svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--navy-3);
  stroke-width: 1.6;
  transition: stroke 0.25s ease;
}

.program-link:hover,
.program-link.is-active {
  background: var(--navy);
  color: var(--gold-lt);
}

.program-link:hover svg,
.program-link.is-active svg {
  stroke: var(--gold-lt);
}

.header__nav-wrap {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 45;
}

.mobile-nav-info,
.nav-backdrop,
.sidebar-close {
  display: none;
}

.header__nav-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.nav {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  font-size: 0.84rem;
  font-weight: 500;
  color: #e8eef8;
  margin: 0;
  padding: 0;
}

.nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  min-height: 38px;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.nav__icon {
  display: none;
}

/* Same left start as logo */
.nav > a:first-child {
  padding-left: 0;
}

.nav > a:last-child {
  padding-right: 0;
}

.nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.18);
}

.nav a:hover,
.nav a.is-active {
  color: var(--gold-lt);
  background: rgba(255, 255, 255, 0.04);
}

.nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
  height: 34px;
  margin: 0;
  padding: 0;
}

/* Contact Us — nav bar CTA (desktop) */
.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.88rem;
  white-space: nowrap;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(201, 162, 39, 0.35);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  align-self: center;
}

.btn-contact svg {
  width: 17px;
  height: 17px;
  fill: var(--navy);
  flex-shrink: 0;
}

.btn-contact span {
  white-space: nowrap;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.45);
}

/* Contact inside mobile menu only */
.nav a.nav__contact {
  display: none;
}

/* Matching CTA pills — equal size + equal top/bottom gap */
.btn-admit,
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 34px;
  min-height: 34px;
  max-height: 34px;
  padding: 0 12px;
  margin: 0;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  box-sizing: border-box;
  vertical-align: middle;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-admit {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--navy);
  box-shadow: 0 6px 16px rgba(201, 162, 39, 0.28);
}

.btn-wa {
  background: #25d366;
  color: #073218;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.28);
}

.btn-wa svg,
.btn-admit svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.btn-wa svg {
  fill: currentColor;
  stroke: none;
}

.btn-admit:hover,
.btn-wa:hover {
  transform: translateY(-1px);
}

.btn-contact--mobile {
  display: none;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #e8e2d4;
  border-radius: 8px;
  background: var(--ivory);
  flex-shrink: 0;
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 6px 8px;
  background: var(--navy);
  transition: 0.25s ease;
}

/* Hero slider */
.hero {
  position: relative;
  min-height: 78vh;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.slider {
  position: relative;
  min-height: 78vh;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: 78vh;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.slide::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: inherit;
  background-size: cover;
  background-position: center;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide.is-active::before {
  animation: kenburns 8s ease forwards;
}

.slide.is-active .slide__content {
  animation: rise 0.8s ease;
}

.slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 20, 40, 0.88) 8%, rgba(7, 20, 40, 0.42) 70%, rgba(7, 20, 40, 0.2));
}

.slide__content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.slide__content .lead {
  max-width: 560px;
  margin-top: 16px;
  color: #d7deea;
}

.contact .lead,
.contact__tagline {
  max-width: 36ch;
  margin: 14px 0 22px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.45;
}

.slider__ui {
  position: absolute;
  inset: auto 5vw 72px auto;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.slider__nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 20, 40, 0.4);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.slider__nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.slider__dots {
  display: flex;
  gap: 8px;
}

.slider__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.slider__dots button.is-active {
  background: var(--gold);
  transform: scale(1.2);
}

.hero__scroll {
  display: none;
}

/* Exam icons under slider */
.exam-strip {
  position: relative;
  z-index: 5;
  margin-top: -48px;
  padding: 0 0 28px;
}

.exam-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.exam-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 140px;
  padding: 20px 12px;
  background: var(--navy);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(7, 20, 40, 0.28);
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.exam-icon:hover {
  transform: translateY(-6px);
  border-color: var(--gold-lt);
  box-shadow: 0 22px 44px rgba(7, 20, 40, 0.38);
}

.exam-icon__badge {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--gold-lt);
}

.exam-icon__badge svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.exam-icon__badge--neet,
.exam-icon__badge--jee,
.exam-icon__badge--math,
.exam-icon__badge--cbse {
  background: rgba(201, 162, 39, 0.14);
  color: var(--gold-lt);
}

.exam-icon strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.1;
}

.exam-icon small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

/* Auto-scroll event cards */
.event-scroll {
  padding: 36px 0 44px;
  background: var(--ivory);
}

.event-scroll__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.event-scroll__track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 4px 0;
  animation: eventScroll 48s linear infinite;
}

.event-scroll__track.is-paused {
  animation-play-state: paused;
}

.event-card {
  flex: 0 0 270px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e5dfd2;
  box-shadow: 0 10px 28px rgba(7, 20, 40, 0.1);
}

.event-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  object-position: top center;
  background: #f7f1e6;
  display: block;
}

.event-card__caption {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 14px 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.3;
}

@keyframes eventScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Programs */
.program-grid,
.role-grid,
.focus-grid,
.activity-grid,
.facility-grid,
.contact-cards {
  display: grid;
  gap: 18px;
}

.program-grid {
  grid-template-columns: repeat(4, 1fr);
}

.program-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: var(--ink);
  transition: 0.3s ease;
}

.program-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #e8eef5;
}

.program-card[href="neet.html"] img {
  object-position: center 8%;
}

.program-card[href="iit-jee.html"] img {
  object-position: center 20%;
}

.program-card[href="foundation.html"] img {
  object-fit: contain;
  object-position: center center;
  background: #0b1628;
}

.program-card div {
  padding: 18px;
}

.program-card:hover {
  transform: translateY(-8px);
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, 0.14);
  margin-bottom: 10px;
}

.icon-badge svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--navy-3);
  stroke-width: 1.7;
}

.approach-copy {
  margin: 36px auto 18px;
  max-width: 860px;
  text-align: center;
}

.pill-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--gold-lt);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.pill-row li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* About */
.about {
  background: #fff;
}

.mission {
  background: var(--cream);
  padding-top: 48px;
}

.mission .container {
  max-width: 980px;
}

.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  align-items: stretch;
}

.mission__item {
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--gold);
  height: 100%;
}

.mission__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.mission__label svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission__item p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: none;
  line-height: 1.7;
}

.mission__belief {
  margin: 40px auto 0;
  max-width: none;
  width: 100%;
  text-align: center;
  padding: 28px 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  box-shadow: var(--shadow);
}

.mission__belief-label {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 10px;
}

.mission__belief > p:last-child {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  color: var(--gold-lt);
  line-height: 1.45;
}

.about__grid,
.course__grid,
.faculty__grid,
.admissions__grid,
.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.map-section {
  background: #f7f5f0;
}

.map-section h2 {
  margin-bottom: 0.35rem;
}

.map-section__sub {
  margin: 0 0 1.25rem;
  color: var(--navy-3);
  max-width: 40rem;
}

.map-embed {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid #e0d8c8;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 35, 65, 0.08);
  aspect-ratio: 16 / 9;
  min-height: 320px;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.results__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
}

.facilities__layout > *:not(.facilities__media) {
  min-width: 0;
}

.about__grid {
  align-items: start;
  gap: 36px 48px;
}

.course__grid--flip {
  grid-template-columns: 0.95fr 1.05fr;
}

.about__media,
.course__visual,
.faculty__media,
.results__media,
.facilities__media,
.admissions__media {
  position: relative;
}

.about__more,
.view-more__panel {
  margin-top: 14px;
}

.about__more p + p,
.view-more__panel p + p {
  margin-top: 12px;
}

.about__more-btn,
.view-more__btn {
  margin-top: 22px;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
}

.about__more-btn svg,
.view-more__btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.about__more-btn.is-open svg,
.view-more__btn.is-open svg {
  transform: rotate(180deg);
}

.about__media img,
.faculty__media img,
.admissions__media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.facilities__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.facilities__layout > .facilities__copy {
  min-width: 0;
  width: 100%;
}

.facilities__media {
  overflow: hidden;
  border-radius: 28px;
  background: transparent;
  line-height: 0;
}

.facilities__media img {
  width: 100%;
  height: auto;
  min-height: 360px;
  max-height: 520px;
  object-fit: cover;
  object-position: center center;
  background: transparent;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: block;
}

.facilities .facility-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  min-width: 0;
  gap: 12px;
}

.facilities .facility-grid li {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  padding: 12px 12px 12px 36px;
  font-size: 0.95rem;
}

.facilities .facility-grid li::before {
  left: 14px;
  width: 9px;
  height: 9px;
}

.facilities .section__head {
  text-align: center;
}

@media (max-width: 700px) {
  .facilities .facility-grid {
    grid-template-columns: 1fr;
  }
}

.results__layout > .results__copy {
  min-width: 0;
  width: 100%;
}

.results__media {
  overflow: hidden;
  border-radius: 28px;
  background: transparent;
  line-height: 0;
}

.results__media img {
  width: 100%;
  height: auto;
  min-height: 380px;
  max-height: 520px;
  object-fit: cover;
  object-position: center center;
  background: transparent;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: block;
}

.results .focus-grid {
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.results .focus-card {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.results .focus-card h3 {
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: clamp(0.9rem, 1.35vw, 1.02rem);
  line-height: 1.35;
}

.results .quote {
  margin-top: 10px;
}

.results .hero__actions {
  flex-wrap: wrap;
}

.about__media img {
  object-fit: cover;
  object-position: center top;
  background: transparent;
}

.admissions__grid {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px 40px;
}

.admissions__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding-top: 0;
}

.admissions__media {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: transparent;
  line-height: 0;
  display: block;
  width: fit-content;
  max-width: min(100%, 340px);
  height: auto;
  max-height: none;
  justify-self: end;
}

.admissions__media img {
  width: 100%;
  height: auto;
  max-height: 460px;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
  border-radius: 22px;
  box-shadow: none;
  background: transparent;
  transform: none;
  display: block;
}

.about__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--gold);
}

.role-grid,
.focus-grid {
  grid-template-columns: repeat(2, 1fr);
  margin: 18px 0;
}

.role-card,
.focus-card,
.activity-card,
.contact-card {
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 16px;
  padding: 16px;
}

.focus-card {
  color: var(--ink);
}

.focus-card h3 {
  color: var(--navy);
  margin-top: 8px;
  font-size: 1.05rem;
}

.role-card span,
.focus-card span,
.activity-card span {
  font-size: 1.4rem;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.28);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.activity-card .card-icon {
  background: rgba(201, 162, 39, 0.16);
  border-color: rgba(201, 162, 39, 0.35);
}

.activity-card h3 {
  margin-top: 12px;
  font-size: 1.02rem;
}

.role-card,
.focus-card,
.activity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 16px;
}

.role-card .role-icon,
.focus-card .card-icon,
.activity-card .card-icon {
  margin: 0 auto;
  flex-shrink: 0;
}

.role-card h3,
.focus-card h3,
.activity-card h3 {
  margin-top: 0;
  width: 100%;
}

.role-card {
  gap: 10px;
}

.role-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.role-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Courses */
.course--alt {
  background: var(--cream);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-top: 18px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
}

.course__visual {
  position: relative;
}

.course__visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: block;
  background: #e8eef5;
}

#neet .course__visual img {
  object-position: center 10%;
  height: min(560px, 72vw);
}

.formula-card {
  margin-top: 16px;
  margin-left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--gold);
  position: relative;
}

.formula {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  counter-reset: step;
}

.formula li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-lt);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  animation: pulse 2.4s ease infinite;
}

.formula li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.formula li:nth-child(2) { animation-delay: 0.15s; }
.formula li:nth-child(3) { animation-delay: 0.3s; }
.formula li:nth-child(4) { animation-delay: 0.45s; }
.formula li:nth-child(5) { animation-delay: 0.6s; }
.formula li:nth-child(6) { animation-delay: 0.75s; }

.formula--wide {
  background: var(--navy);
  padding: 16px;
  border-radius: 16px;
}

.quote {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--gold-lt);
  margin-top: 18px;
}

.note {
  color: #c5cedb;
  font-size: 0.95rem;
}

.results,
.approach {
  background: var(--navy);
  color: var(--white);
}

.results-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 42px;
}

.results-shot {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.results-shot:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.results-shot img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: top center;
  background: #f7f1e6;
}

.results-shot h3 {
  padding: 14px 12px 16px;
  font-size: 0.98rem;
  text-align: center;
  color: var(--gold-lt);
}

.results .section__sub,
.approach .section__sub {
  color: #c5cedb;
}

.activity-grid {
  grid-template-columns: repeat(4, 1fr);
}

.activity-card {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  min-height: 150px;
  transition: 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.facility-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 16px;
  min-width: 0;
}

.facility-grid li {
  background: var(--white);
  border-radius: 14px;
  padding: 14px 16px 14px 40px;
  position: relative;
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.45;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(7, 20, 40, 0.06);
}

.facility-grid li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 1.15em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
  transform: translateY(-50%);
}

.goal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}

.goal-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--gold-lt);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.goal-row a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlight {
  font-weight: 700;
  color: var(--teal);
  margin: 12px 0 8px;
}

.admissions {
  background: linear-gradient(180deg, var(--cream), #fff);
}

.admit-contacts {
  display: grid;
  gap: 12px;
  margin: 18px 0 8px;
}

.admit-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-weight: 500;
}

.admit-contacts svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admit-contacts a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admit-contacts a:hover {
  color: var(--teal);
}

.form {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  border: 1px solid #ddd5c3;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fffdf8;
}

.form__status {
  color: var(--teal);
  font-size: 0.92rem;
}

.contact-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-card svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
  flex: none;
}

.footer {
  background: #050e1c;
  color: #c9d3e2;
  padding: 48px 0 20px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.25fr;
  gap: 28px;
}

.footer a,
.footer p {
  display: block;
  margin-top: 8px;
}

.footer h3 {
  color: var(--gold-lt);
  margin-bottom: 8px;
}

.footer__about p {
  margin-top: 10px;
  max-width: 280px;
}

.footer__about h3 {
  margin-top: 22px;
}

.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  line-height: 1.45;
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  fill: none;
  stroke: var(--gold-lt);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__contact a {
  display: inline;
  margin-top: 0;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  margin-top: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.35);
  transition: 0.25s ease;
}

.footer__social a:hover {
  background: rgba(201, 162, 39, 0.18);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: var(--gold-lt);
}

.footer__social a[aria-label="Instagram"] svg,
.footer__social a[aria-label="YouTube"] svg {
  fill: none;
  stroke: var(--gold-lt);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__social a[aria-label="YouTube"] svg path:last-child {
  fill: var(--gold-lt);
  stroke: none;
}

.footer__copy {
  text-align: center;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: #e8eef7;
  letter-spacing: 0.02em;
}

.wa-float {
  position: relative;
  right: auto;
  bottom: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  z-index: 40;
  animation: bob 2.4s ease-in-out infinite;
  overflow: hidden;
}

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

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
  align-items: center;
}

.call-float {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  animation: bob 2.4s ease-in-out infinite;
  animation-delay: 0.35s;
}

.call-float svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-book {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.book-float {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  animation: bob 2.4s ease-in-out infinite;
  animation-delay: 0.35s;
  transition: transform 0.25s ease;
}

.book-float svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.book-float[aria-expanded="true"] {
  animation: none;
  transform: rotate(-8deg) scale(1.04);
}

.contact-book__panel {
  width: min(78vw, 280px);
  background: var(--white);
  color: var(--ink);
  border-radius: 18px;
  border: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow: var(--shadow);
  padding: 12px;
  display: grid;
  gap: 6px;
}

.contact-book__panel[hidden] {
  display: none;
}

.contact-book__title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 4px 8px 8px;
}

.contact-book__panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  background: var(--ivory);
  font-size: 0.9rem;
  line-height: 1.3;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-book__panel a:hover {
  background: rgba(201, 162, 39, 0.16);
  transform: translateX(-2px);
}

.contact-book__panel a strong {
  color: var(--navy);
  font-weight: 700;
}

.contact-book__panel svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-cta {
  padding: 72px 0;
  background:
    radial-gradient(ellipse 55% 80% at 50% 0%, rgba(201, 162, 39, 0.18), transparent 60%),
    linear-gradient(160deg, var(--navy), var(--navy-2) 55%, var(--navy-3));
  color: var(--white);
  text-align: center;
}

.journey-cta__inner {
  max-width: 720px;
}

.journey-cta h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  margin-bottom: 12px;
}

.journey-cta p {
  color: var(--gold-lt);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.86rem;
  margin-bottom: 28px;
}

.journey-cta .hero__actions {
  justify-content: center;
}

.journey-cta .btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.menu-btn.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .topbar__track {
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    gap: 8px 16px;
    padding: 0 12px;
  }

  .topbar__track span:nth-child(n + 7) {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeBackdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes load {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(280%); }
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 1024px) {
  .exam-strip {
    margin-top: -32px;
  }

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

  .event-card {
    flex-basis: 240px;
  }

  .event-card img {
    height: 210px;
  }

  .program-grid,
  .activity-grid,
  .footer__grid,
  .results-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .about__grid,
  .course__grid,
  .course__grid--flip,
  .faculty__grid,
  .results__layout,
  .facilities__layout,
  .admissions__grid,
  .contact__grid,
  .mission__grid {
    grid-template-columns: 1fr;
  }

  .course__grid > .course__visual,
  .about__grid > .about__media,
  .faculty__grid > .faculty__media,
  .results__layout > .results__media,
  .facilities__layout > .facilities__media,
  .admissions__grid > .admissions__media {
    order: -1;
  }

  .course__grid > div:not(.course__visual),
  .faculty__grid > div:not(.faculty__media),
  .about__copy {
    text-align: center;
  }

  .admissions__grid > div:not(.admissions__media) {
    text-align: center;
  }

  .admissions__copy {
    min-height: 0;
    padding-top: 0;
    align-items: center;
  }

  .admit-contacts {
    justify-items: center;
  }

  .admit-contacts li {
    justify-content: center;
    text-align: left;
  }

  .admissions__grid .hero__actions {
    justify-content: center;
  }

  .admissions__media {
    max-height: none;
    max-width: min(100%, 300px);
    justify-self: center;
    margin-inline: auto;
  }

  .admissions__media img {
    max-height: 400px;
    height: auto;
    transform: none;
  }

  .mission__item {
    padding: 16px 0 0;
    border-left: 0;
    border-top: 3px solid var(--gold);
    text-align: left;
  }

  .mission__label {
    justify-content: flex-start;
  }

  .mission__item p {
    max-width: none;
    margin-inline: 0;
  }

  .mission {
    padding-top: 40px;
  }

  .course__grid .check-list,
  .course__grid .view-more__btn,
  .faculty__grid .view-more__btn,
  .about__copy .view-more__btn,
  .about__copy .about__more-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .course__grid .check-list {
    display: inline-grid;
    text-align: left;
  }

  .course__grid .formula,
  .faculty__grid .formula {
    justify-content: center;
  }

  .header__programs {
    display: none;
  }

  .header__nav-wrap {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: min(88vw, 340px);
    max-width: 340px;
    margin: 0;
    padding: 0;
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--navy);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s;
  }

  .header__nav-wrap.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 95;
    background: rgba(5, 14, 28, 0.58);
    animation: fadeBackdrop 0.3s ease;
  }

  body.nav-open .menu-btn {
    opacity: 0;
    pointer-events: none;
  }

  body.nav-open .site-header {
    z-index: 90;
  }

  .header__nav-wrap .header__nav-inner.container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding-inline: 0;
  }

  .header__nav-wrap .mobile-nav-info {
    display: block;
    padding: 18px 16px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.12), transparent);
    text-align: left;
  }

  .mobile-nav-info__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
  }

  .sidebar-close {
    display: block;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    cursor: pointer;
  }

  .sidebar-close span {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 50%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }

  .sidebar-close span:first-child {
    transform: translateY(-50%) rotate(45deg);
  }

  .sidebar-close span:last-child {
    transform: translateY(-50%) rotate(-45deg);
  }

  .header__nav-wrap .mobile-nav-info .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin: 0;
    text-align: left;
  }

  .header__nav-wrap .mobile-nav-info .logo img {
    width: auto;
    height: 72px;
    max-width: 240px;
    object-fit: contain;
    border-radius: 0;
    border: 0;
  }

  .mobile-nav-info__contacts {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .mobile-nav-info__contacts a,
  .mobile-nav-info__contacts p {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin: 0;
    color: #d7deea;
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: left;
    max-width: none;
  }

  .mobile-nav-info__contacts svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    fill: none;
    stroke: var(--gold-lt);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .header__nav-wrap .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .header__nav-wrap .nav a {
    min-height: 46px;
    width: 100%;
    padding: 0 16px;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header__nav-wrap .nav__icon {
    display: block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: none;
    stroke: var(--gold-lt);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .header__nav-wrap .nav a.is-active .nav__icon,
  .header__nav-wrap .nav a:hover .nav__icon {
    stroke: var(--gold-lt);
  }

  .header__nav-wrap .nav a + a::before {
    display: none;
  }

  .header__nav-wrap .header__nav-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 20px;
    min-height: 0;
    width: 100%;
    max-width: none;
  }

  .header__nav-wrap .nav > a:first-child,
  .header__nav-wrap .nav > a:last-child {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header__nav-wrap .nav__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 10px;
    padding: 14px 16px 8px;
  }

  .header__nav-wrap .btn-admit,
  .header__nav-wrap .btn-wa {
    width: 100%;
    height: 44px;
    min-height: 44px;
    max-height: 44px;
    justify-content: center;
  }

  .header__nav-wrap .btn-contact {
    display: none;
  }

  .nav a.nav__contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 14px 12px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-lt), var(--gold));
    color: var(--navy) !important;
    font-family: var(--font-heading);
    font-weight: 500;
    white-space: nowrap;
  }

  .nav a.nav__contact svg {
    width: 18px;
    height: 18px;
    fill: var(--navy);
    flex-shrink: 0;
  }

  .nav a.nav__contact:hover,
  .nav a.nav__contact.is-active {
    color: var(--navy) !important;
    background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  }

  .menu-btn {
    display: block;
    margin-left: auto;
  }

  .btn-contact--mobile {
    display: inline-flex;
    width: 42px;
    min-height: 42px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    margin-left: 8px;
  }

  .header__nav-inner .btn-contact {
    display: none;
  }

  .btn-contact {
    margin-left: 0;
    margin-right: 0;
    width: 42px;
    min-height: 42px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .btn-contact span {
    display: none;
  }

  .check-list,
  .facility-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .facilities__layout .facility-grid {
    width: 100%;
  }

  .facilities__layout .subhead {
    overflow-wrap: anywhere;
  }

  .role-card,
  .focus-card,
  .activity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .role-card .role-icon,
  .focus-card .card-icon,
  .activity-card .card-icon {
    margin: 0 auto;
  }

  .role-card h3,
  .focus-card h3,
  .activity-card h3 {
    margin-top: 0;
  }

  .results__layout > div:not(.results__media),
  .approach .center-copy {
    text-align: center;
  }
}

@media (max-width: 720px) {
  :root {
    --page-gutter: 8px;
  }

  .exam-strip {
    margin-top: -20px;
    padding-bottom: 16px;
  }

  .exam-strip__inner {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .exam-icon {
    min-height: 120px;
    padding: 16px 10px;
  }

  .exam-icon__badge {
    width: 48px;
    height: 48px;
  }

  .header__brand-inner {
    min-height: 88px;
    gap: 12px;
  }

  .logo img {
    width: auto;
    height: 68px;
    max-width: min(240px, 58vw);
    object-fit: contain;
    border-radius: 0;
    border: 0;
  }

  .topbar__contact {
    justify-content: center;
    gap: 12px 20px;
    padding-block: 8px;
    font-size: 0.78rem;
  }

  .topbar__track {
    animation-duration: 28s;
  }

  .section {
    padding: 64px 0;
  }

  .program-grid,
  .activity-grid,
  .focus-grid,
  .footer__grid,
  .results-gallery {
    grid-template-columns: 1fr;
  }

  .program-card img {
    height: 260px;
  }

  .role-grid,
  .focus-grid,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .role-card,
  .focus-card,
  .activity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 16px;
  }

  .role-card .role-icon,
  .focus-card .card-icon,
  .activity-card .card-icon {
    margin: 0 auto;
  }

  .role-card h3,
  .focus-card h3,
  .activity-card h3 {
    margin-top: 0;
    width: 100%;
  }

  .results__layout > div:not(.results__media) {
    text-align: center;
  }

  .about__media img,
  .course__visual img,
  .faculty__media img,
  .admissions__media img {
    height: 280px;
  }

  .results__media img,
  .facilities__media img {
    min-height: 240px;
    max-height: 320px;
    height: 280px;
  }

  .admissions__media {
    max-height: none;
    max-width: min(100%, 280px);
  }

  .admissions__media img {
    height: auto;
    max-height: 360px;
    min-height: 0;
  }

  .formula-card {
    margin: 16px 0 0;
    margin-left: 0;
  }

  .slide__overlay {
    background: linear-gradient(180deg, rgba(7, 20, 40, 0.72) 10%, rgba(7, 20, 40, 0.78) 100%);
  }

  .slide__content {
    text-align: center;
    padding: 64px 0 96px;
  }

  .slide__content .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .slide__content .hero__actions {
    justify-content: center;
  }

  .slider__ui {
    inset: auto 0 28px 0;
    justify-content: center;
  }

  .slide__content h1,
  .slide__content h2 {
    font-size: 1.95rem;
  }
}

/* ========== About page ========== */
.page-banner {
  margin-top: 0;
  background: #001630;
  color: var(--white);
  padding: 36px 0 40px;
  position: relative;
}

.page-about main {
  padding-top: 0;
}

.page-about .header__nav-wrap {
  position: sticky;
  top: 0;
}

.page-banner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 8px;
  background:
    linear-gradient(
      #b88a44 0 2px,
      #fff 2px 4px,
      #b88a44 4px 8px
    );
}

.page-banner__inner {
  position: relative;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumbs a {
  color: var(--gold-lt);
  font-weight: 500;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.page-banner__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 8px;
}

.page-banner__sub {
  color: var(--gold-lt);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.02rem;
}

.page-about .about-hero {
  padding: 64px 0 72px;
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(201, 162, 39, 0.14), transparent 55%),
    linear-gradient(180deg, #fff, var(--cream));
}

.about-hero h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.about-hero__institute {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
  margin: -4px 0 14px;
}

.about-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.about-hero__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold-lt);
  font-weight: 600;
  font-size: 0.9rem;
}

.about-why {
  background: var(--cream);
}

.about-why__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.about-why h2 {
  color: var(--navy);
  margin-bottom: 16px;
}

.about-why p {
  color: var(--muted);
  margin-bottom: 14px;
}

.about-why__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-why__pillars span {
  display: grid;
  place-items: center;
  min-height: 88px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--gold-lt);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  border: 1px solid rgba(201, 162, 39, 0.35);
}

.about-features {
  background: #fff;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.about-feature-grid li {
  background: var(--ivory);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 14px;
  padding: 16px 16px 16px 42px;
  position: relative;
  color: var(--ink);
  font-weight: 500;
}

.about-feature-grid li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 1.15em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.about-hero__media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-hero__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-story {
  background: #fff;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.about-point {
  padding: 24px 22px 26px;
  border-left: 3px solid var(--gold);
  background: var(--ivory);
  border-radius: 0 18px 18px 0;
}

.about-point__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.about-point h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.about-point p {
  color: var(--muted);
}

.about-dream {
  background: var(--cream);
}

.about-dream__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.about-dream__copy h2 {
  color: var(--navy);
  margin-bottom: 16px;
}

.about-dream__copy p {
  color: var(--muted);
  margin-bottom: 14px;
}

.about-check {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.about-check li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 500;
}

.about-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.about-quote {
  background: var(--navy);
  color: var(--gold-lt);
  border-radius: 22px;
  padding: 36px 28px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  box-shadow: var(--shadow);
  text-align: center;
}

.about-quote p {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.4;
}

.about-exams {
  background: #fff;
}

.about-exam-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.about-exam-row span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold-lt);
  font-weight: 600;
  font-family: var(--font-heading);
}

.about-exams__note {
  text-align: center;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .about-hero__grid,
  .about-dream__grid,
  .about-points,
  .about-why__grid {
    grid-template-columns: 1fr;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .about-hero__media img {
    height: 300px;
  }

  .about-hero__lead {
    max-width: none;
  }
}

/* ========== Programme pages ========== */
.programme-bar {
  background: #001630;
  border-top: 2px solid #b88a44;
  border-bottom: 2px solid #b88a44;
}

.programme-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 52px;
}

.programme-bar a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.programme-bar a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.programme-bar a.is-active,
.programme-bar a:hover {
  color: var(--gold-lt);
}

.programme {
  background: #fff;
}

/* Mobile first: image on top, content below */
.programme__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.programme__focus {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  margin: 8px 0 18px;
  font-size: 1.08rem;
}

.programme__list {
  margin-bottom: 28px;
}

.programme__media {
  order: -1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.programme__media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #e8eef5;
}

.page-foundation .programme__media img {
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* Foundation hero: show complete building photo (portrait, no crop) */
.foundation-hero {
  background: #fff;
}

.foundation-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.foundation-hero__photo {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0b1628;
  line-height: 0;
}

.foundation-hero__photo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

@media (min-width: 901px) {
  .foundation-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
  }

  .page-foundation .programme__media img {
    height: auto !important;
    object-fit: contain !important;
  }
}

/* Desktop: content left, image right */
@media (min-width: 901px) {
  .programme__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
  }

  .programme__media {
    order: 0;
  }

  .programme__media img {
    height: 420px;
  }
}

/* NEET portrait: show full face clearly */
.page-neet .programme__media {
  background: #e8eef5;
}

.page-neet .programme__media img {
  height: auto;
  max-height: none;
  min-height: 320px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 8%;
}

@media (min-width: 901px) {
  .page-neet .programme__media img {
    min-height: 480px;
    height: 520px;
    aspect-ratio: auto;
    object-position: center 5%;
  }
}

.weekly {
  background: #fff;
}

.special-focus {
  background: var(--cream);
}

.special-focus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.special-focus__card {
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 12px 28px rgba(7, 20, 40, 0.06);
}

.special-focus__card h3 {
  color: var(--navy);
  margin: 14px 0 8px;
  font-size: 1.08rem;
}

.special-focus__card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .special-focus__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .special-focus__grid {
    grid-template-columns: 1fr 1fr;
  }

  .special-focus__card:last-child {
    grid-column: 1 / -1;
  }
}

.weekly-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-width: 420px;
  margin: 0 auto 36px;
}

.weekly-flow li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 84px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  text-align: center;
}

.weekly-flow li span:first-child {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.weekly-flow strong {
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.3;
}

.weekly-flow li[aria-hidden="true"] {
  min-width: 28px;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.weekly-arrow {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
}

.weekly-result {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  box-shadow: var(--shadow);
}

.weekly-result__label {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin-bottom: 10px;
}

.weekly-result__text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--gold-lt);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .weekly-flow li[aria-hidden="true"] {
    width: 100%;
  }

  .weekly-arrow {
    transform: none;
  }
}

/* ========== Faculty page (flyer layout) ========== */
.page-faculty .faculty-page {
  background: #f7f1e6;
  padding-top: 40px;
  padding-bottom: 56px;
}

.faculty-page__inner {
  max-width: 1120px;
}

.faculty-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px 40px;
  align-items: center;
  background: #fdf8ef;
  border: 2px solid #5c4030;
  outline: 1px solid #5c4030;
  outline-offset: 5px;
  padding: 32px 28px;
  text-align: left;
  box-shadow: 0 18px 40px rgba(64, 40, 20, 0.12);
}

.faculty-card__visual {
  margin: 0;
  line-height: 0;
}

.faculty-card__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  border: 2px solid #5c4030;
  background: #f7f1e6;
}

.faculty-card__content h2 {
  color: #5c4030;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.faculty-card__degrees {
  color: #5c4030;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  margin-bottom: 12px;
  line-height: 1.45;
}

.faculty-card__role {
  color: #5c4030;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.faculty-card__bio {
  max-width: none;
  margin: 0;
  text-align: left;
}

.faculty-card__bio p {
  color: #5c4030;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.faculty-card__bio p:last-child {
  margin-bottom: 0;
}

.faculty-card__bio strong {
  color: #3d2a1f;
  font-weight: 700;
}

@media (max-width: 900px) {
  .faculty-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 16px 24px;
    outline-offset: 3px;
  }

  .faculty-card__visual {
    order: -1;
  }

  .faculty-card__visual img {
    border-radius: 16px;
  }

  .faculty-card__content {
    text-align: center;
  }

  .faculty-card__bio {
    text-align: center;
  }

  .faculty-card__bio p {
    font-size: 0.98rem;
  }
}

/* ========== Facilities page ========== */
.page-facilities .programme__media img {
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 901px) {
  .page-facilities .programme__media img {
    height: 560px;
  }
}

.admissions-contact-cards {
  max-width: 960px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .admissions-contact-cards {
    grid-template-columns: 1fr;
  }
}

.admissions-vision {
  background: var(--cream);
}

.admissions-vision__inner {
  max-width: 860px;
  text-align: center;
}

.admissions-vision__quote {
  margin: 0 auto 22px;
  max-width: 52ch;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  line-height: 1.55;
  quotes: none;
}

.admissions-vision__lead {
  color: var(--muted);
  margin-bottom: 18px;
}

.admissions-careers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.admissions-careers li {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold-lt);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admissions__institute {
  color: var(--muted);
  margin: -4px 0 14px;
  font-weight: 500;
}

.admissions__tagline {
  margin: 16px 0 18px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ========== Results page ========== */
.results-themes {
  background: #fff;
}

.results-themes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.results-theme-card {
  background: var(--cream);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 12px 28px rgba(7, 20, 40, 0.05);
}

.results-theme-card h3 {
  color: var(--navy);
  margin: 8px 0 10px;
  font-size: 1.2rem;
}

.results-theme-card p:last-child {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.results-page {
  background: var(--cream);
}

.results-page--alt {
  background: #fff;
}

.results-page__sub {
  color: var(--muted) !important;
}

.page-results .results-gallery--page {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
}

.page-results .results-shot {
  background: #fff;
  border-color: rgba(201, 162, 39, 0.25);
  box-shadow: 0 12px 28px rgba(7, 20, 40, 0.06);
}

.page-results .results-shot h3 {
  color: var(--navy);
}

.page-results .results-shot img {
  height: 340px;
  object-fit: contain;
  background: #f7f1e6;
}

@media (max-width: 900px) {
  .results-themes__grid,
  .page-results .results-gallery--page {
    grid-template-columns: 1fr;
  }

  .page-results .results-shot img {
    height: 280px;
  }
}


/* ========== Foundation programme page ========== */
.programme__intro {
  color: var(--muted, #4a5568);
  line-height: 1.7;
  margin: 12px 0 8px;
  max-width: 36rem;
}

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

.foundation-focus__grid .special-focus__card {
  padding: 18px 20px;
}

.foundation-focus__grid .special-focus__card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.foundation-doing {
  background: linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
}

.foundation-doing__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.foundation-doing__row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid rgba(7, 20, 40, 0.12);
  border-radius: 12px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(7, 20, 40, 0.05);
}

.foundation-classes {
  background: #fff;
}

.foundation-classes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.foundation-class {
  padding: 28px 24px;
  background: linear-gradient(165deg, #071428 0%, #123056 100%);
  color: #fff;
  border-radius: 18px;
  border-top: 3px solid var(--gold-lt, #d4af37);
}

.foundation-class__label {
  margin: 0 0 8px;
  color: var(--gold-lt, #d4af37);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.foundation-class h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.25rem;
}

.foundation-class p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.foundation-early {
  background: #f4f7fb;
}

.foundation-early__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.foundation-early p {
  color: var(--muted, #4a5568);
  line-height: 1.7;
  max-width: 34rem;
}

.foundation-path {
  padding: 28px 26px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(7, 20, 40, 0.1);
  box-shadow: 0 12px 28px rgba(7, 20, 40, 0.06);
}

.foundation-path__title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
}

.foundation-path__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.foundation-path__steps li {
  position: relative;
  padding: 12px 14px 12px 42px;
  background: #f7f9fc;
  border-radius: 10px;
  color: var(--navy);
  font-weight: 600;
}

.foundation-path__steps li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold, #c9a227);
  transform: translateY(-50%);
}

.journey-cta__brand {
  margin: 0 0 8px;
  color: var(--gold-lt, #d4af37);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.journey-cta__meta {
  margin-top: 4px !important;
  opacity: 0.9;
  font-size: 0.95rem !important;
}

@media (max-width: 900px) {
  .foundation-classes__grid,
  .foundation-early__grid,
  .foundation-focus__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .foundation-focus__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== Faculty teaching approach ========== */
.faculty-intro {
  background: #fff;
  padding-bottom: 12px;
}

.faculty-approach {
  background: #eef7f0;
  padding-top: 48px;
  padding-bottom: 56px;
}

.faculty-approach .section__head {
  margin-bottom: 28px;
}

.teaching-flow {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 6px;
}

.teaching-flow li:not([aria-hidden="true"]) {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 112px;
  min-height: 108px;
  padding: 16px 14px;
  background: #fff;
  border: 1px solid rgba(7, 20, 40, 0.1);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(7, 20, 40, 0.05);
}

.teaching-flow__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, 0.14);
}

.teaching-flow__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.teaching-flow strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-align: center;
}

.teaching-flow__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  color: var(--gold, #c9a227);
  font-size: 1.25rem;
  font-weight: 700;
}

.faculty-approach__note {
  margin: 0 auto;
  max-width: 720px;
  text-align: center;
  color: var(--muted, #4a5568);
  line-height: 1.7;
  font-size: 1.05rem;
}

@media (max-width: 700px) {
  .teaching-flow {
    flex-direction: column;
    align-items: stretch;
  }

  .teaching-flow li[aria-hidden="true"] {
    display: flex;
    justify-content: center;
  }

  .teaching-flow__arrow {
    transform: rotate(90deg);
  }

  .teaching-flow li:not([aria-hidden="true"]) {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    min-height: 64px;
    padding: 12px 16px;
  }
}
