/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0d1b2a;
  --navy-2:  #112236;
  --navy-3:  #0a1520;
  --gold:    #c9a84c;
  --gold-light: #e4c76b;
  --gold-dark: #a8872e;
  --cream:   #f7f3eb;
  --cream-2: #ede8dc;
  --white:   #ffffff;
  --text-dark: #1a1a2e;
  --text-mid:  #3d3d5c;
  --text-light: #6b6b8a;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Outfit', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── UTILITIES ── */
.gold-text { color: var(--gold); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }

.section-header { text-align: center; max-width: 660px; margin: 0 auto 3.5rem; }
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: var(--navy-3);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.5);
  filter: brightness(1.05);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
}
.btn-lg { padding: 0.9rem 2.2rem; font-size: 1rem; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.9rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  padding: 0.6rem 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.logo-tagline {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); background: rgba(201,168,76,0.1); }
.nav-cta { flex-shrink: 0; }
.nav-mobile-cta { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy) 40%, #1a2f4a 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(26,47,74,0.6) 0%, transparent 50%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(201,168,76,0.04) 0%, transparent 40%);
}
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem 7rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 1.75rem;
}
.subject-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.chip {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ── BATCH CARD ── */
.hero-right { position: relative; }
.batch-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.25);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  z-index: 2;
}
.batch-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.batch-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 12px;
  color: var(--gold);
  flex-shrink: 0;
}
.batch-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.batch-date {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.batch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.batch-row:last-child { border-bottom: none; }
.batch-key {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.batch-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}
.floating-pill {
  position: absolute;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pill-1 { top: -1.5rem; left: -2.5rem; animation-delay: 0s; }
.pill-2 { top: 40%; right: -3rem; animation-delay: 1.4s; }
.pill-3 { bottom: -1.5rem; left: -1.5rem; animation-delay: 2.8s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── HIGHLIGHTS BAR ── */
.highlights-bar {
  background: var(--cream);
  border-top: 3px solid var(--gold);
  padding: 1.5rem 0;
}
.highlights-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 1.5rem;
}
.hi-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.hi-divider {
  width: 1px;
  height: 30px;
  background: var(--cream-2);
}

/* ── COURSES ── */
.courses-section { background: var(--cream); }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}
.course-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: var(--transition);
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-card:hover::before { opacity: 1; }
.course-card.featured {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 4px 20px rgba(201,168,76,0.1);
}
.course-card.featured::before { opacity: 1; }
.course-badge-label {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-3);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.course-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--navy-3);
  flex-shrink: 0;
}
.course-card.featured .course-icon-wrap {
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.course-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.course-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.course-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.course-features li {
  font-size: 0.84rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.course-features .check-icon {
  color: var(--gold-dark);
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

/* ── WHY US ── */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid transparent;
}
.why-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.why-icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.08) 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold-dark);
  transition: var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, rgba(201,168,76,0.28) 0%, rgba(201,168,76,0.15) 100%);
  border-color: rgba(201,168,76,0.5);
}
.why-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ── RESULTS ── */
.results-section {
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy) 60%, #1a2f4a 100%);
  position: relative;
  overflow: hidden;
}
.results-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
}
.results-section .container { position: relative; z-index: 1; }
.results-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.result-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition);
}
.result-stat-card:hover {
  background: rgba(201,168,76,0.08);
  transform: translateY(-4px);
}
.result-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.result-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.toppers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.topper-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}
.topper-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.4);
}
.topper-avatar {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-3);
  flex-shrink: 0;
}
.topper-info { flex: 1; }
.topper-info h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.topper-score {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
}
.topper-year {
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  margin-top: 0.15rem;
}
.topper-badge {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  font-family: var(--font-sans);
}
.rank-1 { background: linear-gradient(135deg, #FFD700, #FFA500); color: #1a1208; }
.rank-2 { background: linear-gradient(135deg, #D0D0D0, #A8A8A8); color: #1a1a2e; }
.rank-3 { background: linear-gradient(135deg, #CD7F32, #A0522D); color: #fff; }
.rank-star { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy-3); }

/* ── FACULTY ── */
.faculty-section { background: var(--cream); }
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.faculty-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.faculty-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.faculty-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  border: 3px solid rgba(201,168,76,0.3);
}
.faculty-av-1 { background: linear-gradient(135deg, #1a3a5c, #2a5a8c); }
.faculty-av-2 { background: linear-gradient(135deg, #3d1a5c, #6a2a8c); }
.faculty-av-3 { background: linear-gradient(135deg, #1a4a2a, #2a7a4a); }
.faculty-info h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.faculty-subject {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.faculty-exp {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.faculty-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
.ftag {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--white); }
.testimonials-track-wrapper {
  overflow: hidden;
  position: relative;
  padding-bottom: 1rem;
}
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-width: 340px;
  max-width: 340px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  flex-shrink: 0;
}
.testi-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy-3);
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.88rem; color: var(--text-dark); }
.testi-author span { font-size: 0.75rem; color: var(--text-light); }
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.testi-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testi-btn:hover {
  background: var(--gold);
  color: var(--navy-3);
  border-color: var(--gold);
}
.testi-dots { display: flex; gap: 0.5rem; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  transition: var(--transition);
  cursor: pointer;
}
.testi-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ── ABOUT ── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-milestones {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-2);
}
.milestone {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.m-year {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  min-width: 50px;
}
.m-text { font-size: 0.88rem; color: var(--text-mid); }
.about-img-frame {
  position: relative;
  background: linear-gradient(135deg, var(--navy-3), var(--navy));
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.about-logo-large {
  width: 220px;
  height: 220px;
  object-fit: contain;
}
.about-card-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-card-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.about-card-float span:last-child {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ── ADMISSIONS ── */
.admissions-section {
  background: linear-gradient(135deg, var(--navy-3), var(--navy));
}
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  transition: var(--transition);
}
.step-card:hover {
  background: rgba(201,168,76,0.08);
  transform: translateY(-4px);
}
.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 0.75rem;
}
.step-card h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.step-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.step-arrow {
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.4;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  margin-top: 2.5rem;
}
.admission-form-wrapper {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group select { appearance: none; }
.form-group select option { background: var(--navy); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.form-group { margin-bottom: 0; }
.admission-form-wrapper .form-group:not(.form-row .form-group) { margin-bottom: 1.25rem; }
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.success-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--navy-3);
  font-weight: 700;
  margin: 0 auto 1.25rem;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-success p { color: rgba(255,255,255,0.65); }

/* ── CONTACT ── */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy-3), var(--navy));
  border-radius: 10px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
.whatsapp-btn { gap: 0.6rem; }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}
.contact-map { display: flex; flex-direction: column; }
.map-embed-wrap { border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; border: 1px solid rgba(0,0,0,0.07); border-bottom: none; box-shadow: var(--shadow-lg); line-height: 0; }
.map-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.map-card-visual {
  position: relative;
  height: 240px;
  background:
    linear-gradient(rgba(247,243,235,0.4), rgba(247,243,235,0.4)),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(201,168,76,0.12) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(201,168,76,0.12) 40px);
  background-color: #e8f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-grid-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(100,150,100,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,150,100,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.map-pin-pulse {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
  animation: mapPulse 2s ease-out infinite;
}
@keyframes mapPulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}
.map-pin { position: relative; z-index: 3; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25)); }
.map-label-bubble {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.map-card-info {
  padding: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.map-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.map-info-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.map-info-addr {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}
.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  padding: 0.65rem 1.4rem;
  align-self: flex-start;
}
.map-hint {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: -0.25rem;
}

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(201,168,76,0.3); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  gap: 1rem;
  transition: var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-arrow {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 1.5rem 1.25rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy-3);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.55);
}
.footer-socials { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
}
.footer-links-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-col ul li,
.footer-links-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: block;
}
.footer-links-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(10, 20, 32, 0.98);
  border-top: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-sans);
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(201,168,76,0.1); color: var(--gold); }
.mobile-menu-cta {
  margin-top: 0.5rem;
  text-align: center !important;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%) !important;
  color: var(--navy-3) !important;
  font-weight: 700 !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem !important;
  border-radius: 8px !important;
}
body.menu-open { overflow: hidden; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; padding-bottom: 5rem; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-right { display: none; }
  .results-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .results-stats { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: 280px; max-width: 280px; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .highlights-container { gap: 0; justify-content: flex-start; overflow-x: auto; }
  .hi-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat-divider { display: none; }
  .courses-grid { grid-template-columns: 1fr; }
  .faculty-grid { grid-template-columns: 1fr; }
  .results-stats { grid-template-columns: 1fr 1fr; }
}

/* ── EXTRA UTILITIES ── */
.why-title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text-dark); }
.why-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

.testi-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.testi-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.5rem; }
.testi-name { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.testi-detail { display: block; font-size: 0.75rem; color: var(--text-light); }

.faculty-name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.35rem; }

.whatsapp-cta { margin-top: 0.5rem; }
.whatsapp-cta .btn { width: 100%; justify-content: center; }

/* Floating WhatsApp Button */
.float-whatsapp {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}

/* About extra */
.about-right { display: flex; flex-direction: column; }
.about-desc { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 0.5rem; }
.about-points { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.5rem; }
.about-points li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; color: var(--text-mid); }
.about-check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.about-badge-card { background: var(--white); border: 2px solid rgba(201,168,76,0.3); border-radius: var(--radius); padding: 1rem 1.25rem; display: flex; flex-direction: column; align-items: center; box-shadow: var(--shadow-lg); text-align: center; }
.about-badge-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge-text { font-size: 0.78rem; color: var(--text-light); margin-top: 0.25rem; }
