:root {
  --navy: #0B2847;
  --navy-2: #123a62;
  --blue: #1577b9;
  --emerald: #147D68;
  --gold: #D4A72C;
  --cream: #F6F1E8;
  --mist: #F5F7F8;
  --ink: #102A43;
  --muted: #435064;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(11, 40, 71, .11);
  --radius: 10px;
  --max: 1180px;
}

* { box-sizing: border-box; min-width: 0; }
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: Manrope, Inter, "Noto Sans Devanagari", "Hind", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
@supports (overflow-x: clip) {
  html, body { overflow-x: clip; }
}
body.no-scroll { overflow: hidden; }
body.nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(3, 14, 28, .46);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
main, footer { max-width: 100%; overflow-x: clip; }
p, h1, h2, h3, a, span, strong, small, li, label, button { overflow-wrap: break-word; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon-svg {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.container { width: min(100% - 32px, var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; background: var(--navy); color: white; padding: 10px 14px; border-radius: 6px; }
.skip-link:focus { top: 12px; }

.topbar {
  background: #071f38;
  color: rgba(255,255,255,.9);
  font-size: 14px;
}
.topbar__inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar a { color: white; font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(8,43,82,.08);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand > span:last-child { min-width: 0; }
.brand__mark {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--emerald));
  color: white; font-weight: 900; font-size: 14px; box-shadow: var(--shadow);
}
.brand__icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.brand strong { display: block; color: var(--navy); line-height: 1.15; }
.brand small { display: block; color: var(--muted); font-weight: 700; }
.nav__links {
  position: fixed;
  top: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  width: min(92vw, 390px);
  height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 8px;
  padding: 92px 22px 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,249,252,.98)),
    white;
  box-shadow: -24px 24px 70px rgba(11,40,71,.22);
  color: var(--navy);
  font-weight: 850;
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  transform: none;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, clip-path .26s ease, visibility .26s ease;
}
.nav__links.open {
  opacity: 1;
  clip-path: inset(0);
  transform: none;
  visibility: visible;
  pointer-events: auto;
}
.nav__links::before {
  content: "Menu";
  position: absolute;
  top: 26px;
  left: 24px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}
.nav__links::after {
  content: "Admissions, courses, facilities and contact";
  position: absolute;
  top: 56px;
  left: 24px;
  right: 82px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
}
.nav__links > a:not(.btn) {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px 12px 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--navy);
  font-size: 15px;
  background: transparent;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.nav__links > a:not(.btn)::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(20,125,104,.28);
  box-shadow: 0 0 0 5px rgba(20,125,104,.08);
}
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute;
  inset: 8px auto 8px 0;
  width: 3px;
  border-radius: 999px;
  background: var(--emerald);
  transform: scaleY(0);
  transition: transform .18s ease;
}
.nav__links > a.active,
.nav__links > a[aria-current="page"],
.nav__links > a:not(.btn):hover {
  background: rgba(20,125,104,.1);
  border-color: rgba(20,125,104,.18);
  color: var(--navy);
  transform: translateX(-2px);
}
.nav__links > a.active::after, .nav__links > a[aria-current="page"]::after, .nav__links > a:hover::after { transform: scaleY(1); }
.nav__links .btn {
  width: 100%;
  margin-top: 10px;
}
.nav__toggle {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(11,40,71,.1);
  background: linear-gradient(180deg, white, var(--mist));
  border-radius: 8px;
  padding: 11px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(11,40,71,.1);
}
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 3px 0; border-radius: 999px; transition: transform .18s ease, opacity .18s ease; }
.nav__toggle[aria-expanded="true"] { position: relative; z-index: 80; background: white; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(11,40,71,.12);
  border-radius: 8px;
  background: white;
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(11,40,71,.12);
  cursor: pointer;
}
.nav__close span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.nav__close span:first-child { transform: rotate(45deg); }
.nav__close span:last-child { transform: rotate(-45deg); }

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 46px;
  padding: 11px 20px;
  font-weight: 900;
  cursor: pointer;
  overflow: hidden;
  line-height: 1;
  max-width: 100%;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 10px 22px rgba(11,40,71,.10);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.btn .icon-svg { width: 18px; height: 18px; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,255,255,.16), transparent 45%);
  opacity: 0;
  transition: opacity .18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,.22) inset, 0 16px 32px rgba(11,40,71,.16);
}
.btn:hover::before { opacity: 1; }
.btn:focus-visible {
  outline: 3px solid rgba(212,167,44,.34);
  outline-offset: 3px;
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 5px 14px rgba(11,40,71,.12);
}
.btn--small {
  min-height: 38px;
  padding: 8px 15px;
  font-size: 14px;
  box-shadow: none;
}
.btn--primary {
  background: #0B2847;
  color: white;
  border-color: #0B2847;
}
.btn--primary:hover { background: #123a62; border-color: #123a62; }
.btn--gold {
  background: #D4A72C;
  color: #172033;
  border-color: #D4A72C;
}
.btn--gold:hover { background: #e0b94a; border-color: #e0b94a; }
.btn--whatsapp {
  background: #147D68;
  color: white;
  border-color: #147D68;
}
.btn--whatsapp:hover { background: #0f6f5c; border-color: #0f6f5c; }
.btn--ghost {
  background: rgba(255,255,255,.82);
  color: var(--navy);
  border-color: rgba(11,40,71,.18);
  box-shadow: none;
}
.btn--ghost:hover {
  background: #F5F7F8;
  border-color: rgba(11,40,71,.28);
}
.btn--light {
  background: rgba(255,255,255,.94);
  color: var(--navy);
  border-color: rgba(255,255,255,.94);
}

.section { padding: 92px 0; }
.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}
.page-hero > img,
.page-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page-hero > img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}
.page-hero__shade {
  background:
    linear-gradient(90deg, rgba(7,31,56,.88), rgba(7,31,56,.54) 58%, rgba(7,31,56,.16)),
    linear-gradient(0deg, rgba(7,31,56,.52), transparent 58%);
}
.page-hero__content {
  position: relative;
  padding: 92px 0 74px;
}
.page-hero h1 {
  max-width: 840px;
  color: white;
  font-size: clamp(38px, 5vw, 64px);
}
.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,255,255,.9);
  font-size: 18px;
}
.page-hero .eyebrow { color: #9af0da; }
.hero {
  min-height: 670px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}
.hero__image, .hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: center 44%; filter: saturate(1.04) contrast(1.02); }
.hero__overlay {
  background:
    linear-gradient(90deg, rgba(7,31,56,.86), rgba(7,31,56,.62) 43%, rgba(7,31,56,.10) 72%),
    linear-gradient(0deg, rgba(7,31,56,.34), transparent 45%);
}
.hero__content {
  position: relative;
  display: block;
  padding-top: 78px;
  padding-bottom: 112px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 950;
}
.hero .eyebrow { color: #9af0da; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; color: var(--navy); }
.hero h1 { max-width: 790px; color: white; font-size: clamp(38px, 5vw, 62px); }
.hero p { max-width: 720px; font-size: 18px; color: rgba(255,255,255,.9); }
.hero__hindi { font-weight: 800; }
.hero__actions, .center-actions, .card-actions, .cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero__proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
  max-width: 920px;
}
.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.94);
  font-weight: 850;
  backdrop-filter: blur(10px);
}
.hero__proof .icon-svg { color: #9af0da; }

.enquiry-card, .contact-form {
  background: rgba(255,255,255,.97);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.55);
}
.enquiry-card h2, .contact-form h3 { color: var(--navy); font-size: 24px; margin-bottom: 18px; }
.form-kicker { color: var(--gold); font-weight: 950; text-transform: uppercase; font-size: 12px; }
label { display: grid; gap: 7px; margin-bottom: 13px; color: var(--navy); font-weight: 850; font-size: 14px; }
input, select, textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid #dce6f2;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdff;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21,119,185,.12); }
.form-message { min-height: 24px; margin: 12px 0 0; color: var(--emerald); font-weight: 850; }
.form-message.error { color: #b42318; }

.admission-panel {
  position: relative;
  z-index: 4;
  margin-top: -82px;
  padding-bottom: 42px;
}
.admission-panel--page {
  margin-top: 0;
  padding: 24px 0 82px;
  background: var(--mist);
}
.admission-panel__inner {
  display: grid;
  grid-template-columns: .78fr 1.12fr 1.05fr;
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.97), rgba(243,247,251,.97)),
    white;
  border: 1px solid rgba(8,43,82,.08);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(11,40,71,.16);
}
.admission-panel__media {
  position: relative;
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
}
.admission-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.admission-panel__badge {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border-radius: 8px;
  background: rgba(6,28,53,.84);
  color: white;
  font-weight: 850;
  backdrop-filter: blur(10px);
}
.admission-panel__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 8px;
}
.admission-panel__copy h2 {
  font-size: clamp(30px, 4vw, 44px);
}
.admission-panel__copy p {
  color: var(--muted);
  margin-bottom: 0;
}
.admission-panel__quick {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.admission-panel__quick a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-weight: 950;
}
.admission-panel__quick .icon-svg { color: var(--emerald); }
.enquiry-card--panel {
  box-shadow: none;
  border-color: rgba(8,43,82,.08);
  background: white;
}

.trust-strip { position: relative; z-index: 3; padding: 18px 0 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mini-card, .faq-list details, .contact-grid article {
  background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(8,43,82,.08);
}
.mini-card { padding: 22px; box-shadow: none; }
.mini-card h2 { font-size: 20px; margin: 12px 0 6px; }
.mini-card p, .course-card p, .section-copy p, .support-panel p, .faq-list p { color: var(--muted); margin-bottom: 0; }
.icon, .course-icon {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(21,119,185,.12), rgba(11,143,114,.14));
  color: var(--navy); font-weight: 950;
}
.icon .icon-svg, .course-icon .icon-svg { width: 24px; height: 24px; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 62px; }
.split--reverse { grid-template-columns: .95fr 1.05fr; }
.about { background: linear-gradient(180deg, white, var(--mist)); }
.about__media { position: relative; min-height: 520px; }
.about__media img:first-child {
  width: 74%; height: 420px; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about__media img:nth-child(2) {
  position: absolute; right: 0; bottom: 0; width: 58%; height: 290px;
  object-fit: cover; border: 8px solid white; border-radius: var(--radius); box-shadow: var(--shadow);
}
.media-note {
  position: absolute; left: 28px; bottom: 36px; background: var(--navy); color: white;
  padding: 12px 16px; border-radius: 8px; font-weight: 900;
}
.section-copy h2, .section-head h2 { font-size: clamp(32px, 4vw, 52px); }
.section-copy h3 { margin-top: 16px; color: var(--emerald); font-size: 24px; }
.stats-grid, .about-highlights, .feature-grid, .facility-list, .contact-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 26px;
}
.stats-grid span, .about-highlights span, .feature-grid span, .facility-list span {
  padding: 13px 0; border-bottom: 1px solid rgba(8,43,82,.12);
  font-weight: 900; color: var(--navy);
}
.about-highlights span { display: flex; align-items: center; gap: 10px; }
.about-highlights .icon-svg { color: var(--emerald); }
.location-panel {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: var(--cream);
  color: var(--navy);
}

.director, .choose, .support-section { background: var(--cream); }
.director__card {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: center;
  padding: 34px; background: white; border-radius: var(--radius); border: 1px solid rgba(8,43,82,.08);
}
blockquote {
  margin: 24px 0;
  padding-left: 22px;
  border-left: 4px solid var(--gold);
  color: var(--ink);
  font-size: 22px;
  line-height: 1.55;
}
.signature { color: var(--navy); font-size: 30px; font-weight: 950; margin-bottom: 0; }
.director__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #061c35;
  box-shadow: 0 18px 42px rgba(11, 40, 71, .16);
}
.director__photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
}
.director__photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(6, 28, 53, .82);
  color: white;
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.feature-image { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); }

.section-head { max-width: 780px; margin-bottom: 34px; }
.course-list { display: grid; gap: 24px; }
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.program-card {
  display: grid;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(8,43,82,.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(11, 40, 71, .08);
}
.program-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.program-card > div {
  display: grid;
  gap: 10px;
  padding: 20px;
}
.program-card h3 {
  font-size: 26px;
}
.program-card p {
  margin: 0;
  color: var(--muted);
}
.program-card strong {
  color: var(--emerald);
}
.program-card a {
  color: var(--blue);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.course-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 18px;
  background: white;
  border: 1px solid rgba(8,43,82,.1);
  border-radius: var(--radius);
}
.course-card:nth-child(even) img { order: 2; }
.course-card > img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}
.course-number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 13px;
}
.course-card h3 { font-size: 28px; }
.course-full { color: var(--emerald) !important; font-weight: 900; }
.card-actions { margin-top: auto; }

.feature-grid { grid-template-columns: repeat(4, 1fr); }
.feature-grid span, .facility-list span { display: flex; align-items: center; gap: 10px; }
.feature-grid .icon-svg, .facility-list .icon-svg { color: var(--emerald); width: 20px; height: 20px; }
.facilities { background: var(--mist); }
.facility-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}
.facility-gallery figure, .story-row figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  border: 1px solid rgba(8,43,82,.08);
}
.facility-gallery figure.wide { grid-row: auto; }
.facility-gallery img, .story-row img {
  width: 100%;
  height: 220px;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.03);
  transition: transform .3s ease;
}
.facility-gallery figure.wide img { height: 220px; }
.facility-gallery figure:hover img, .story-row figure:hover img { transform: scale(1.025); }
.facility-gallery figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(11,40,71,.78);
  color: white;
  padding: 7px 10px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 14px;
  backdrop-filter: blur(8px);
}
.facility-note { margin-top: 18px; }
.day-section { background: white; }
.story-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.story-row img { height: 270px; min-height: 270px; }
.story-row figcaption { padding: 16px; }
.story-row strong, .story-row span { display: block; }
.story-row span { color: var(--muted); margin-top: 4px; }
.note { color: var(--muted); font-size: 14px; }

.steps {
  list-style: none; padding: 0; margin: 0 0 30px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border-top: 1px solid rgba(8,43,82,.14);
}
.steps li {
  min-height: 170px; padding: 22px; border-radius: 0;
  background: white; border-right: 1px solid rgba(8,43,82,.1);
  color: var(--navy); font-weight: 950;
}
.steps small { display: block; margin-top: 8px; color: var(--muted); font-weight: 650; }
.steps span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--emerald); color: white; margin-bottom: 18px; }
.center-actions { justify-content: center; }
.align-left { justify-content: flex-start; }

.cta-band { position: relative; overflow: hidden; color: white; padding: 78px 0; }
.cta-band > img, .cta-band__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta-band > img { object-fit: cover; object-position: center; }
.cta-band__shade { background: linear-gradient(90deg, rgba(7,31,56,.88), rgba(7,31,56,.55)); }
.cta-band h2 { color: white; font-size: clamp(28px, 4vw, 46px); }
.cta-band p:not(.eyebrow) { color: rgba(255,255,255,.88); max-width: 680px; }
.cta-band .eyebrow { color: #bdf7e7; }
.cta-band__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery-grid button {
  border: 0; padding: 0; cursor: pointer; background: transparent; border-radius: var(--radius); overflow: hidden;
}
.gallery-grid button:nth-child(1), .gallery-grid button:nth-child(2) { grid-column: span 2; }
.gallery-grid img { width: 100%; height: 260px; object-fit: cover; transition: transform .35s ease; }
.gallery-grid button:hover img, .gallery-grid button:focus-visible img { transform: scale(1.04); }

.support-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  background: white;
  border: 1px solid rgba(8,43,82,.08);
  border-left: 5px solid var(--emerald);
  padding: 34px;
}
.support-panel h2 { font-size: clamp(30px, 4vw, 44px); }
.support-panel ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.support-panel li { display: flex; align-items: center; gap: 10px; font-weight: 850; color: var(--navy); }
.support-panel .icon-svg { color: var(--emerald); }
.faq { background: var(--mist); }
.faq-list { display: grid; gap: 12px; max-width: 920px; }
.faq-list details { padding: 18px 22px; }
.faq-list summary { cursor: pointer; color: var(--navy); font-weight: 950; }

.contact-grid article, .map-card { padding: 18px; }
.contact-grid strong, .contact-grid span { display: block; }
.contact-grid span { color: var(--muted); margin-top: 4px; }
.map-card {
  margin-top: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(8,43,82,.1);
  background:
    linear-gradient(135deg, rgba(21,119,185,.12), rgba(11,143,114,.12)),
    white;
}
.map-card strong, .map-card span { display: block; }
.map-card span { color: var(--muted); margin-top: 4px; }
.map-link { display: inline-block; margin-top: 12px; color: var(--blue); font-weight: 950; text-decoration: underline; }
.map-link .icon-svg { vertical-align: -2px; }

.footer { background: #061c35; color: rgba(255,255,255,.82); padding: 60px 0 90px; }
.footer h2, .footer h3 { color: white; }
.footer__grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1fr; gap: 34px; }
.footer a { display: block; margin: 9px 0; color: rgba(255,255,255,.9); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px; }

.float-whatsapp, .back-top {
  position: fixed;
  right: 20px;
  z-index: 80;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(11,40,71,.22);
  font-weight: 950;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.float-whatsapp { bottom: 92px; background: var(--emerald); color: white; }
.back-top { bottom: 28px; background: var(--navy); color: white; opacity: 0; pointer-events: none; cursor: pointer; }
.float-whatsapp:hover, .back-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(11,40,71,.28);
}
.float-whatsapp .icon-svg, .back-top .icon-svg { width: 24px; height: 24px; }
.back-top .icon-svg { transform: rotate(-90deg); }
.back-top.visible { opacity: 1; pointer-events: auto; }
.mobile-actions { display: none; }

.modal, .lightbox {
  border: 0; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.32);
  max-width: min(92vw, 620px); padding: 30px;
}
.modal::backdrop, .lightbox::backdrop { background: rgba(3,14,28,.72); }
.modal__close {
  position: absolute; top: 10px; right: 12px; width: 36px; height: 36px;
  border: 0; border-radius: 50%; background: var(--mist); cursor: pointer; font-size: 24px;
}
.lightbox { width: min(94vw, 980px); max-width: 980px; background: #07192f; color: white; padding: 52px 18px 18px; }
.lightbox img { max-height: 74vh; width: 100%; object-fit: contain; border-radius: var(--radius); }
.lightbox p { text-align: center; }
.lightbox__counter {
  position: absolute;
  left: 18px;
  top: 18px;
  color: rgba(255,255,255,.82);
  font-weight: 850;
}
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 58px; border: 0; background: rgba(255,255,255,.9); color: var(--navy); font-size: 34px; cursor: pointer; }
.lightbox__prev { left: 10px; }
.lightbox__next { right: 10px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .topbar__inner { justify-content: center; text-align: center; }
  .hero { min-height: auto; }
  .split, .split--reverse, .director__card, .cta-band__inner { grid-template-columns: 1fr; display: grid; }
  .admission-panel { margin-top: -42px; }
  .admission-panel__inner { grid-template-columns: 1fr; }
  .admission-panel__media { min-height: 300px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .program-grid { grid-template-columns: 1fr; }
  .course-card, .course-card:nth-child(even) { grid-template-columns: 1fr; }
  .course-card:nth-child(even) img { order: 0; }
  .facility-gallery { grid-template-columns: 1fr 1fr; }
  .facility-gallery figure.wide { grid-row: auto; grid-column: auto; }
  .story-row { grid-template-columns: repeat(2, 1fr); }
  .support-panel { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; border-top: 0; gap: 10px; }
  .steps li { border: 1px solid rgba(8,43,82,.1); min-height: auto; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, var(--max)); }
  .section { padding: 64px 0; }
  .topbar { display: none; }
  .nav { min-height: 68px; }
  .nav__links {
    top: 10px;
    right: 10px;
    bottom: 10px;
    width: min(92vw, 350px);
    height: calc(100vh - 20px);
    padding: calc(88px + env(safe-area-inset-top)) 18px 18px;
  }
  .nav__links .btn { width: 100%; margin-top: 8px; }
  .nav__links::before { top: calc(23px + env(safe-area-inset-top)); left: 20px; }
  .nav__links::after { top: calc(52px + env(safe-area-inset-top)); left: 20px; right: 76px; }
  .nav__close { top: calc(14px + env(safe-area-inset-top)); right: 14px; }
  .brand__mark { width: 42px; height: 42px; }
  .brand strong {
    max-width: 218px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand small {
    max-width: 218px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero__overlay { background: linear-gradient(180deg, rgba(7,31,56,.88), rgba(7,31,56,.62) 62%, rgba(7,31,56,.78)); }
  .page-hero {
    min-height: 360px;
  }
  .page-hero__shade {
    background: linear-gradient(180deg, rgba(7,31,56,.88), rgba(7,31,56,.62) 62%, rgba(7,31,56,.8));
  }
  .page-hero__content {
    padding: 62px 0 46px;
  }
  .page-hero h1 {
    font-size: 34px;
  }
  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }
  .hero__content { padding-top: 46px; padding-bottom: 54px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  .section-copy h2, .section-head h2 { font-size: 30px; }
  .section-copy h3 { font-size: 20px; }
  .hero__actions .btn, .center-actions .btn, .cta-band__actions .btn { width: 100%; }
  .hero__proof span { width: 100%; justify-content: flex-start; }
  .admission-panel {
    margin-top: 0;
    padding: 20px 0 28px;
    background: var(--mist);
  }
  .admission-panel__inner {
    padding: 12px;
    gap: 16px;
  }
  .admission-panel__media { min-height: 260px; }
  .admission-panel__copy { padding: 8px; }
  .enquiry-card, .contact-form { padding: 20px; }
  .trust-strip { padding-top: 18px; background: var(--mist); }
  .trust-grid, .feature-grid, .steps, .stats-grid, .about-highlights, .facility-list, .contact-grid, .footer__grid { grid-template-columns: 1fr; }
  .facility-gallery, .story-row { grid-template-columns: 1fr; }
  .facility-gallery figure.wide { grid-column: auto; }
  .course-card { padding: 12px; gap: 18px; }
  .course-card > img, .feature-image { height: 260px; }
  .program-card img { height: 210px; }
  .director__photo img { height: 430px; }
  .story-row img { height: 240px; min-height: 240px; }
  .facility-gallery img, .facility-gallery figure.wide img { height: 210px; }
  .support-panel { padding: 22px; }
  .about__media { min-height: auto; display: grid; gap: 14px; }
  .about__media img:first-child, .about__media img:nth-child(2) { position: static; width: 100%; height: auto; max-height: 390px; border: 0; }
  .media-note { position: static; }
  .director__card { padding: 22px; }
  blockquote { font-size: 18px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid button:nth-child(1), .gallery-grid button:nth-child(2) { grid-column: span 2; }
  .gallery-grid img { height: 190px; }
  .footer { padding-bottom: 118px; }
  .float-whatsapp { bottom: 82px; right: 14px; }
  .back-top { display: none; }
  .mobile-actions {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    background: rgba(255,255,255,.96);
    border-top: 1px solid rgba(11,40,71,.1);
    box-shadow: 0 -12px 32px rgba(8,43,82,.16);
    backdrop-filter: blur(14px);
  }
  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
    min-height: 44px;
    padding: 11px 8px;
    font-weight: 950;
    color: var(--navy);
    border: 1px solid rgba(11,40,71,.12);
    border-radius: 999px;
    background: white;
  }
  .mobile-actions .icon-svg { width: 17px; height: 17px; }
  .mobile-actions a:nth-child(2) { color: white; background: var(--emerald); border-color: var(--emerald); }
  .mobile-actions a:nth-child(3) { background: var(--gold); border-color: var(--gold); color: #201600; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 20px, var(--max)); }
  .btn {
    min-height: 44px;
    padding: 11px 16px;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }
  .hero {
    min-height: 0;
  }
  .hero__image {
    object-position: 58% center;
  }
  .hero__content {
    padding-top: 34px;
    padding-bottom: 38px;
  }
  .hero h1 {
    font-size: 32px;
    line-height: 1.12;
  }
  .page-hero h1 {
    font-size: 31px;
    line-height: 1.12;
  }
  .hero__hindi {
    font-size: 15px;
  }
  .hero__proof {
    gap: 8px;
    margin-top: 20px;
  }
  .hero__proof span {
    min-height: 0;
    padding: 8px 10px;
    font-size: 13px;
  }
  .admission-panel__media {
    min-height: 190px;
  }
  .admission-panel__badge {
    left: 10px;
    right: 10px;
    bottom: 10px;
    align-items: flex-start;
    font-size: 13px;
  }
  .admission-panel__copy h2 {
    font-size: 26px;
  }
  .trust-grid {
    gap: 10px;
  }
  .mini-card {
    padding: 16px;
  }
  .mini-card h2 {
    font-size: 18px;
  }
  .about__media img:first-child,
  .about__media img:nth-child(2) {
    max-height: 280px;
    object-fit: cover;
  }
  .director__card,
  .support-panel {
    padding: 18px;
  }
  .course-card > img,
  .feature-image {
    height: 220px;
  }
  .program-card img {
    height: 190px;
  }
  .director__photo img {
    height: 360px;
  }
  .director__photo figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 14px;
  }
  .course-card h3 {
    font-size: 24px;
  }
  .card-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .card-actions .btn {
    width: 100%;
  }
  .story-row img,
  .facility-gallery img,
  .facility-gallery figure.wide img {
    height: 190px;
    min-height: 190px;
  }
  .steps li {
    padding: 18px;
  }
  .cta-band {
    padding: 54px 0;
  }
  .gallery-grid {
    gap: 10px;
  }
  .gallery-grid img {
    height: 150px;
  }
  .gallery-grid button:nth-child(1),
  .gallery-grid button:nth-child(2) {
    grid-column: span 2;
  }
  .contact-form {
    width: 100%;
  }
  .footer__grid {
    gap: 22px;
  }
  .float-whatsapp {
    display: none;
  }
}

@media (max-width: 380px) {
  .container { width: min(100% - 18px, var(--max)); }
  .brand {
    gap: 9px;
  }
  .brand__mark {
    width: 38px;
    height: 38px;
  }
  .brand strong,
  .brand small {
    max-width: 185px;
  }
  .hero h1 {
    font-size: 29px;
  }
  .hero p {
    font-size: 15px;
  }
  .section-copy h2,
  .section-head h2 {
    font-size: 27px;
  }
  .admission-panel__inner,
  .course-card {
    padding: 10px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid button:nth-child(1),
  .gallery-grid button:nth-child(2) {
    grid-column: auto;
  }
  .gallery-grid img {
    height: 190px;
  }
  .mobile-actions {
    gap: 5px;
    padding: 6px;
  }
  .mobile-actions a {
    min-height: 40px;
    padding: 9px 5px;
    font-size: 13px;
  }
}

@media (max-width: 340px) {
  .container { width: min(100% - 14px, var(--max)); }
  .brand strong,
  .brand small {
    max-width: 158px;
  }
  .nav__toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .hero h1 {
    font-size: 27px;
  }
  .btn {
    padding-inline: 12px;
    font-size: 14px;
  }
  .mobile-actions a {
    font-size: 12px;
    gap: 4px;
  }
  .mobile-actions .icon-svg {
    width: 15px;
    height: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: -12px 0 24px;
}
.gallery-filters span {
  padding: 8px 11px;
  border: 1px solid rgba(8,43,82,.12);
  border-radius: 6px;
  color: var(--navy);
  font-weight: 850;
  background: white;
}

@media (hover: none), (max-width: 768px) {
  html { scroll-behavior: auto; }
  .site-header,
  .hero__proof span,
  .admission-panel__badge,
  .director__photo figcaption,
  .facility-gallery figcaption,
  .mobile-actions {
    backdrop-filter: none;
  }
  .hero__image,
  .facility-gallery img,
  .story-row img {
    filter: none;
  }
  .btn,
  .float-whatsapp,
  .back-top,
  .facility-gallery img,
  .story-row img,
  .gallery-grid img,
  .nav__links > a:not(.btn)::after {
    transition: none;
  }
  .btn:hover,
  .float-whatsapp:hover,
  .back-top:hover,
  .facility-gallery figure:hover img,
  .story-row figure:hover img,
  .gallery-grid button:hover img,
  .gallery-grid button:focus-visible img {
    transform: none;
    box-shadow: inherit;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .admission-panel__inner,
  .enquiry-card,
  .about__media img:first-child,
  .about__media img:nth-child(2),
  .float-whatsapp,
  .mobile-actions,
  .nav__links {
    box-shadow: none;
  }
}
