:root {
  --navy: #8f1026;
  --blue: #b71c2f;
  --ink: #2d1118;
  --muted: #745b60;
  --gold: #f2b705;
  --gold-soft: #fff1ba;
  --white: #ffffff;
  --ice: #fff8ec;
  --line: rgba(143, 16, 38, 0.14);
  --shadow: 0 24px 70px rgba(143, 16, 38, 0.2);
  --soft-shadow: 0 18px 45px rgba(143, 16, 38, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.locked {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(22px);
  box-shadow: var(--soft-shadow);
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 1220px);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  border-color: var(--line);
  box-shadow: var(--soft-shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  width: auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.site-header .brand {
  flex: 0 0 auto;
}

.site-header .brand-logo {
  height: 55px;
  max-width: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 183, 5, 0.72);
  border-radius: 50%;
  color: var(--gold-soft);
  background: linear-gradient(145deg, rgba(242, 183, 5, 0.94), rgba(143, 16, 38, 0.72));
  font-weight: 800;
  letter-spacing: 0;
}

.site-header.is-scrolled .brand-mark,
.footer-brand .brand-mark {
  color: var(--white);
}

.footer-brand {
  width: min(100%, 240px);
}

.footer-brand .brand-logo {
  width: 100%;
  height: auto;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 0.96rem;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  opacity: 0.74;
  font-size: 0.74rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: currentColor;
  opacity: 0.86;
  font-size: 0.82rem;
  font-weight: 650;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(242, 183, 5, 0.16);
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.03);
  animation: heroZoom 16s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(96, 12, 28, 0.96) 0%, rgba(143, 16, 38, 0.78) 42%, rgba(143, 16, 38, 0.34) 100%),
    linear-gradient(0deg, rgba(96, 12, 28, 0.6), rgba(96, 12, 28, 0.08));
}

.media-label,
.feature-media span,
.faculty-card span {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--white);
  background: rgba(96, 12, 28, 0.62);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 760;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 430px);
  align-items: center;
  gap: 52px;
  width: min(100% - 40px, var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: 130px 0 70px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.5vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero h1,
.hero h2,
.final-cta h2,
.campus-band h2,
.testimonials h2,
.process h2 {
  color: var(--white);
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.26rem);
}

.hero-actions,
.final-badges,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible,
.circle-btn:hover,
.circle-btn:focus-visible {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--navy);
  background: linear-gradient(135deg, #fff7d3, #f2b705);
  box-shadow: 0 16px 36px rgba(242, 183, 5, 0.36);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.btn.ghost {
  color: var(--navy);
  border: 1px solid var(--line);
  background: var(--white);
}

.btn.full {
  width: 100%;
}

.trust-row,
.curriculum-marks {
  margin-top: 28px;
}

.trust-row span,
.final-badges span,
.curriculum-marks span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 720;
}

.curriculum-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.curriculum-marks span {
  min-height: 46px;
  min-width: 82px;
  justify-content: center;
  border-color: rgba(242, 183, 5, 0.56);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.banner-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 680;
}

.lead-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.form-head {
  padding: 28px 28px 0;
}

.form-head h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.form-head p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.admission-form {
  display: grid;
  gap: 14px;
  padding: 24px 28px 28px;
}

.benchmark-panel {
  width: 100%;
  max-width: 430px;
}

.benchmark-panel--final {
  max-width: 430px;
}

.benchmark-panel--hero {
  max-width: 410px;
}

.benchmark-embed {
  padding: 0;
  overflow: hidden;
}

.benchmark-embed iframe {
  width: 100% !important;
  min-height: 560px;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
}

.benchmark-panel--hero .benchmark-embed iframe {
  min-height: 530px !important;
  height: 530px !important;
}

.benchmark-embed noscript {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.benchmark-embed noscript a {
  color: var(--navy);
  font-weight: 800;
}

.admission-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
}

.admission-form input,
.admission-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(16, 35, 63, 0.14);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.admission-form input:focus,
.admission-form select:focus {
  border-color: rgba(242, 183, 5, 0.95);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(242, 183, 5, 0.18);
}

.form-note,
.form-success {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-success:not(:empty) {
  padding: 10px 12px;
  border: 1px solid rgba(45, 128, 90, 0.18);
  border-radius: var(--radius);
  color: #16653f;
  background: rgba(45, 128, 90, 0.08);
  font-weight: 760;
}

.logo-bar {
  display: grid;
  gap: 18px;
  padding: 34px 20px;
  color: var(--navy);
  background: linear-gradient(180deg, #fffdf8, #fff8ec);
  text-align: center;
}

.logo-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.logo-pill {
  display: grid;
  place-items: center;
  min-width: 190px;
  min-height: 54px;
  padding: 12px 18px;
  border: 1px solid rgba(242, 183, 5, 0.34);
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(143, 16, 38, 0.08);
  font-weight: 850;
}

.logo-bar p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
}

.section {
  padding: clamp(72px, 10vw, 126px) 20px;
}

.section-light {
  background:
    radial-gradient(circle at 10% 10%, rgba(242, 183, 5, 0.14), transparent 28%),
    linear-gradient(180deg, var(--ice), #ffffff);
}

.section-white {
  padding: clamp(72px, 10vw, 126px) 20px;
  background: var(--white);
}

.section-heading,
.split-heading {
  width: min(100%, var(--max));
  margin: 0 auto 38px;
}

.section-heading {
  max-width: 820px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.split-heading p {
  color: var(--muted);
  font-size: 1.03rem;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.split-heading > p {
  max-width: 430px;
  margin-bottom: 18px;
}

.value-grid,
.faculty-grid,
.stats-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.stat-card,
.step,
.faculty-card,
.infra-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.value-card {
  min-height: 236px;
  padding: 26px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.value-card:hover,
.infra-card:hover,
.feature-media:hover,
.faculty-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 183, 5, 0.48);
  box-shadow: var(--shadow);
}

.icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--gold);
  background: linear-gradient(145deg, rgba(242, 183, 5, 0.16), rgba(183, 28, 47, 0.08));
}

.icon svg,
.circle-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card p,
.infra-card p,
.faculty-card p,
.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-action {
  display: flex;
  justify-content: center;
  width: min(100%, var(--max));
  margin: 34px auto 0;
}

.campus-band,
.process,
.testimonials {
  padding: clamp(72px, 10vw, 126px) 20px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(96, 12, 28, 0.97), rgba(183, 28, 47, 0.9)),
    url("https://images.unsplash.com/photo-1498243691581-b145c3f54a5a?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.campus-band .section-heading p:not(.eyebrow),
.testimonials .split-heading p,
.process .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.student-life-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.life-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.life-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 183, 5, 0.48);
  box-shadow: var(--shadow);
}

.life-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(96, 12, 28, 0.82));
  pointer-events: none;
}

.life-card img,
.life-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.life-card img {
  object-fit: cover;
}

.life-card--video {
  background: #000;
}

.life-card--short .life-frame {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
}

.life-caption {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
}

.life-caption h3,
.life-caption p {
  margin: 0;
}

.life-caption h3 {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.2;
}

.life-caption p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 680;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(210px, 260px);
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.feature-media,
.video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(96, 12, 28, 0.8));
}

.feature-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.feature-media.video-fill-card {
  background: #000;
}

.feature-media.video-fill-card .feature-video {
  top: 50%;
  left: 50%;
  inset: auto;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1.95);
  transform-origin: center center;
  pointer-events: none;
}

.feature-media.large {
  grid-row: span 2;
}

.feature-media div {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 3;
  max-width: 520px;
}

.feature-media h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.feature-media p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.video-card {
  display: grid;
  place-items: center;
  min-height: 230px;
  background:
    linear-gradient(145deg, rgba(242, 183, 5, 0.34), rgba(96, 12, 28, 0.76)),
    url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=900&q=80") center/cover;
  text-align: center;
}

.video-card p {
  position: absolute;
  left: 16px;
  bottom: 16px;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(96, 12, 28, 0.62);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 780;
}

.play-button {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid var(--white);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(100%, var(--max));
  margin: 0 auto 20px;
}

.tab {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.tab.is-active {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(143, 16, 38, 0.2);
}

.tab.highlight-tab {
  border-color: rgba(242, 183, 5, 0.52);
}

.tab-panels {
  width: min(100%, 980px);
  margin: 0 auto;
}

.program-panel {
  display: none;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(242, 183, 5, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 232, 191, 0.28)),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.program-panel.is-active {
  display: grid;
}

.program-panel.program-feature {
  border-color: rgba(242, 183, 5, 0.58);
  background:
    linear-gradient(135deg, rgba(96, 12, 28, 0.98), rgba(183, 28, 47, 0.92)),
    var(--navy);
}

.program-panel.program-feature h3,
.program-panel.program-feature p,
.program-panel.program-feature li {
  color: var(--white);
}

.program-panel.program-feature p {
  color: rgba(255, 255, 255, 0.78);
}

.program-panel.program-feature .btn {
  margin-top: 10px;
}

.program-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.program-panel p,
.program-panel li {
  color: var(--muted);
}

.program-panel ul {
  display: grid;
  gap: 12px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-panel li {
  position: relative;
  padding-left: 28px;
  font-weight: 680;
}

.program-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(242, 183, 5, 0.16);
}

.infrastructure {
  background:
    linear-gradient(180deg, #fff9ef, #fff3df);
  overflow: hidden;
}

.scroll-cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow-x: auto;
  padding: 8px 2px 22px;
  scroll-snap-type: x mandatory;
}

.infra-card {
  overflow: hidden;
  min-height: 390px;
  scroll-snap-align: start;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.infra-card img {
  height: 230px;
}

.infra-card div {
  padding: 22px;
}

.outcomes {
  background:
    radial-gradient(circle at 80% 10%, rgba(242, 183, 5, 0.16), transparent 28%),
    var(--white);
}

.stat-card {
  padding: 26px;
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-weight: 760;
}

.university-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: min(100%, var(--max));
  margin: 26px auto 0;
}

.university-strip span,
.university-strip div {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 840;
}

.university-strip span {
  flex-basis: 100%;
  color: var(--gold);
  border-color: rgba(242, 183, 5, 0.28);
  background: rgba(255, 241, 186, 0.36);
}

.carousel-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.circle-btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.testimonial-shell {
  position: relative;
  width: min(100%, 900px);
  min-height: 285px;
  margin: 0 auto;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  padding: clamp(30px, 6vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 260ms ease, transform 260ms ease;
  text-align: center;
  backdrop-filter: blur(18px);
}

.testimonial.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.testimonial p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.3;
}

.testimonial strong {
  color: var(--gold-soft);
}

.avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold-soft);
  font-weight: 900;
}

.faculty-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faculty-card {
  position: relative;
  overflow: hidden;
  padding-bottom: 24px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.faculty-card img {
  height: 290px;
}

.faculty-card h3,
.faculty-card p {
  padding: 0 22px;
}

.faculty-card h3 {
  margin-top: 22px;
}

.timeline {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline.five-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.step {
  position: relative;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.step span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold-soft);
  font-weight: 900;
}

.step h3 {
  color: var(--white);
}

.step p {
  color: rgba(255, 255, 255, 0.74);
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 430px);
  gap: 50px;
  align-items: center;
  padding: clamp(78px, 10vw, 132px) max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(96, 12, 28, 0.98), rgba(143, 16, 38, 0.7)),
    url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.final-content p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.07rem;
}

.final-actions {
  margin-top: 26px;
}

.final-form {
  background: rgba(255, 255, 255, 0.95);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 28px;
  padding: 42px 28px;
  color: var(--navy);
  background: var(--white);
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.site-footer p {
  margin: 20px 0 0;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
  font-weight: 760;
}

.map-card {
  display: grid;
  place-items: center;
  min-height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(242, 183, 5, 0.2), rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 10px, transparent 10px 20px);
  text-align: center;
}

.map-card span {
  color: var(--gold-soft);
  font-weight: 850;
}

.map-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: min(calc(100% - 26px), 520px);
  padding: 10px;
  border: 1px solid rgba(143, 16, 38, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(143, 16, 38, 0.2);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.sticky-cta .btn {
  min-height: 46px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.sticky-cta.is-visible {
  display: grid;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 61;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: #20b15a;
  box-shadow: 0 16px 34px rgba(32, 177, 90, 0.35);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .main-nav {
    display: none;
  }

  .hero-content,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 120px;
  }

  .lead-card {
    max-width: 560px;
  }

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

  .value-grid,
  .stats-grid,
  .timeline,
  .timeline.five-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), 1220px);
    padding: 6px 10px;
  }

  .brand {
    width: auto;
  }

  .site-header .brand-logo {
    height: 43px;
  }

  .header-cta {
    min-height: 32px;
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
    gap: 28px;
    padding: 112px 0 42px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(96, 12, 28, 0.9), rgba(143, 16, 38, 0.72)),
      linear-gradient(0deg, rgba(96, 12, 28, 0.74), rgba(96, 12, 28, 0.12));
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions .btn,
  .hero-actions {
    width: 100%;
  }

  .trust-row span,
  .final-badges span,
  .curriculum-marks span {
    width: 100%;
  }

  .form-head,
  .admission-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .logo-pill {
    min-width: 0;
  }

  .value-grid,
  .faculty-grid,
  .stats-grid,
  .timeline,
  .student-life-grid,
  .media-grid,
  .program-panel {
    grid-template-columns: 1fr;
  }

  .student-life-grid {
    width: min(100%, 420px);
  }

  .media-grid {
    grid-auto-rows: minmax(220px, auto);
  }

  .feature-media.large {
    min-height: 430px;
  }

  .feature-media.video-fill-card .feature-video {
    transform: translate(-50%, -50%) scale(1.7);
  }

  .split-heading {
    display: block;
  }

  .tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .tab {
    flex: 0 0 auto;
  }

  .program-panel {
    gap: 16px;
  }

  .final-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 128px;
  }

  .sticky-cta {
    display: grid;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 96px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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