/* =====================
   GOOGLE FONT
===================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =====================
   RESET & BASE
===================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html { scroll-behavior: auto; }

body {
  background: #f7f9fc;
  overflow-x: hidden;
  color: #222;
}

/* =====================
   CSS VARIABLES
===================== */

:root {
  --primary:   #0b1f3a;
  --secondary: #f4b400;
  --white:     #ffffff;
  --light:     #f7f9fc;
  --text:      #333333;
}

/* =====================
   NAVBAR
===================== */

.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 3%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(11, 31, 58, 0.10);
  z-index: 1000;
  gap: 10px;
  border-bottom: 2.5px solid #f4b400;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}

.logo-area img {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: white;
  padding: 3px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  border: 2px solid #f4b400;
}

.logo-area > .logo-text { display: flex; flex-direction: column; min-width: 0; }
.logo-area h2 { color: #0b1f3a; font-size: 15px; font-weight: 800; white-space: nowrap; line-height: 1.2; letter-spacing: 0.5px; }
.logo-area p  { color: #f4b400; font-size: 10px; white-space: nowrap; line-height: 1.2; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; gap: 2px; list-style: none; flex-wrap: nowrap; }
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 11.5px;
  white-space: nowrap;
  transition: color .25s, background .25s;
  position: relative;
  padding: 6px 8px;
  border-radius: 6px;
}
.nav-links a:hover { color: #f4b400; background: #fffbea; }
.nav-links a.nav-active,
.nav-links li:first-child a { color: #f4b400; font-weight: 700; }
.nav-links li:first-child a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 8px;
  width: calc(100% - 16px);
  height: 2px;
  background: #f4b400;
  border-radius: 2px;
}

.call-btn {
  padding: 10px 20px;
  background: #0b1f3a;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform .3s, background .3s, box-shadow .3s;
  box-shadow: 0 4px 14px rgba(11,31,58,.25);
}
.call-btn:hover { transform: translateY(-2px); background: #f4b400; color: #000; box-shadow: 0 6px 20px rgba(244,180,0,.4); }

/* =====================
   HERO SECTION (old - kept for reference)
===================== */

.hero {
  min-height: 700px;
  padding: 140px 8% 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  background:
    linear-gradient(rgba(11,31,58,.92), rgba(11,31,58,.92)),
    url(images/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-left { width: 55%; }
.hero-left .hero-since { font-size: 14px; font-weight: 600; letter-spacing: 3px; color: var(--secondary); margin-bottom: 10px; }
.hero-left h1 { font-size: 72px; margin-bottom: 20px; line-height: 1.1; }
.hero-left h1 span { color: var(--secondary); }
.hero-left h3 { font-size: 28px; line-height: 1.4; margin-bottom: 15px; }
.hero-left p  { font-size: 18px; line-height: 1.8; margin-bottom: 10px; }
.hero-tagline { font-size: 16px; font-weight: 600; color: var(--secondary); margin-bottom: 25px; }

.hero-buttons { display: flex; gap: 15px; margin-top: 10px; flex-wrap: wrap; }

.btn-primary {
  background: var(--secondary);
  padding: 14px 30px;
  border-radius: 35px;
  color: black;
  text-decoration: none;
  font-weight: 600;
  transition: transform .3s;
}

.btn-demo {
  background: transparent;
  border: 2px solid var(--secondary);
  padding: 14px 30px;
  border-radius: 35px;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: transform .3s, background .3s, color .3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-demo:hover {
  background: var(--secondary);
  color: black;
  transform: translateY(-3px);
}

.btn-secondary {
  border: 2px solid white;
  padding: 14px 30px;
  border-radius: 35px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: transform .3s;
}

.btn-primary:hover,
.btn-secondary:hover { transform: translateY(-3px); }

.hero-right { width: 40%; }
.hero-right img {
  width: 100%;
  max-width: 650px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

.hero-logo {
  width: 120px;
  margin-bottom: 20px;
  background: #fff;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,.2);
}

/* =====================
   PREMIUM HERO (active)
===================== */

.hero-new {
  padding-top: 70px;
  padding-bottom: 0;
  background: #f4f6f9;
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: 600px;
  position: relative;
}

.hero-left {
  width: 50%;
  flex-shrink: 0;
  padding: 20px 4% 30px 6%;
  position: relative;
  z-index: 3;
}

.hero-badge { display: none; }

.hero-left h1 {
  font-size: 90px;
  line-height: .9;
  font-weight: 800;
  color: #0b1f3a;
  margin-bottom: 10px;
}
.hero-left h1 span { color: #f4b400; }

.hero-left h2 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #555;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  line-height: 1.6;
}
.hero-left h2::before,
.hero-left h2::after {
  content: '';
  flex: 0 0 30px;
  height: 2px;
  background: #f4b400;
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-description {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 28px;
  border-left: 4px solid #f4b400;
  padding-left: 16px;
}
.hero-description strong {
  color: #0b1f3a;
  font-weight: 700;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  margin-bottom: 24px;
  width: fit-content;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #0b1f3a;
  white-space: nowrap;
}
.feature-item i { color: #f4b400; font-size: 20px; flex-shrink: 0; }

.hero-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  border-left: 4px solid #f4b400;
  padding-left: 16px;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: center;
}

.hero-btn-primary {
  background: #f4b400;
  color: #000;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .3s, box-shadow .3s;
}
.hero-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(244,180,0,.35); }

.hero-btn-outline {
  border: 2px solid #0b1f3a;
  color: #0b1f3a;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-btn-outline:hover { transform: translateY(-3px); }

.hero-btn-whatsapp {
  border: 2px solid #25D366;
  color: #25D366;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-btn-whatsapp:hover { transform: translateY(-3px); }

/* Right side image - D-shape: left curved, right bleeds off screen */
.hero-right {
  position: absolute;
  right: -50px;
  top: -60px;
  bottom: 0;
  width: 600px;
  z-index: 2;
}

.hero-right img {
  width: 580px;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50% 0 0 50% / 50% 0 0 50%;
  display: block;
  border-left: 4px solid #f4b400;
  border-top: 4px solid #f4b400;
  border-bottom: 4px solid #f4b400;
  border-right: none;
}

/* Hero brand (legacy) */
.hero-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.hero-brand-text { flex: 1; min-width: 0; }
.hero-brand-text h1 { margin: 0; }
.hero-since {
  margin-top: 5px;
  font-size: 16px;
  letter-spacing: 2px;
  color: #f4b400;
  font-weight: 600;
}

/* =====================
   STATS SECTION — Animated
===================== */

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #0b1f3a;
  padding: 28px 6%;
  gap: 0;
  border-radius: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.stat-box {
  background: transparent;
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-box:last-child { border-right: none; }
.stat-box i  { font-size: 32px; color: var(--secondary); flex-shrink: 0; }
.stat-box > div { text-align: left; }
.stat-box h2 { color: white; font-size: 32px; margin-bottom: 2px; line-height: 1; }
.stat-box p  { color: #aabbcc; font-size: 13px; }

/* =====================
   SECTION TITLE
===================== */

.section-title {
  text-align: center;
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 50px;
  position: relative;
}
.section-title::after {
  content: '';
  width: 100px; height: 4px;
  background: var(--secondary);
  position: absolute;
  left: 50%; bottom: -10px;
  transform: translateX(-50%);
}

/* =====================
   ABOUT SECTION
===================== */

.about-section {
  padding: 90px 8%;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(244,180,0,0.06);
  border-radius: 50%;
}

.container { display: flex; justify-content: space-between; align-items: center; gap: 70px; position: relative; z-index: 1; }
.about-left { flex: 1; }

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff4d0;
  color: #b8860b;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid #f4b40040;
}
.about-badge i { color: #f4b400; }

.about-left h2 {
  font-size: 40px;
  color: #0b1f3a;
  margin-bottom: 14px;
  line-height: 1.2;
  font-weight: 800;
}
.about-left h2 span { color: #f4b400; }

.about-lead {
  font-size: 17px;
  color: #f4b400;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-left p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
}
.about-left p strong { color: #0b1f3a; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0 28px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #0b1f3a;
}
.highlight-item i { color: #f4b400; font-size: 15px; flex-shrink: 0; }

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #0b1f3a;
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  transition: transform .3s, background .3s, box-shadow .3s;
  box-shadow: 0 4px 14px rgba(11,31,58,.25);
}
.about-btn:hover { transform: translateY(-3px); background: #f4b400; color: #000; box-shadow: 0 8px 24px rgba(244,180,0,.35); }

.about-right { flex: 1; position: relative; }
.about-right img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  border: 3px solid rgba(244,180,0,0.3);
}

/* =====================
   VISION & MISSION
===================== */

.vision-section {
  padding: 80px 8%;
  background: #0b1f3a;
  position: relative;
  overflow: hidden;
}
.vision-section::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 350px; height: 350px;
  background: rgba(244,180,0,0.05);
  border-radius: 50%;
}

.vision-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.vision-tag {
  display: inline-block;
  background: rgba(244,180,0,0.15);
  color: #f4b400;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(244,180,0,0.3);
}
.vision-header .section-title {
  color: #ffffff;
  margin-bottom: 14px;
}
.vision-header .section-title::after { background: #f4b400; }
.vision-subtitle {
  color: #aabbcc;
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.vision-card {
  background: rgba(255,255,255,0.05);
  padding: 40px 35px;
  border-radius: 20px;
  border: 1px solid rgba(244,180,0,0.2);
  transition: transform .3s, background .3s;
}
.vision-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
}

.vision-icon {
  width: 60px; height: 60px;
  background: rgba(244,180,0,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(244,180,0,0.3);
}
.vision-icon i { font-size: 26px; color: #f4b400; }

.vision-card h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
}
.vision-card p {
  color: #aabbcc;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 20px;
}
.vision-points {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vision-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #f4b400;
}
.vision-points li i { font-size: 11px; }

/* =====================
   COURSES SECTION
===================== */

.courses-section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}
.course-subtitle {
  text-align: center;
  max-width: 800px;
  margin: -30px auto 40px;
  font-size: 18px; color: #666; line-height: 1.8;
}
.courses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 25px; }
.course-card {
  background: #fff;
  padding: 30px 25px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  border-top: 5px solid var(--secondary);
  transition: transform .4s, box-shadow .4s, border-top-color .4s;
}
.course-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(11,31,58,.15); border-top-color: var(--primary); }
.course-card .icon {
  width: 80px; height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  margin: 0 auto 20px;
}
.course-card .icon i { font-size: 35px; color: var(--secondary); }
.course-card h3 { font-size: 22px; margin-bottom: 12px; color: var(--primary); }
.course-card p  { line-height: 1.8; color: #555; }

/* =====================
   WHY CHOOSE US
===================== */

.why-section { padding: 100px 8%; background: #ffffff; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 25px; }
.why-card {
  background: #fff;
  padding: 35px 25px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: .4s;
  border-top: 5px solid var(--secondary);
}
.why-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(11,31,58,.15); }
.why-card i  { font-size: 45px; color: var(--secondary); margin-bottom: 20px; }
.why-card h3 { font-size: 24px; color: var(--primary); margin-bottom: 12px; }
.why-card p  { line-height: 1.8; color: #555; }

/* =====================
   FACULTY SECTION
===================== */

.faculty-section { padding: 100px 8%; background: #081b36; }
.faculty-section .section-title { color: white; }
.faculty-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 20px; }
.faculty-card {
  background: #102c52;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform .4s, border-color .4s;
  border: 2px solid transparent;
}
.faculty-card:hover { transform: translateY(-10px); border-color: var(--secondary); }
.faculty-card img { width: 100%; height: 280px; object-fit: cover; }
.faculty-card h3 { color: white; margin-top: 20px; font-size: 22px; }
.faculty-card h4 { color: var(--secondary); margin: 10px 0; }
.faculty-card p  { color: #ddd; line-height: 1.8; padding: 0 15px; }
.faculty-badge {
  display: inline-block;
  background: var(--secondary);
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 10px;
}
.placeholder-photo {
  height: 280px;
  display: flex; justify-content: center; align-items: center;
  background: #dfe5ec;
  font-weight: 600; color: #555;
}

/* =====================
   RESULTS SECTION
===================== */

.results-section {
  padding: 80px 8%;
  background: linear-gradient(135deg, #0b1f3a 0%, #162d4e 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.results-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(244,180,0,0.06);
  border-radius: 50%;
}

.results-left { flex: 1; position: relative; z-index: 1; }

.results-left h2 {
  font-size: 44px;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 800;
}
.results-left h2 span { color: #f4b400; }

.results-left p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #aabbcc;
}

.results-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.results-left li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(244,180,0,0.25);
  border-left: 4px solid #f4b400;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .3s;
  margin: 0;
}
.results-left li::before {
  content: '✓';
  color: #f4b400;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.results-left li:hover { background: rgba(244,180,0,0.1); }

.results-right {
  flex: 1;
  position: relative;
  z-index: 1;
}
.results-right img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  border: 3px solid rgba(244,180,0,0.4);
}

/* =====================
   FEES & TIMINGS
===================== */

.fees-section { padding: 100px 8%; background: #f7f9fc; }
.fees-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 30px; }
.fees-card {
  background: #fff;
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  border-top: 5px solid #f4b400;
  transition: .4s;
}
.fees-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(11,31,58,.15); }
.fees-card i  { font-size: 50px; color: #f4b400; margin-bottom: 20px; }
.fees-card h3 { font-size: 28px; color: #0b1f3a; margin-bottom: 20px; }
.fees-card p  { line-height: 2; margin-bottom: 15px; color: #555; }
.fees-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 25px;
  background: #f4b400;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
}

/* =====================
   BATCH SCHEDULE TABLE
===================== */

.schedule-table {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
.schedule-table h3 { text-align: center; font-size: 28px; margin-bottom: 25px; color: #0b1f3a; }
.schedule-table table { width: 100%; border-collapse: collapse; }
.schedule-table th { background: #0b1f3a; color: #fff; padding: 15px; }
.schedule-table td { padding: 15px; text-align: center; border: 1px solid #ddd; }
.schedule-table tr:nth-child(even) { background: #f7f9fc; }

/* =====================
   ONLINE CLASSES — PREMIUM
===================== */

.online-section {
  padding: 90px 8%;
  background: linear-gradient(135deg, #0f1f3d 0%, #1a3a6b 50%, #0f1f3d 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.online-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,196,0,0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.online-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,196,0,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.online-section .section-title { color: #ffc400; }
.online-section .section-title::after { background: #ffc400; }
.online-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #c9d8f0;
  font-size: 17px; line-height: 1.8;
  position: relative; z-index: 1;
}
.online-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 45px;
  position: relative; z-index: 1;
}
.online-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,196,0,0.2);
  padding: 36px 22px 30px;
  border-radius: 18px;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.online-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,196,0,0.6);
  background: rgba(255,255,255,0.10);
}
.online-card .card-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #ffc400, #ff9800);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem; color: #0f1f3d;
  box-shadow: 0 4px 20px rgba(255,196,0,0.35);
  transition: box-shadow .3s ease;
}
.online-card:hover .card-icon { box-shadow: 0 6px 28px rgba(255,196,0,0.55); }
.online-card h3 { color: #ffffff; font-size: 1.05rem; margin-bottom: 10px; font-weight: 700; }
.online-card p  { color: #a8bcd8; font-size: 0.9rem; line-height: 1.6; }
.online-btn {
  display: inline-block;
  padding: 15px 42px;
  background: linear-gradient(135deg, #ffc400, #ff9800);
  color: #0f1f3d;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  font-size: 1rem;
  position: relative; z-index: 1;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 22px rgba(255,196,0,0.38);
}
.online-btn:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(255,196,0,0.55); }

/* =====================
   GALLERY — with Lightbox cursor
===================== */

.gallery-section { padding: 100px 8%; background: #f7f9fc; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.gallery-grid img {
  width: 100%; height: 260px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform .4s, box-shadow .4s;
  cursor: zoom-in;
}
.gallery-grid img:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0,0,0,.2); }

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  object-fit: contain;
}
.lightbox p {
  color: #ddd;
  margin-top: 15px;
  font-size: 15px;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 25px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* =====================
   TESTIMONIALS
===================== */

.testimonial-section { padding: 100px 8%; background: #081b36; }
.testimonial-section .section-title { color: white; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 25px; }
.testimonial-card {
  background: #102c52;
  padding: 35px;
  border-radius: 20px;
  color: white;
  border-left: 5px solid var(--secondary);
}
.testimonial-card p  { line-height: 1.8; font-size: 17px; margin-bottom: 15px; }
.testimonial-card h4 { color: var(--secondary); }

/* =====================
   FAQ SECTION
===================== */

.faq-section { padding: 100px 8%; background: #ffffff; }
.faq-container { max-width: 1000px; margin: auto; display: grid; gap: 20px; }
.faq-item {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  border-left: 5px solid #f4b400;
  transition: .3s;
}
.faq-item:hover { transform: translateY(-5px); }
.faq-item h3 { color: #0b1f3a; margin-bottom: 10px; font-size: 22px; }
.faq-item p  { color: #555; line-height: 1.8; }
.faq-contact-box {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: center;
  background: #0b1f3a;
  padding: 40px 30px;
  border-radius: 20px;
}
.faq-contact-box h3 { color: #fff; font-size: 30px; margin-bottom: 15px; }
.faq-contact-box p  { color: #ddd; line-height: 1.8; margin-bottom: 25px; }
.faq-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.faq-btn-primary  { background: #f4b400; color: #000; padding: 12px 25px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: transform .3s; }
.faq-btn-secondary{ border: 2px solid #fff; color: #fff; padding: 12px 25px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: .3s; }
.faq-btn-primary:hover, .faq-btn-secondary:hover { transform: translateY(-3px); }

/* =====================
   ADMISSION / FEEDBACK FORM
===================== */

.admission-section { padding: 100px 8%; background: #f7f9fc; }
.admission-form-box {
  max-width: 800px; margin: auto;
  background: white; padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.admission-form-box form { display: flex; flex-direction: column; gap: 15px; }
.admission-form-box input,
.admission-form-box select,
.admission-form-box textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  transition: border-color .3s;
}
.admission-form-box input:focus,
.admission-form-box select:focus,
.admission-form-box textarea:focus { outline: none; border-color: var(--secondary); }
.admission-form-box textarea { height: 120px; resize: none; }
.admission-form-box button {
  background: var(--secondary);
  padding: 15px; border: none;
  border-radius: 10px;
  font-size: 18px; font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: transform .3s;
}
.admission-form-box button:hover { transform: translateY(-3px); }

/* =====================
   CONTACT SECTION
===================== */

.contact-section {
  padding: 100px 8%;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 50px;
  background: white;
}
.contact-left { flex: 1; }
.contact-left h2 { font-size: 45px; margin-bottom: 25px; color: var(--primary); }
.contact-left p  { font-size: 18px; line-height: 2; margin-bottom: 20px; }
.location-btn {
  display: inline-block;
  margin-top: 5px; margin-bottom: 20px;
  padding: 12px 20px;
  background: var(--secondary);
  color: #000; text-decoration: none;
  border-radius: 30px; font-weight: 600;
  transition: transform .3s;
}
.location-btn:hover { transform: translateY(-3px); }
.contact-right { flex: 1; }
.contact-right h3 { font-size: 28px; color: var(--primary); margin-bottom: 20px; }
.contact-right form { display: flex; flex-direction: column; gap: 15px; }
.contact-right input,
.contact-right select {
  padding: 15px; border: 1px solid #ccc;
  border-radius: 10px; font-size: 16px;
  font-family: 'Poppins', sans-serif;
  transition: border-color .3s;
}
.contact-right input:focus,
.contact-right select:focus { outline: none; border-color: var(--secondary); }
.contact-right button {
  padding: 15px; border: none;
  background: var(--secondary);
  font-size: 18px; font-weight: 600;
  border-radius: 10px; cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: transform .3s;
}
.contact-right button:hover { transform: translateY(-3px); }

/* =====================
   MAP SECTION
===================== */

.map-section { width: 100%; overflow: hidden; }
.map-section iframe { display: block; width: 100%; }

/* =====================
   FOOTER
===================== */

footer { background: #081b36; padding: 60px 8% 20px; color: white; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; }
.footer-box h2,
.footer-box h3 { color: var(--secondary); margin-bottom: 15px; }
.footer-box p  { color: #ddd; line-height: 1.8; margin-bottom: 8px; }
.footer-logo   { width: 110px; margin-bottom: 20px; border-radius: 10px; background: #fff; padding: 8px; }
.footer-tagline{ color: var(--secondary); font-style: italic; font-size: 16px; margin-top: 15px; }
.footer-box a  { display: block; color: #ddd; text-decoration: none; margin-bottom: 10px; transition: color .3s, padding-left .3s; }
.footer-box a:hover { color: var(--secondary); padding-left: 8px; }
.map-link { color: var(--secondary) !important; font-weight: 600; margin-top: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 30px; padding-top: 20px;
  text-align: center; color: #bbb;
}

/* =====================
   NOTICE BOARD
   FIX: Replaced <marquee> with CSS animation
===================== */

.notice-board {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-top: 3px solid #f4b400;
  border-bottom: 3px solid #f4b400;
  overflow: hidden;
  padding: 0;
}

.notice-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  padding: 15px 0;
  color: #0b1f3a;
  font-weight: 600;
  font-size: 14px;
  animation: marquee-scroll 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* =====================
   WHATSAPP BUTTON
===================== */

.whatsapp-btn {
  position: fixed;
  bottom: 25px; right: 25px;
  width: 65px; height: 65px;
  background: #25d366;
  display: flex; justify-content: center; align-items: center;
  border-radius: 50%;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  transition: transform .3s;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn i { font-size: 35px; color: white; }

/* =====================
   CALL FLOATING BUTTON
===================== */

.call-floating-btn {
  position: fixed;
  bottom: 105px; right: 25px;
  width: 65px; height: 65px;
  background: #0b1f3a;
  display: flex; justify-content: center; align-items: center;
  border-radius: 50%;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.call-floating-btn i { font-size: 28px; color: #fff; }

/* SCROLL TO TOP BUTTON */
.scroll-top {
  position: fixed;
  bottom: 195px; right: 25px;
  width: 50px; height: 50px;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top:hover { background: #e6a800; transform: translateY(-3px); }

/* =====================
   MOBILE MENU TOGGLE
===================== */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  border-radius: 2px;
  background: var(--secondary);
  transition: transform .35s ease, opacity .35s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================
   MOBILE OVERLAY
===================== */

.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1050;
  opacity: 0;
  transition: opacity .3s ease;
}
.mobile-overlay.active { display: block; opacity: 1; }

/* =====================
   MOBILE DRAWER
===================== */

.mobile-drawer {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100%;
  background: var(--primary);
  z-index: 1100;
  display: flex; flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-drawer.active { right: 0; }

.drawer-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 20px 16px;
  border-bottom: 0.5px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, #0d2444 0%, #0b1f3a 100%);
}
.drawer-logo { display: flex; align-items: center; gap: 12px; }
.drawer-logo-img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: contain;
  background: white;
  padding: 4px;
  flex-shrink: 0;
  border: 2px solid #f4b400;
  box-shadow: 0 4px 12px rgba(244,180,0,0.3);
}
.drawer-logo-circle { display: none; }
.drawer-logo-text h4 { color: white; font-size: 14px; font-weight: 800; margin: 0; line-height: 1.3; letter-spacing: 0.5px; }
.drawer-logo-text p  { color: #f4b400; font-size: 10px; margin: 0; font-weight: 600; letter-spacing: 1px; }
.drawer-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #aaa; font-size: 18px;
  transition: background .2s, color .2s;
}
.drawer-close:hover { background: rgba(255,255,255,.14); color: white; }

.drawer-nav { flex: 1; padding: 10px 0; list-style: none; }
.drawer-nav li a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 15px; font-weight: 500;
  border-left: 3px solid transparent;
  transition: background .2s, border-color .2s, color .2s;
}
.drawer-nav li a i { font-size: 19px; width: 22px; text-align: center; color: rgba(255,255,255,.38); transition: color .2s; flex-shrink: 0; }
.drawer-nav li a .arrow { margin-left: auto; font-size: 14px; color: rgba(255,255,255,.18); transition: color .2s, transform .2s; }
.drawer-nav li a:hover,
.drawer-nav li a.active { background: rgba(244,180,0,.07); border-left-color: var(--secondary); color: white; }
.drawer-nav li a:hover i,
.drawer-nav li a.active i { color: var(--secondary); }
.drawer-nav li a:hover .arrow,
.drawer-nav li a.active .arrow { color: var(--secondary); transform: translateX(3px); }
.drawer-divider { display: block; height: 0.5px; background: rgba(255,255,255,.07); margin: 6px 20px; }

.drawer-footer { padding: 16px 20px 24px; border-top: 0.5px solid rgba(255,255,255,.08); }
.drawer-call-cta {
  display: flex; align-items: center; gap: 12px;
  background: var(--secondary);
  border-radius: 14px; padding: 13px 16px;
  text-decoration: none; margin-bottom: 12px;
  transition: opacity .2s;
}
.drawer-call-cta:hover { opacity: .9; }
.drawer-call-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.drawer-call-icon i { color: var(--primary); font-size: 18px; }
.drawer-call-text h5 { color: var(--primary); font-size: 13px; font-weight: 700; margin: 0; }
.drawer-call-text p  { color: rgba(0,0,0,.5); font-size: 10px; margin: 0; }
.drawer-bottom-row { display: flex; gap: 10px; }
.drawer-wa-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: rgba(37,211,102,.1);
  border: 0.5px solid rgba(37,211,102,.28);
  border-radius: 10px; padding: 11px;
  text-decoration: none; transition: background .2s;
}
.drawer-wa-btn:hover { background: rgba(37,211,102,.18); }
.drawer-wa-btn i    { color: #25d366; font-size: 18px; }
.drawer-wa-btn span { color: #25d366; font-size: 12px; font-weight: 600; }
.drawer-since {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04);
  border: 0.5px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 11px;
}
.drawer-since span { color: rgba(255,255,255,.38); font-size: 11px; text-align: center; line-height: 1.4; }

/* =====================
   ENQUIRY MESSAGE BOX
   FIX: Removed duplicate block — single clean definition
===================== */

#enquiryMessage {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  height: 110px;
  resize: none;
  width: 100%;
  transition: border-color .3s;
}

#enquiryMessage:focus {
  outline: none;
  border-color: var(--secondary);
}

/* =====================
   CLASSES OVERVIEW
===================== */

.classes-overview-section {
  padding: 100px 8%;
  background: #f7f9fc;
}

.classes-overview-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin: -30px auto 50px;
  max-width: 700px;
  line-height: 1.8;
}

.classes-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.overview-card {
  background: #fff;
  border-radius: 24px;
  padding: 45px 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.13);
}

.offline-card { border-top: 6px solid #0b1f3a; }
.online-card-overview { border-top: 6px solid #ffc400; }

.overview-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

.offline-card .overview-icon {
  background: #0b1f3a;
  color: #ffc400;
}

.online-card-overview .overview-icon {
  background: linear-gradient(135deg, #ffc400, #ff9800);
  color: #0b1f3a;
}

.overview-card h3 {
  font-size: 1.8rem;
  color: #0b1f3a;
  margin-bottom: 8px;
  font-weight: 700;
}

.overview-tagline {
  font-size: 14px;
  color: #888;
  margin-bottom: 25px;
  font-style: italic;
}

.overview-features {
  list-style: none;
  text-align: left;
  width: 100%;
  margin-bottom: 30px;
}

.overview-features li {
  padding: 8px 0;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.overview-features li i {
  color: #25a244;
  font-size: 16px;
  flex-shrink: 0;
}

.overview-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0b1f3a;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform .3s ease, background .3s ease;
  margin-top: auto;
}

.overview-btn-primary:hover {
  background: #ffc400;
  color: #0b1f3a;
  transform: translateY(-3px);
}

.overview-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffc400;
  color: #0b1f3a;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform .3s ease, box-shadow .3s ease;
  margin-top: auto;
  box-shadow: 0 4px 15px rgba(255,196,0,.35);
}

.overview-btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,196,0,.55);
}

/* =====================
   LEADERSHIP SECTION
===================== */

.leadership-section {
  padding: 100px 8%;
  background: #f8f9fb;
}

.leadership-subtitle {
  text-align: center;
  max-width: 700px;
  margin: -25px auto 50px;
  color: #555;
  line-height: 1.8;
  font-size: 18px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
}

.leader-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  transition: .3s;
}

.leader-card:hover { transform: translateY(-8px); }

.leader-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.leader-content {
  padding: 35px;
  text-align: center;
}

.leader-content h3 {
  font-size: 34px;
  color: #0b1f3a;
  margin-bottom: 10px;
}

.leader-content h4 {
  color: #f4b400;
  font-size: 22px;
  margin-bottom: 20px;
}

.experience-badge {
  display: inline-block;
  background: #f4b400;
  color: #000;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 25px;
}

.leader-content ul {
  list-style: none;
  text-align: left;
  margin-top: 20px;
}

.leader-content ul li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #444;
  font-size: 16px;
}

/* =====================
   RESPONSIVE — 992px
===================== */

@media (max-width: 992px) {
  .menu-toggle { display: flex; }
  .nav-links, .call-btn { display: none; }
  .hero, .results-section, .contact-section { flex-direction: column; }
  .container { flex-direction: column; }
  .hero-left, .hero-right, .about-left, .about-right,
  .results-left, .results-right, .contact-left, .contact-right { width: 100%; }
  .courses-grid, .gallery-grid, .faculty-grid,
  .testimonial-grid, .stats-section { grid-template-columns: repeat(2,1fr); }
  .vision-grid { grid-template-columns: repeat(2,1fr); }
  .online-grid { grid-template-columns: repeat(2,1fr); }

  .hero-content { flex-direction: column; }
  .hero-left { padding: 0; text-align: center; }
  .hero-left h1 { font-size: 65px; }
  .hero-left h2 { font-size: 26px; flex-direction: column; }
  .hero-left h2::before, .hero-left h2::after { display: none; }
  .hero-features { grid-template-columns: repeat(2,1fr); justify-content: center; margin: 0 auto 24px; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }

  .hero-right {
    position: relative;
    width: 100%;
    height: 350px;
    right: 0;
    top: 0;
    margin-top: 20px;
  }
  .hero-right img {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 20px;
    border: 4px solid #f4b400;
  }

  .leadership-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content {
    flex-direction: row;
  }
  .hero-left {
    width: 50%;
    padding: 20px 0 30px 6%;
    text-align: left;
  }
  .hero-left h2 {
    flex-direction: row;
  }
  .hero-left h2::before,
  .hero-left h2::after {
    display: block;
  }
  .hero-features {
    grid-template-columns: 1fr 1fr;
    justify-content: start;
    margin-bottom: 24px;
  }
  .hero-buttons {
    justify-content: flex-start;
  }
  .hero-right {
    position: absolute;
    width: 50%;
    height: auto;
    right: -50px;
    top: -60px;
    bottom: 0;
    margin-top: 0;
  }
  .hero-right img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50% 0 0 50% / 50% 0 0 50%;
    border-left: 4px solid #f4b400;
    border-top: 4px solid #f4b400;
    border-bottom: 4px solid #f4b400;
    border-right: none;
  }
}
/* =====================
   RESPONSIVE — 768px
   FIX: Merged all duplicate mobile hero blocks into one clean block
===================== */

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links, .call-btn { display: none; }

 /* Hero */
  .hero-new { padding: 120px 5% 50px; }
  .hero-content { flex-direction: column; text-align: center; min-height: auto; }
  .hero-left { width: 100%; padding: 0; }
  .hero-left h1 { font-size: 52px; line-height: 1; }
  .hero-left h2 { font-size: 22px; flex-direction: column; }
  .hero-left h2::before, .hero-left h2::after { display: none; }
  .hero-features { grid-template-columns: 1fr; justify-content: center; margin: 0 auto 24px; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }
  .hero-right {
    position: relative;
    width: 100%;
    height: 280px;
    right: 0;
    top: 0;
    margin-top: 20px;
  }
  .hero-right img {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 20px;
    border: 4px solid #f4b400;
  }

  /* Legacy hero */
  .hero { padding-top: 120px; flex-direction: column; text-align: center; }
  .hero-brand { flex-direction: row; align-items: center; justify-content: center; gap: 12px; }
  .hero-logo { width: 70px; }
  .hero-brand-text h1 { font-size: 1.8rem; line-height: 1.1; margin: 0; word-break: break-word; }
  .hero-since { font-size: 13px; margin-top: 4px; }

  .section-title { font-size: 34px; }
  .courses-grid, .gallery-grid, .faculty-grid,
  .testimonial-grid, .stats-section,
  .vision-grid, .why-grid, .fees-grid,
  .online-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .footer-box a:hover { padding-left: 0; }
  .faq-contact-box h3 { font-size: 24px; }
  .faq-buttons { flex-direction: column; }
  .notice-label { padding: 12px 15px; font-size: 13px; }
  .notice-marquee { font-size: 13px; }
  .scroll-top { bottom: 185px; right: 15px; width: 44px; height: 44px; font-size: 16px; }
  .classes-overview-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .leader-card img { height: 300px; }
  .leader-content h3 { font-size: 26px; }
  .leader-content h4 { font-size: 18px; }
}
