:root {
  --ink: #172033;
  --muted: #697386;
  --navy: #0c2340;
  --navy-2: #07182e;
  --green: #315c50;
  --teal: #4b7165;
  --gold: #d4a843;
  --cream: #fbf7ee;
  --paper: #ffffff;
  --line: #e5e0d4;
  --shadow: 0 24px 70px rgba(12, 35, 64, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

.nav-cta {
  background: var(--green);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(61, 74, 30, 0.2);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 31, 63, 0.3);
}

.topbar {
  background: var(--navy);
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-contact .separator {
  width: 1px;
  height: 15px;
  background: rgba(255, 255, 255, 0.3);
}

.topbar a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  font-size: 13px;
  font-weight: 600;
}

.topbar a:hover {
  opacity: 1;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar svg,
.footer svg {
  width: 17px;
  height: 17px;
}

.social-links a,
.footer-social a {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.navbar {
  background: #fff;
}

.nav-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu>li {
  position: relative;
  /* CRITICAL: This keeps the dropdown attached to the link */
  display: flex;
  align-items: center;
  height: 80px;
  /* Matches nav-inner height for easier hovering */
}

.nav-menu>li>a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.nav-menu li a:hover {
  color: #5a5e2f;
}

/* Dropdown Menu - Clean, No Bullets, Absolute */
.dropdown ul {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: #fff;
  list-style: none !important;
  /* Removes the circles */
  padding: 8px 0 !important;
  /* Tightens the vertical space */
  margin: 0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border: 1px solid #eee;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  text-align: left;
}

.dropdown ul li {
  list-style: none !important;
  /* Extra safety for circles */
  padding: 0 !important;
  margin: 0 !important;
  display: block;
  width: 100%;
}

.dropdown ul li a {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #444;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.dropdown ul li a:hover {
  background: #f8f9fa;
  color: #5a5e2f;
}

/* Admission Button */
.btn-admission {
  background: #5a5e2f;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-admission:hover {
  background: #4a4d26;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(90, 94, 47, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .nav-inner {
    min-height: 100px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    z-index: 1000;
  }

  .nav-menu.is-open {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    display: none;
  }

  .dropdown:hover ul {
    display: block;
  }

  .nav-actions {
    display: none;
    /* Hide button on mobile navbar for cleaner look, or move to menu */
  }
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
}

.hero-banner {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--navy);
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  display: flex;
  align-items: center;
  background: var(--navy);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-2%, -2%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(13, 34, 53, 0.85) 0%,
      rgba(13, 34, 53, 0.4) 60%,
      transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #6b705c;
  /* Olive green matching National Model */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-learn:hover {
  background: #5a5e4d;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 15px;
  z-index: 3;
}

.ctrl-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.ctrl-btn:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

@media (max-width: 768px) {
  .hero-banner {
    height: 70vh;
  }

  .hero-overlay {
    background: rgba(17, 14, 72, 0.7);
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-controls {
    right: 50%;
    transform: translateX(50%);
  }
}

.impact-section {
  background: #fdfbf7;
}

.stats-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card-v2 {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.stat-card-v2:hover {
  transform: translateY(-5px);
}

.stat-icon-wrapper {
  width: 70px;
  height: 70px;
  background: #fff8ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #c8952a;
}

.stat-icon-wrapper i,
.stat-icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

.stat-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 700;
  color: #c8952a;
  line-height: 1;
  margin-bottom: 15px;
}

.stat-text {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #c8952a, #e8b84b);
}

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

.feature-card-v2 {
  padding: 40px 30px;
  border-radius: 20px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.feature-card-v2.navy {
  background: #0d2235;
}

.feature-card-v2.green {
  background: #1a3d2b;
}

.feature-icon-box {
  width: 54px;
  height: 54px;
  background: rgba(232, 184, 75, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #e8b84b;
}

.feature-icon-box i,
.feature-icon-box svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
}

.feature-card-v2 h3 {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-card-v2 p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.feature-link {
  color: #e8b84b;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.feature-link:hover {
  color: #fff;
}

.feature-link i,
.feature-link svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1024px) {

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

@media (max-width: 600px) {

  .stats-grid-v2,
  .features-grid-v2 {
    grid-template-columns: 1fr;
  }
}

.section-pad {
  padding: 110px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.12;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 54px);
}

h3 {
  font-size: 24px;
}

.section-heading p,
.welcome-copy p,
.learning-copy p,
.campus-copy p,
.education p,
.exam-cta p,
.footer p {
  color: var(--muted);
  font-size: 17px;
}

.split,
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
}

.align-center {
  align-items: center;
}



.school-panel,
.education-panel {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.welcome-image,
.foundation-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 480px;
}

.welcome-image img,
.foundation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.school-panel::before,
.education-panel::before,
.cta-panel::before,
.campus-panel::before,
.news-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.75;
}

.panel-badge {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin-bottom: 80px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
}

.panel-badge svg {
  width: 42px;
  height: 42px;
}

.panel-lines {
  position: absolute;
  right: 34px;
  top: 34px;
  width: 48%;
  display: grid;
  gap: 13px;
}

.panel-lines span {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.panel-lines span:nth-child(2) {
  width: 76%;
}

.panel-lines span:nth-child(3) {
  width: 88%;
}

.panel-lines span:nth-child(4) {
  width: 62%;
}

.school-panel strong {
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}

.welcome-copy {
  align-self: center;
}

.ticker-title {
  margin-top: 28px;
  color: rgba(17, 14, 72, 0.1);
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 800;
  line-height: 0.95;
}

.founder-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.founder-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.founder-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
}

.founder-title {
  color: var(--green);
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 18px;
}

.quote {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  color: var(--muted);
  font-style: italic;
}

.quote svg {
  color: var(--gold);
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.quote blockquote {
  margin: 0;
  font-size: 18px;
}

.enquiry-band {
  background:
    linear-gradient(135deg, rgba(19, 129, 95, 0.11), rgba(245, 185, 66, 0.18)),
    #fbfcff;
}

.enquiry-form {
  padding: 34px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.enquiry-form h3 {
  margin-bottom: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fafc;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(19, 129, 95, 0.12);
}

.enquiry-form .button {
  width: 100%;
  margin-top: 16px;
}

.form-note {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green);
  font-weight: 800;
}

.learning-copy {
  align-self: center;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: #253044;
  font-weight: 800;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--green);
  margin-top: 2px;
}

.school-life-section {
  position: relative;
  background-image: url('assets/vision-classroom.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  overflow: hidden;
}

.school-life-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 15, 35, 0.8), rgba(5, 15, 35, 0.6));
  z-index: 0;
}

.campus-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  min-height: 560px;
  position: relative;
  z-index: 1;
}

.campus-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-content: end;
  padding: 40px;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.campus-panel:hover {
  background: rgba(255, 255, 255, 0.07);
}

.campus-panel-alt {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.campus-panel svg {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  margin-bottom: 26px;
  color: var(--gold);
}

.campus-panel span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  line-height: 0.95;
}

.campus-copy {
  padding: clamp(44px, 6vw, 86px);
  align-self: center;
  color: #fff;
}

.campus-copy .eyebrow {
  color: var(--gold);
}

.campus-copy h2 {
  color: #fff;
}

.campus-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.school-life-highlights {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 7vw, 104px) 0;
  background:
    linear-gradient(rgba(6, 16, 34, 0.78), rgba(6, 16, 34, 0.82)),
    url("assets/gallery-classroom.jpg") center/cover;
}

.school-life-highlights::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.school-life-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.3vw, 36px);
}

.school-life-card {
  position: relative;
  min-height: clamp(520px, 38vw, 670px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-radius: 12px;
  background: var(--navy);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.school-life-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 620ms ease, filter 620ms ease;
}

.school-life-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 35, 64, 0.08) 0%, rgba(12, 35, 64, 0.48) 42%, rgba(12, 35, 64, 0.92) 100%),
    linear-gradient(45deg, rgba(49, 92, 80, 0.5), transparent 62%);
}

.school-life-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.12);
}

.school-life-card:hover {
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.32);
  transform: translateY(-6px);
}

.school-life-card-content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 2.8vw, 42px);
  color: #fff;
}

.school-life-card-content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(54px, 4.4vw, 76px);
  height: clamp(54px, 4.4vw, 76px);
  margin-bottom: clamp(22px, 2.3vw, 34px);
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
  font-size: clamp(17px, 1.4vw, 24px);
}

.school-life-card-content h3 {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 3.1vw, 58px);
  line-height: 0.95;
  margin-bottom: 18px;
}

.school-life-card-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.45vw, 27px);
  line-height: 1.48;
}

.school-life-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(26px, 2.5vw, 42px);
  padding: clamp(14px, 1.2vw, 20px) clamp(20px, 2vw, 30px);
  color: var(--navy);
  background: var(--gold);
  border-radius: 8px;
  font-size: clamp(15px, 1.2vw, 22px);
  font-weight: 900;
  line-height: 1;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.school-life-link svg,
.school-life-link i {
  width: 1.25em;
  height: 1.25em;
}

.school-life-link:hover {
  color: #fff;
  background: var(--green);
  transform: translateX(3px);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.stat-box {
  background: #ffffff;
  padding: 16px 12px;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-left: 3px solid #C9A84C;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.stat-num {
  display: block;
  color: #C9A84C;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  color: #64748b;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.education {
  background-color: #f9f7f2;
  background-image: radial-gradient(rgba(15, 32, 68, 0.08) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.heading-line {
  width: 60px;
  height: 4px;
  background: #C9A84C;
  margin: 16px 0 24px;
  border-radius: 2px;
}

.education h2 {
  font-size: 42px;
  max-width: 500px;
  color: #0e1b35;
}

.education p {
  font-size: 18px;
  line-height: 1.6;
  color: #4b5563;
}

.education .two-col {
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
}

.education-panel {
  position: relative;
  display: grid;
  place-items: center;
  padding: 80px 40px;
  color: #fff;
  background: linear-gradient(135deg, #0e1b35, #134e4a);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.education-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

.education-panel>div {
  position: relative;
  z-index: 1;
  text-align: center;
}

.education-panel strong {
  display: block;
  margin-top: 24px;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1.1;
  color: #fff;
}

.education-panel span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 15px;
  max-width: 280px;
}

.education-panel svg {
  width: 80px;
  height: 80px;
  color: #C9A84C;
}

.education-panel svg {
  width: 86px;
  height: 86px;
  color: var(--gold);
}

.education-panel strong,
.education-panel span {
  display: block;
}

.education-panel strong {
  margin-top: 20px;
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}

.education-panel span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: #0e1b35;
  color: #fff;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.btn-learn-more:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(14, 27, 53, 0.15);
}

.btn-visit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0e1b35;
  font-weight: 800;
  text-decoration: none;
  font-size: 15px;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.btn-visit-link:hover {
  color: #C9A84C;
}

.mission-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.chronicles {
  background: #f0ede6;
  padding: 100px 0;
}

.chronicles-eyebrow {
  color: #888;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 12px;
}

.chronicles-title {
  color: #0d1b3e;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 60px;
}

.chronicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.chronicles-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.chronicles-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(13, 27, 62, 0.12);
}

.card-top {
  height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 35px 35px;
  z-index: 1;
}

.card-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon i,
.card-icon svg {
  width: 52px !important;
  height: 52px !important;
  stroke-width: 1.5;
}

.blue-gradient {
  background: linear-gradient(135deg, #0d2a4a, #1a5a9a);
  color: #c9a84c;
}

.green-gradient {
  background: linear-gradient(135deg, #0d3d24, #1e9a5e);
  color: #c9a84c;
}

.gold-gradient {
  background: linear-gradient(135deg, #c9a84c, #e8c96a);
  color: #0d1b3e;
}

.card-bottom {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 16px 16px;
}

.card-meta {
  color: #1e7a5b;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  margin-bottom: 14px !important;
}

.card-title {
  font-family: "Playfair Display", serif;
  color: #0d1b3e;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px !important;
  min-height: 60px;
}

.card-divider {
  height: 1px;
  background: #eee;
  margin-bottom: 24px;
  width: 100%;
}

.card-link {
  color: #0d1b3e;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.card-link .arrow {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.card-link:hover .arrow {
  transform: translateX(6px);
}

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

@media (max-width: 768px) {
  .chronicles-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .chronicles-title {
    font-size: 32px;
  }
}

.exam-cta {
  padding: 90px 0 0;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  overflow: hidden;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.exam-cta h2 {
  color: #fff;
}

.exam-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: #fff;
  background:
    radial-gradient(circle at 74% 24%, rgba(245, 185, 66, 0.32), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.26);
}

.cta-panel svg,
.cta-panel strong,
.cta-panel span {
  position: relative;
  z-index: 1;
}

.cta-panel svg {
  width: 82px;
  height: 82px;
  color: var(--gold);
}

.cta-panel strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.cta-panel span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
}

.memory-line {
  margin-top: 64px;
  color: rgba(255, 255, 255, 0.12);
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 8vw, 118px);
  font-weight: 800;
  line-height: 0.9;
  white-space: nowrap;
  transform: translateX(-4vw);
}

.footer {
  color: rgba(255, 255, 255, 0.78);
  background: #0e1025;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.7fr;
  gap: 48px;
  padding: 56px 0;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer .brand strong,
.footer h3 {
  color: #fff;
}

.footer .brand small {
  color: rgba(255, 255, 255, 0.65);
}

.footer p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.footer-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.copyright {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Button */
.float-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 25px;
  z-index: 9999;
  background-color: #25D366;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  animation: float-pulse 2s infinite;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Admission Button */
.float-admission {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 9999;
  background-color: #C9A84C;
  color: #1a1a2e;
  font-weight: 700;
  font-size: 13px;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
  animation: float-pulse 2s infinite;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.float-admission:hover,
.float-whatsapp:hover {
  transform: scale(1.05);
}

.floats-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

/* Pulse Animation */
@keyframes float-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(201, 168, 76, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

@media (max-width: 768px) {
  .float-whatsapp {
    width: 48px;
    height: 48px;
    bottom: calc(24px + env(safe-area-inset-bottom));
    left: 16px;
  }

  .float-whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .float-admission {
    padding: 12px 18px;
    font-size: 11.5px;
    bottom: calc(24px + env(safe-area-inset-bottom));
    right: 16px;
  }
}

@media (max-width: 1080px) {

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-menu.is-open {
    position: absolute;
    top: 130px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .has-menu ul {
    position: static;
    width: 100%;
    margin-top: 4px;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

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

  .stack-inner {
    grid-template-columns: 1fr;
  }

  .stack-copy {
    max-width: 680px;
  }

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

  .school-life-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .campus-panel {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar-inner,
  .nav-inner,
  .button-row {
    align-items: flex-start;
  }

  .topbar-inner {
    flex-direction: column;
    padding: 10px 0;
    gap: 8px;
  }

  .social-links {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero,
  .hero-slider,
  .hero-slide {
    min-height: 560px;
  }

  .stack-showcase {
    padding: 56px 0 66px;
  }

  .photo-stack {
    min-height: 390px;
  }

  .stack-img {
    border-width: 7px;
  }

  .stack-img-main {
    right: 0;
    width: 72%;
    height: 310px;
  }

  .stack-img-top {
    width: 48%;
    height: 205px;
  }

  .stack-img-bottom {
    width: 52%;
    height: 205px;
  }

  .hero-controls {
    right: 18px;
    bottom: 86px;
  }

  .feature-strip {
    margin-top: 0;
    padding: 18px 0;
    background: #f7f9fc;
  }

  .feature-grid,
  .split,
  .two-col,
  .news-grid,
  .cta-inner,
  .stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .full {
    grid-column: auto;
  }

  .section-pad {
    padding: 72px 0;
  }

  .school-panel,
  .education-panel {
    min-height: 300px;
  }

  .campus-copy {
    padding: 48px 24px;
  }

  .school-life-section {
    background-attachment: scroll;
    background-color: var(--navy);
    background-position: center top;
  }

  .school-life-highlights {
    padding: 56px 0;
  }

  .campus-grid {
    min-height: auto;
  }

  .campus-panel {
    min-height: 220px;
    padding: 28px 24px;
  }

  .campus-panel svg {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }

  .school-life-showcase {
    grid-template-columns: 1fr;
    padding-top: 8px;
    padding-bottom: 54px;
    gap: 22px;
  }

  .school-life-card {
    min-height: 540px;
  }

  .school-life-card-content {
    padding: 24px;
  }

  .school-life-card-content h3 {
    font-size: clamp(34px, 12vw, 46px);
  }

  .school-life-card-content p {
    font-size: 18px;
  }

  .school-life-link {
    width: 100%;
    justify-content: center;
    padding: 13px 16px;
  }

  .enquiry-form {
    padding: 24px;
  }

  .memory-line {
    white-space: normal;
  }


}

/* Secondary Pages */
.page-hero {
  background: linear-gradient(135deg, var(--green), var(--navy));
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-hero h1 {
  font-size: clamp(48px, 6vw, 72px);
  margin: 0;
}

.tabs-container {
  max-width: 900px;
  margin: 0 auto;
}

.tab-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.tab-button {
  padding: 15px 30px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button.is-active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.is-active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vision-card,
.mission-card {
  padding: 40px;
  background: var(--cream);
  border-radius: var(--radius);
  text-align: center;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #fff;
  color: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.approach-item {
  padding: 30px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-5px);
}

.approach-item svg {
  color: var(--gold);
  margin-bottom: 15px;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.info-card {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-card svg {
  width: 24px;
  height: 24px;
}


.site-header {
  background: rgba(255, 253, 248, 0.98);
  backdrop-filter: blur(12px);
}

.navbar {
  background: transparent;
}

.nav-inner {
  min-height: 96px;
}

.brand-logo {
  height: 78px;
  width: 78px;
  object-fit: contain;
}

.footer .brand-logo {
  height: 92px;
  width: 92px;
}

.nav-menu {
  gap: 22px;
}

.nav-menu>li {
  height: 96px;
}

.nav-menu>li>a {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-menu>li>a svg {
  width: 16px;
  height: 16px;
}

.has-menu>ul,
.dropdown>.dropdown-menu {
  position: absolute;
  top: calc(100% - 12px);
  left: 50%;
  z-index: 1000;
  min-width: 236px;
  margin: 0 !important;
  padding: 10px !important;
  list-style: none !important;
  text-align: left;
  background: #fffdf8;
  border: 1px solid rgba(212, 168, 67, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(12, 35, 64, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.has-menu:hover>ul,
.has-menu:focus-within>ul,
.dropdown:hover>.dropdown-menu,
.dropdown:focus-within>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.has-menu>ul li,
.dropdown>.dropdown-menu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.has-menu>ul a,
.dropdown>.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: #243047;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  white-space: nowrap;
  border-radius: 6px;
}

.has-menu>ul a:hover,
.dropdown>.dropdown-menu a:hover {
  color: var(--navy);
  background: #f4eddf;
}

.btn-admission,
.button-primary {
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(12, 35, 64, 0.18);
}

.btn-admission:hover,
.button-primary:hover {
  background: var(--green);
}

.landing-hero {
  min-height: calc(100vh - 136px);
  display: grid;
  align-items: center;
  padding: 64px 0 82px;
  background:
    linear-gradient(115deg, rgba(255, 253, 248, 0.96) 0%, rgba(255, 253, 248, 0.9) 42%, rgba(12, 35, 64, 0.08) 100%),
    url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.landing-hero::before {
  background:
    linear-gradient(90deg, rgba(12, 35, 64, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(12, 35, 64, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
}

.hero-logo {
  width: 122px;
  height: 122px;
  margin-bottom: 22px;
  object-fit: contain;
}

.stack-copy h1,
.hero h1,
h2,
.school-panel strong,
.ticker-title,
.campus-panel span,
.education-panel strong,
.cta-panel strong,
.memory-line {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
}

.stack-copy h1 {
  max-width: 620px;
  color: var(--navy);
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.92;
}

.hero-intro {
  max-width: 560px;
  margin: -10px 0 28px;
  color: #49566f;
  font-size: clamp(17px, 2vw, 20px);
}

.button-light {
  color: var(--navy);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(12, 35, 64, 0.18);
}

.photo-stack {
  min-height: 500px;
}

.stack-img {
  border-color: #fffdf8;
  box-shadow: 0 28px 70px rgba(12, 35, 64, 0.18);
}

.hero-slide,
.campus-panel,
.education-panel,
.exam-cta {
  background:
    radial-gradient(circle at 82% 26%, rgba(212, 168, 67, 0.26), transparent 24%),
    linear-gradient(135deg, var(--navy), var(--green));
}

.feature-card {
  background: linear-gradient(135deg, var(--navy), var(--green));
}

.feature-card:nth-child(even) {
  background: linear-gradient(135deg, var(--green), var(--teal));
}

@media (max-width: 1080px) {
  .nav-inner {
    min-height: 84px;
    align-items: center;
  }

  .brand-logo {
    height: 68px;
    width: 68px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    height: auto;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    gap: 2px;
    padding: 16px;
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu>li {
    height: auto;
    width: 100%;
    display: block;
  }

  .nav-menu>li>a {
    justify-content: space-between;
    padding: 10px 6px;
  }

  .has-menu>ul,
  .dropdown-menu,
  .dropdown ul {
    position: static;
    min-width: 0;
    width: 100%;
    margin: 0 0 8px;
    padding: 4px 0 4px 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .has-menu>ul a,
  .dropdown-menu a {
    white-space: normal;
  }

  .nav-actions {
    display: none;
  }
}

@media (max-width: 760px) {
  .landing-hero {
    min-height: auto;
    padding: 44px 0 54px;
  }

  .hero-logo {
    width: 96px;
    height: 96px;
  }

  .photo-stack {
    min-height: 360px;
  }


}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

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

/* --- Gallery Section --- */
.gallery-section {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.item-wide {
  grid-column: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 35, 64, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-overlay span {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item {
    height: 250px;
  }

  .item-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .item-large,
  .item-wide {
    grid-column: span 1;
  }
}

/* Vision V2 Section */
.vision-section-v2 {
  background: #F5F0E8;
  /* cream */
  overflow: hidden;
}

.vision-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 700px;
}

.vision-v2-image-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}

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

.vision-v2-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 35%;
  background: linear-gradient(to right, rgba(245, 240, 232, 0) 0%, #F5F0E8 100%);
  pointer-events: none;
}

.vision-v2-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: #C8952A;
  color: #fff;
  padding: 20px 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(200, 149, 42, 0.3);
}

.vision-v2-badge .badge-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.vision-v2-badge .badge-text {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.vision-v2-content {
  padding: 3rem 2.5rem;
  max-width: 600px;
}

.eyebrow-tag {
  color: #1A3D2B;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.vision-v2-title {
  color: #0D2235;
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 25px;
}

.text-gold {
  color: #C8952A;
}

.vision-v2-desc {
  color: #697386;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-family: "DM Sans", sans-serif;
}

.vision-v2-quote {
  border-left: 4px solid #C8952A;
  background: rgba(200, 149, 42, 0.08);
  padding: 24px 30px;
  margin: 0 0 35px 0;
  font-family: "DM Sans", sans-serif;
  font-style: italic;
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  border-radius: 0 12px 12px 0;
}

.vision-v2-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.vision-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0D2235;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.vision-pill i,
.vision-pill svg {
  width: 18px;
  height: 18px;
  color: #C8952A;
}

.btn-vision-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0D2235;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-vision-cta:hover {
  background: #1A3D2B;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26, 61, 43, 0.2);
  color: #fff;
}

@media (max-width: 1024px) {
  .vision-v2-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .vision-v2-fade {
    width: 100%;
    height: 35%;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(245, 240, 232, 0) 0%, #F5F0E8 100%);
  }

  .vision-v2-image-wrap {
    height: 500px;
  }

  .vision-v2-content {
    padding: 3rem 1.5rem;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .vision-v2-title {
    font-size: 2.2rem;
  }

  .vision-v2-badge {
    bottom: 20px;
    left: 20px;
    padding: 15px 20px;
  }

  .vision-v2-badge .badge-num {
    font-size: 2rem;
  }
}

/* Welcome Section V2 */
.welcome-section {
  padding: 80px 6% 90px;
  max-width: 1300px;
  margin: 0 auto;
}

.eyebrow-v2 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-heading-v2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 10px;
}

.section-heading-v2 span {
  color: var(--gold);
  font-style: italic;
}

.section-sub-v2 {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 52px;
  max-width: 520px;
  line-height: 1.7;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-col {
  position: relative;
}

.image-frame {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 55%;
  height: 55%;
  border: 3px solid var(--gold);
  border-radius: 18px;
  opacity: 0.4;
  z-index: 0;
}

.image-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 56px rgba(27, 42, 74, 0.16);
}

.img-badge {
  position: absolute;
  bottom: 28px;
  left: -22px;
  z-index: 2;
  background: var(--gold);
  color: var(--navy);
  border-radius: 14px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(200, 149, 42, 0.4);
}

.img-badge .b-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.img-badge .b-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: 0.85;
}

.quote-block-v2 {
  border-left: 3px solid var(--gold);
  background: rgba(200, 149, 42, 0.07);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.text-para-v2 {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 20px;
}

.text-para-v2 strong {
  color: var(--navy);
  font-weight: 500;
}

.pills-row-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}

.pill-v2 {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(27, 42, 74, 0.05);
}

.pill-v2 i,
.pill-v2 svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  stroke-width: 1.8;
  flex-shrink: 0;
}

.cta-row-v2 {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary-v3 {
  background: var(--navy);
  color: #ffffff;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid var(--navy);
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
}

.btn-primary-v3:hover {
  background: transparent;
  color: var(--navy);
}

.btn-link-v3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: gap 0.3s;
}

.btn-link-v3:hover {
  gap: 14px;
}

.btn-link-v3 .arr-v2 {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FADE ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: 0.05s;
}

.d2 {
  transition-delay: 0.15s;
}

.d3 {
  transition-delay: 0.25s;
}

@media (max-width: 900px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .image-frame {
    display: none;
  }

  .img-badge {
    left: 12px;
    bottom: 18px;
  }
}

@media (max-width: 480px) {
  .cta-row-v2 {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* About Page Custom Styles */
.about-page main {
  background: #F5F0E8;
  /* cream bg */
}

/* SECTION 1 — Banner / Hero Header */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, #0D2235 0%, #1A3D2B 100%);
  padding: 3rem 2.5rem;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.03;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.eyebrow-gold-v2 {
  color: #C8952A;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

.about-hero-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.about-hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.about-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

.about-badge-pill i {
  color: #C8952A;
  font-size: 16px;
}

/* SECTION 2 — Foundation / Story */
.about-foundation {
  background: #ffffff;
  padding: 3rem 2.5rem;
}

.about-foundation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-foundation-image {
  position: relative;
}

.about-img-frame {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(13, 34, 53, 0.1);
}

.about-badge-gold {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: #C8952A;
  color: #ffffff;
  padding: 20px 25px;
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(200, 149, 42, 0.3);
  text-align: center;
}

.about-badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.about-badge-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-badge-white {
  position: absolute;
  top: 30px;
  right: -20px;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-badge-white i {
  color: #1A3D2B;
  font-size: 24px;
}

.about-badge-white span {
  font-size: 12px;
  font-weight: 700;
  color: #0D2235;
  line-height: 1.3;
}

.eyebrow-green-v2 {
  color: #1A3D2B;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-foundation-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #0D2235;
}

.text-gray-v2 {
  color: #555555;
  font-size: 13.5px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-blockquote-v2 {
  border-left: 3px solid #C8952A;
  background: rgba(200, 149, 42, 0.05);
  padding: 16px 20px;
  margin: 24px 0;
  font-style: italic;
  color: #555;
  font-size: 15px;
  border-radius: 0 8px 8px 0;
}

.btn-navy-pill-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0D2235;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-navy-pill-v2:hover {
  background: #1A3D2B;
  transform: translateY(-2px);
}

/* SECTION 3 — Vision & Mission Cards */
.about-vision-mission {
  background: #F5F0E8;
  padding: 3rem 2.5rem;
}

.section-header-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-header-center h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #0D2235;
}

.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-vm-card {
  position: relative;
  padding: 40px;
  border-radius: 20px;
  overflow: hidden;
  color: #ffffff;
}

.card-navy {
  background: #0D2235;
}

.card-green {
  background: #1A3D2B;
}

.vm-icon-box {
  width: 54px;
  height: 54px;
  background: rgba(200, 149, 42, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.vm-icon-box i {
  color: #E8B84B;
  font-size: 26px;
}

.about-vm-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.about-vm-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.vm-quote-gold-v2 {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  padding-left: 14px;
  border-left: 2px solid #C8952A;
}

.card-accent-bar-v2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #C8952A, #E8B84B);
}

/* SECTION 4 — Signature Approach Cards */
.about-approach {
  background: #ffffff;
  padding: 3rem 2.5rem;
}

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

.approach-card {
  position: relative;
  background: #F5F0E8;
  padding: 1.6rem;
  border-radius: 16px;
  border: 0.5px solid #e0d9cc;
  transition: 0.2s ease;
}

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

.approach-num {
  position: absolute;
  top: 20px;
  right: 25px;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #C8952A;
  opacity: 0.2;
}

.approach-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.approach-icon i {
  color: #C8952A;
  font-size: 26px;
}

.approach-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #0D2235;
  margin-bottom: 12px;
}

.approach-card p {
  color: #666666;
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .about-foundation-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

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

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-badge-gold {
    left: 10px;
  }

  .about-badge-white {
    right: 10px;
    top: 20px;
  }
}

/* Contact Page V2 Styles */
.contact-page main {
  background: #F5F3EE;
}

.contact-v2-hero {
  background: #0D2235;
  position: relative;
  overflow: hidden;
  padding: 80px 24px 70px;
  text-align: center;
}

.contact-v2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(255, 255, 255, 0.04) 48px, rgba(255, 255, 255, 0.04) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(255, 255, 255, 0.04) 48px, rgba(255, 255, 255, 0.04) 49px);
}

.contact-v2-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(212, 168, 67, 0.18), transparent 70%);
  pointer-events: none;
}

.contact-v2-hero .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.hero-label-v2 {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title-v2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-sub-v2 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 28px;
}

.hero-badges-v2 {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 7px 16px;
  border-radius: 30px;
  font-weight: 500;
}

.badge-gold-v2 {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.35);
}

.badge-white-v2 {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ── BODY ── */
.contact-body-v2 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.contact-grid-v2 {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

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

/* ── INFO CARDS ── */
.info-col-v2 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card-v2 {
  background: #ffffff;
  border: 1px solid #e5e2d9;
  border-radius: 14px;
  padding: 20px 25px;
  transition: box-shadow 0.2s;
}

.info-card-v2:hover {
  box-shadow: 0 4px 24px rgba(12, 35, 64, 0.07);
}

.info-card-header-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.icon-box-v2 {
  width: 40px;
  height: 40px;
  background: #f0f4f2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box-v2 i,
.icon-box-v2 svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  stroke-width: 1.8;
}

.info-label-v2 {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.info-value-v2 {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-left: 52px;
}

.map-link-v2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  margin-left: 52px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px dashed rgba(26, 58, 42, 0.3);
  padding-bottom: 1px;
}

.wa-btn-v2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  margin-left: 52px;
  background: #25D366;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: opacity 0.2s;
}

.wa-btn-v2:hover {
  opacity: 0.88;
}

.social-row-v2 {
  display: flex;
  gap: 10px;
  margin-left: 52px;
  margin-top: 10px;
}

.social-icon-v2 {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
  color: white;
}

.social-icon-v2:hover {
  opacity: 0.82;
}

.social-icon-v2 i {
  font-size: 17px;
}

.fb-v2 {
  background: #1877F2;
}

.ig-v2 {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.yt-v2 {
  background: #FF0000;
}

.wa-v2 {
  background: #25D366;
}

/* ── FORM CARD ── */
.form-card-v2 {
  background: #ffffff;
  border: 1px solid #e5e2d9;
  border-radius: 14px;
  padding: 35px;
}

.form-title-v2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-subtitle-v2 {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 25px;
}

.form-row-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group-v2 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-v2 label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.form-group-v2 input,
.form-group-v2 select,
.form-group-v2 textarea {
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  background: #f9f8f5;
  border: 1px solid #e5e2d9;
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-group-v2 input:focus,
.form-group-v2 select:focus,
.form-group-v2 textarea:focus {
  border-color: var(--navy);
  background: white;
}

.form-group-v2 textarea {
  resize: vertical;
  min-height: 120px;
}

.form-full-v2 {
  margin-bottom: 16px;
}

.btn-submit-v2 {
  width: 100%;
  background: var(--navy);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.1s;
  margin-bottom: 15px;
}

.btn-submit-v2:hover {
  background: #0a1d33;
}

.btn-submit-v2:active {
  transform: scale(0.99);
}

.btn-row-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-wa-v2,
.btn-admission-v2 {
  font-size: 13px;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s;
  text-decoration: none;
}

.btn-wa-v2:hover,
.btn-admission-v2:hover {
  opacity: 0.88;
}

.btn-wa-v2 {
  background: #25D366;
  color: white;
}

.btn-admission-v2 {
  background: var(--gold);
  color: #ffffff;
}

/* ── MAP SECTION ── */
.map-section-v2 {
  background: #ffffff;
  border: 1px solid #e5e2d9;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 30px;
}

.map-top-v2 {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e2d9;
  flex-wrap: wrap;
  gap: 15px;
}

.map-address-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-address-v2 i {
  font-size: 20px;
  color: var(--green);
}

.map-address-v2 p {
  font-size: 13px;
  color: var(--muted);
}

.map-address-v2 strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.open-maps-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s;
}

.open-maps-v2:hover {
  background: #0a1d33;
}

.map-embed-v2 {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

@media (max-width: 600px) {
  .btn-row-v2 {
    grid-template-columns: 1fr;
  }

  .form-row-v2 {
    grid-template-columns: 1fr;
  }
}

/* ── INTEGRATED PROGRAM SECTION ── */
.integrated-program-section {
  background: var(--cream);
}

.section-header-v3 {
  text-align: center;
  margin-bottom: 50px;
}

.section-label-v3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title-v3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.integrated-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 1024px) {
  .integrated-grid {
    grid-template-columns: 1fr;
  }
}

/* ── FORM CARD V3 ── */
.form-card-v3 {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(13, 34, 53, 0.05);
}

.form-header-v3 {
  background: var(--navy);
  padding: 20px 30px;
}

.form-header-label-v3 {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 2.5px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.form-header-title-v3 {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.progress-bar-v3 {
  display: flex;
  background: #fafafa;
  border-bottom: 1px solid var(--border);
}

.progress-step-v3 {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}

.progress-step-v3.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.progress-step-v3.done {
  color: var(--green);
  border-bottom-color: var(--green);
}

.form-body-v3 {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row-v3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group-v3 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-v3 label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group-v3 input,
.form-group-v3 select,
.form-group-v3 textarea {
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  background: #f9f8f5;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-group-v3 input:focus,
.form-group-v3 select:focus,
.form-group-v3 textarea:focus {
  border-color: var(--navy);
  background: white;
}

.form-group-v3 textarea {
  min-height: 90px;
  resize: vertical;
}

.btn-next-v3 {
  width: 100%;
  background: var(--gold);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-next-v3:hover {
  background: #b68524;
  transform: translateY(-2px);
}

.btn-back-v3 {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.btn-submit-v4 {
  width: 100%;
  background: var(--green);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.trust-row-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.trust-badge-v3 {
  background: #f9f8f5;
  padding: 15px 10px;
  border-radius: 10px;
  text-align: center;
}

.trust-number-v3 {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}

.trust-label-v3 {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}

/* ── INFO COL V3 ── */
.integrated-info-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-tag-v3 {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.info-title-v3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 15px;
}

.info-desc-v3 {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.urgency-badge-v3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff8e6;
  border: 1px solid #ffeeba;
  color: #856404;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

.program-card-grid-v3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .program-card-grid-v3 {
    grid-template-columns: 1fr;
  }
}

.program-card-v3 {
  background: white;
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  padding: 25px;
  border-radius: 0 0 12px 12px;
}

.program-card-v3.neet {
  border-top-color: var(--green);
}

.card-title-v3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 15px;
}

.program-checklist-v3 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.program-checklist-v3 li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.program-checklist-v3 li i {
  color: var(--green);
  font-size: 14px;
}

.schedule-card-v3 {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 25px;
}

.schedule-header-v3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.schedule-row-v3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.schedule-row-v3:last-child {
  border-bottom: none;
}

.day-v3 {
  font-size: 14px;
  color: var(--muted);
}

.time-v3 {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 30px;
}

.green-tag {
  background: #e8f5e9;
  color: #2e7d32;
}

.gold-tag {
  background: #fff8e1;
  color: #f57f17;
}

/* Review Summary */
.confirm-summary-v3 {
  background: #f9f8f5;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.summary-item-v3 {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.summary-item-v3:last-child {
  border-bottom: none;
}

.summary-item-v3 span:first-child {
  color: var(--muted);
  font-weight: 600;
}

.summary-item-v3 span:last-child {
  color: var(--navy);
  font-weight: 700;
}

.step-success-header-v3 {
  text-align: center;
  margin-bottom: 25px;
}

.success-icon-v3 {
  width: 60px;
  height: 60px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--green);
}

.success-title-v3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.success-desc-v3 {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 760px) {

  html,
  body {
    overflow-x: hidden;
  }

  .topbar {
    padding: 8px 0;
  }

  .topbar-contact {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .topbar-contact .separator {
    display: none;
  }

  .topbar a {
    min-width: 0;
    font-size: 12px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .nav-inner {
    min-height: 76px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .hero-banner {
    height: auto;
    min-height: calc(100svh - 76px);
  }

  .hero-slide {
    min-height: calc(100svh - 76px);
    align-items: center;
    padding: 54px 0 160px;
  }

  .hero-content {
    width: 100%;
    max-width: 380px;
    padding: 0 15px;
  }

  .hero-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
  }

  .hero-content h1 {
    font-size: clamp(2.25rem, 13vw, 3.25rem);
    line-height: 0.96;
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
  }

  .btn-learn {
    width: min(100%, 260px);
    justify-content: center;
    padding: 13px 20px;
    text-align: center;
  }

  .hero-controls {
    right: 50%;
    bottom: calc(100px + env(safe-area-inset-bottom));
    transform: translateX(50%);
  }

  .ctrl-btn {
    width: 44px;
    height: 44px;
  }

  .education .two-col,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .education-panel {
    min-height: 260px;
    padding: 46px 24px;
  }

  .education .section-heading,
  .education .stats-row,
  .education .mission-actions {
    width: 100%;
  }

  .education h2 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .mission-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-learn-more,
  .btn-visit-link {
    justify-content: center;
    width: 100%;
    margin-left: 0;
  }


}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero-content {
    max-width: 320px;
  }

  .integrated-program-section .container {
    width: min(100% - 20px, 1180px);
  }

  .form-body-v3,
  .form-header-v3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .progress-step-v3 {
    font-size: 10px;
  }

  .schedule-row-v3 {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/* Exam CTA and footer refinement */
.exam-cta {
  position: relative;
  padding: clamp(72px, 8vw, 112px) 0 0;
  background:
    radial-gradient(circle at 78% 14%, rgba(212, 168, 67, 0.18), transparent 25%),
    linear-gradient(130deg, #0c2340 0%, #173343 46%, #315c50 100%);
}

.cta-inner {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(42px, 6vw, 84px);
}

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

.exam-cta h2 {
  max-width: 780px;
  font-size: clamp(44px, 4.8vw, 74px);
  line-height: 1.04;
  text-wrap: balance;
}

.exam-cta p {
  max-width: 720px;
  margin: 28px 0 28px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}

.exam-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
}

.exam-link svg,
.exam-link i {
  width: 28px;
  height: 28px;
  transition: transform 220ms ease;
}

.exam-link:hover svg,
.exam-link:hover i {
  transform: translateX(5px);
}

.cta-panel {
  min-height: 360px;
  height: clamp(330px, 30vw, 430px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 66% 24%, rgba(212, 168, 67, 0.28), transparent 25%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
}

.cta-panel strong {
  font-size: clamp(40px, 4.1vw, 68px);
  text-align: center;
}

.cta-panel span {
  font-size: clamp(16px, 1.4vw, 22px);
}

.memory-line {
  margin-top: clamp(52px, 7vw, 86px);
  opacity: 0.82;
  pointer-events: none;
}

.footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #0e1025 0%, #0b0d1f 100%);
}

.footer::before {
  content: "Endless friendships, unforgettable memories";
  position: absolute;
  top: -24px;
  left: -48px;
  right: -48px;
  color: rgba(255, 255, 255, 0.06);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(78px, 9vw, 148px);
  font-weight: 800;
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
}

.footer-grid,
.copyright {
  position: relative;
  z-index: 1;
}

.footer-grid {
  padding: clamp(58px, 7vw, 86px) 0 58px;
  gap: clamp(42px, 6vw, 84px);
}

.footer-brand {
  width: 132px;
  height: 132px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 28px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.footer .brand-logo {
  width: 104px;
  height: 104px;
}

.footer h3 {
  font-size: clamp(24px, 2vw, 32px);
  margin-bottom: 24px;
}

.footer p,
.footer-list li {
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.55;
}

.footer-list {
  gap: 22px;
}

.footer-social {
  gap: 14px;
}

.footer-social a {
  width: 46px;
  height: 46px;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.footer-social a:hover {
  background: rgba(212, 168, 67, 0.16);
  border-color: rgba(212, 168, 67, 0.58);
  transform: translateY(-2px);
}

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

  .exam-copy {
    max-width: none;
  }

  .cta-panel {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .exam-cta {
    padding-top: 64px;
  }

  .exam-cta h2 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .exam-cta p {
    font-size: 16px;
    margin: 20px 0 24px;
  }

  .cta-panel {
    height: auto;
    min-height: 260px;
    padding: 46px 18px;
    margin-bottom: 20px;
  }

  .cta-panel strong {
    font-size: clamp(34px, 12vw, 44px);
  }

  .memory-line {
    margin-top: 44px;
    font-size: clamp(44px, 16vw, 72px);
    white-space: nowrap;
  }

  .footer::before {
    top: -10px;
    left: -18px;
    font-size: 72px;
    white-space: normal;
  }

  .footer-grid {
    padding-top: 72px;
    text-align: left;
  }
}

/* Footer Improvements */
.footer-link-v2 {
  transition: color 0.3s ease;
}

.footer-link-v2:hover {
  color: #C9A84C !important;
}


/* Final polish: corrected navigation, logo sizing, landing page, loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  gap: 18px;
  align-content: center;
  background: #fffdf8;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.page-loader img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  animation: loaderRise 900ms ease both;
}

.page-loader span {
  width: 164px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #eadfca;
}

.page-loader span::before {
  content: "";
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  animation: loaderTrack 1.1s ease-in-out infinite;
}

body.is-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.is-loaded-immediate .page-loader {
  display: none !important;
  transition: none !important;
}

@keyframes loaderRise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderTrack {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(260%);
  }
}


/* Mobile Header & Footer Optimizations */
@media (max-width: 768px) {

  .topbar-contact .separator {
    display: none;
  }

  .topbar-contact {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .topbar-contact a {
    font-size: 11px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 16px;
    gap: 4px;
  }

  .nav-inner {
    min-height: 65px !important;
    padding: 0 15px;
  }

  .brand-logo {
    height: 55px !important;
  }

  .footer-grid-v2 {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 30px !important;
  }

  .footer-grid-v2>div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-grid-v2 ul {
    align-items: center;
  }

  .nav-actions {
    display: none;
    /* Hide button on very small screens to save space */
  }
}


/* Cinematic Splash Screen */
body.has-splash:not(.is-loaded) {
  overflow: hidden;
}

body.has-splash:not(.is-loaded) .site-header,
body.has-splash:not(.is-loaded) main,
body.has-splash:not(.is-loaded) .float-whatsapp,
body.has-splash:not(.is-loaded) .float-admission {
  opacity: 0;
}

body.has-splash.is-loaded .site-header,
body.has-splash.is-loaded main,
body.has-splash.is-loaded .float-whatsapp,
body.has-splash.is-loaded .float-admission {
  opacity: 1;
  transition: opacity 700ms ease;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0f2044 !important;
  /* Forces dark navy */
  transition: opacity 900ms cubic-bezier(0.4, 0, 0.2, 1), visibility 900ms;
}

body.is-loaded .splash-screen {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-content {
  text-align: center;
  width: 100%;
  max-width: 500px;
  padding: 32px;
}

.splash-logo {
  width: 100%;
  height: auto;
  max-width: min(320px, 78vw);
  margin-bottom: 35px;
  overflow: visible;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.28));
}

/* 1. Shield Outline - 0.5s */
.draw-path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawStroke 0.5s forwards ease-in-out;
}

@keyframes drawStroke {
  to {
    stroke-dashoffset: 0;
  }
}

/* Basic fade element */
.fade-in-element {
  opacity: 0;
  animation: fadeInElement 0.55s forwards ease-out;
}

@keyframes fadeInElement {
  to {
    opacity: 1;
  }
}

/* 2. Gold Top Border - 0.8s */
.gold-bar {
  animation-delay: 0.8s;
}

.gold-border {
  animation-delay: 0.8s;
}

/* 3. T Letter - 1s */
.fade-in-down-element {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDownElement 0.55s forwards ease-out;
}

@keyframes fadeInDownElement {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.letter-t {
  animation-delay: 1.0s;
}

/* 4. Gold Curved Line - 1.2s */
.gold-arc {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawStroke 0.5s forwards ease-in-out;
  animation-delay: 1.2s;
}

/* 5. TRESAS text - 1.4s */
.text-tresas {
  animation-delay: 1.4s;
}

/* 6. MATRICULATION SCHOOL - 1.6s */
.text-school {
  animation-delay: 1.6s;
}

/* 7. Nagercoil - 1.8s */
.text-location {
  animation-delay: 1.8s;
}

/* 8. Gold loading bar - 2s */
.loading-bar-container {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 0 22px rgba(201, 168, 76, 0.16);
}

.loading-bar-progress {
  width: 0%;
  height: 100%;
  background: #C9A84C;
  animation: fillBar 1.5s forwards ease-in-out;
  animation-delay: 2.0s;
}

@keyframes fillBar {
  to {
    width: 100%;
  }
}

/* Immediate load if already seen */
body.is-loaded-immediate .splash-screen {
  display: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  body.has-splash:not(.is-loaded) {
    overflow: auto;
  }

  .draw-path,
  .fade-in-element,
  .fade-in-down-element,
  .gold-arc,
  .loading-bar-progress {
    animation-duration: 1ms !important;
    animation-delay: 0ms !important;
  }

  .splash-screen {
    transition-duration: 1ms;
  }
}

@media (max-width: 480px) {
  .splash-logo {
    max-width: 285px;
    margin-bottom: 28px;
  }
}

/* Simple Admission Enquiry Form Section */
.admission-enquiry-section {
  background: #fdfbf7;
}

.enquiry-card-simple {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(212, 168, 67, 0.2);
  margin-top: 40px;
}

.enquiry-grid-simple {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.enquiry-info-simple {
  background: var(--navy);
  color: #fff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enquiry-info-simple .eyebrow {
  color: var(--gold);
  margin-bottom: 15px;
}

.enquiry-info-simple h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 38px;
  font-family: "Playfair Display", serif;
}

.enquiry-info-simple p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 40px;
}

.enquiry-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item-simple {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item-simple i {
  color: var(--gold);
  width: 20px;
  height: 20px;
}

.contact-item-simple span {
  font-weight: 600;
  font-size: 15px;
}

.enquiry-form-wrapper {
  padding: 60px;
}

.form-row-simple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

/* For single column rows */
.enquiry-form-wrapper .form-row-simple:first-child {
  grid-template-columns: 1fr;
}

/* For grade seeking row */
.enquiry-form-wrapper .form-row-simple:nth-child(3) {
  grid-template-columns: 1fr;
}

.form-group-simple {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-simple label {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.form-group-simple input,
.form-group-simple select,
.form-group-simple textarea {
  padding: 14px 18px;
  border: 1px solid #e5e0d4;
  border-radius: 10px;
  font-size: 15px;
  color: var(--ink);
  background: #fdfdfd;
  transition: all 0.3s ease;
}

.form-group-simple input:focus,
.form-group-simple select:focus,
.form-group-simple textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.1);
}

.form-group-simple textarea {
  height: 120px;
  resize: vertical;
  margin-bottom: 30px;
}

.btn-submit-simple {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit-simple:hover {
  background: #c19632;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 168, 67, 0.3);
}

.btn-submit-simple i {
  width: 18px;
  height: 18px;
}

@media (max-width: 992px) {
  .enquiry-grid-simple {
    grid-template-columns: 1fr;
  }

  .enquiry-info-simple {
    padding: 40px;
  }

  .enquiry-form-wrapper {
    padding: 40px;
  }
}

@media (max-width: 600px) {
  .form-row-simple {
    grid-template-columns: 1fr !important;
  }

  .enquiry-info-simple h2 {
    font-size: 30px;
  }

  .enquiry-info-simple,
  .enquiry-form-wrapper {
    padding: 30px 20px;
  }
}

/* Admission Page Specific Styles */
.page-hero-admission {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 120px 0 80px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-admission::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-admission-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-admission-content h1 {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 24px;
  color: #fff;
  font-family: "Playfair Display", serif;
}

.hero-admission-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.enquiry-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
  text-align: left;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.highlight-item i {
  color: var(--gold);
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .page-hero-admission {
    padding: 80px 0 60px;
  }
}