/* ============================================
   VIVEKANANDA KIDS ACADEMY - MAIN STYLESHEET
   ============================================ */

:root {
  --orange: #FF6B35;
  --yellow: #FFD700;
  --purple: #7B2D8B;
  --blue: #1A73E8;
  --green: #2ECC40;
  --pink: #FF4D94;
  --red: #E53935;
  --dark: #1a1a2e;
  --light-bg: #FFF9F0;
  --white: #ffffff;
  --text: #333344;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 20px;
  --font-head: 'Baloo 2', cursive;
  --font-body: 'Nunito', sans-serif;
  --font-fun: 'Fredoka One', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light-bg);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

/* ============ TOP BAR ============ */
.top-bar {
  background: linear-gradient(90deg, var(--purple), var(--dark));
  color: #fff;
  font-size: 13px;
  padding: 7px 0;
  font-family: var(--font-body);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.top-bar a { color: #ffe; transition: color .2s; }
.top-bar a:hover { color: var(--yellow); }
.top-bar i { margin-right: 5px; color: var(--yellow); }
.top-bar .divider { opacity: .4; }
.wa-link { background: #25D366; padding: 3px 10px; border-radius: 20px; font-weight: 700; }
.wa-link i { color: #fff; }

/* ============ HEADER ============ */
.main-header {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}
.main-header.scrolled { box-shadow: 0 6px 30px rgba(0,0,0,0.18); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 16px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
  transition: transform .3s;
}
.logo-wrap:hover .logo-img { transform: rotate(-5deg) scale(1.08); }
.logo-text { display: flex; flex-direction: column; }
.school-name {
  font-family: var(--font-fun);
  font-size: 20px;
  color: var(--purple);
  line-height: 1.2;
  letter-spacing: .3px;
}
.school-sub {
  font-size: 11px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .5px;
}

/* NAV */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav ul li a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 30px;
  transition: all .25s;
  position: relative;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--orange);
  background: rgba(255,107,53,.09);
}
/* Enroll button must NEVER get the active/hover override */
.main-nav ul li a.btn-enroll,
.main-nav ul li a.btn-enroll:hover,
.main-nav ul li a.btn-enroll.active {
  background: linear-gradient(135deg, var(--orange), var(--pink)) !important;
  color: #fff !important;
}
.btn-enroll {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 30px !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 15px rgba(255,107,53,.4);
  transition: transform .2s, box-shadow .2s !important;
  animation: pulse-btn 2s infinite;
}
.btn-enroll:hover {
  transform: scale(1.06) !important;
  box-shadow: 0 6px 20px rgba(255,107,53,.5) !important;
  background: linear-gradient(135deg, var(--pink), var(--orange)) !important;
}

@keyframes pulse-btn {
  0%,100% { box-shadow: 0 4px 15px rgba(255,107,53,.4); }
  50% { box-shadow: 0 4px 25px rgba(255,107,53,.7); }
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--purple);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* ============ HERO SLIDER ============ */
.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: #1a1a2e;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .8s ease;
  padding: 40px 0;
}
.hero-slide.active { opacity: 1; z-index: 2; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
}

/* Floating bubbles in hero */
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: .18;
  animation: floatBubble linear infinite;
}

@keyframes floatBubble {
  0% { transform: translateY(100%) scale(0); opacity: 0; }
  10% { opacity: .18; }
  90% { opacity: .18; }
  100% { transform: translateY(-120vh) scale(1.2); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-fun);
  font-size: 14px;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
  animation: bounceIn .8s .3s both;
}
.hero-title {
  font-family: var(--font-fun);
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  animation: slideInLeft .8s .5s both;
  text-shadow: 0 3px 12px rgba(0,0,0,.4);
}
.hero-title span { color: var(--yellow); }
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.9);
  margin-bottom: 32px;
  animation: slideInLeft .8s .7s both;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: slideInLeft .8s .9s both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff8c42);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(255,107,53,.4);
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(255,107,53,.5); color: #fff; }
.btn-secondary {
  background: rgba(255,255,255,.15);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,.6);
  transition: all .2s;
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: #fff; color: var(--purple); border-color: #fff; }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .3s;
}
.dot.active {
  background: var(--yellow);
  width: 28px;
  border-radius: 6px;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--orange); border-color: var(--orange); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ============ STATS STRIP ============ */
.stats-strip {
  background: linear-gradient(135deg, var(--purple) 0%, #1a1a2e 100%);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.stat-item {
  text-align: center;
  color: #fff;
  padding: 10px;
}
.stat-number {
  font-family: var(--font-fun);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--yellow);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  opacity: .85;
  font-weight: 600;
  margin-top: 4px;
}
.stat-item i {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
  color: rgba(255,255,255,.6);
}

/* ============ SECTIONS ============ */
.section {
  padding: 80px 0;
}
.section-alt { background: #fff; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--dark);
  font-family: var(--font-fun);
  font-size: 13px;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 12px;
  letter-spacing: .5px;
}
.section-title {
  font-family: var(--font-fun);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title span { color: var(--orange); }
.section-sub {
  color: #666;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.title-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}
.title-deco::before, .title-deco::after {
  content: '';
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}
.title-deco span { font-size: 22px; }

/* ============ ABOUT SECTION ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-main-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  object-fit: cover;
  height: 420px;
}
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--yellow);
  border-radius: 20px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
}
.about-badge-float .big { font-family: var(--font-fun); font-size: 2rem; color: var(--purple); display: block; }
.about-badge-float .sm { font-size: 13px; font-weight: 700; color: var(--dark); }

.about-content h2 { font-family: var(--font-fun); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--dark); margin-bottom: 18px; }
.about-content h2 span { color: var(--orange); }
.about-content p { color: #555; line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.about-checks { margin: 22px 0; display: flex; flex-direction: column; gap: 12px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-icon { width: 28px; height: 28px; background: linear-gradient(135deg, var(--green), #27ae60); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-size: 13px; margin-top: 2px; }
.check-item span { font-size: 15px; color: #444; line-height: 1.5; }

/* ============ PROGRAMS ============ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.program-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--card-color, var(--orange));
}
.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px rgba(0,0,0,.14);
  border-color: var(--card-color, var(--orange));
}
.program-icon {
  font-size: 3rem;
  margin-bottom: 14px;
  display: block;
  animation: wobble 3s infinite;
}
@keyframes wobble {
  0%,100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}
.program-card:nth-child(2) .program-icon { animation-delay: .4s; }
.program-card:nth-child(3) .program-icon { animation-delay: .8s; }
.program-card:nth-child(4) .program-icon { animation-delay: 1.2s; }
.program-card:nth-child(5) .program-icon { animation-delay: 1.6s; }

.program-name { font-family: var(--font-fun); font-size: 1.3rem; color: var(--dark); margin-bottom: 4px; }
.program-age { font-size: 13px; color: var(--orange); font-weight: 700; margin-bottom: 10px; }
.program-desc { font-size: 14px; color: #666; line-height: 1.6; }

/* ============ FEATURES ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
  border-left: 4px solid var(--orange);
}
.feature-card:nth-child(2n) { border-left-color: var(--purple); }
.feature-card:nth-child(3n) { border-left-color: var(--blue); }
.feature-card:nth-child(4n) { border-left-color: var(--green); }
.feature-card:hover { transform: translateX(6px); box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.feature-ico { font-size: 2.2rem; flex-shrink: 0; line-height: 1; }
.feature-txt h4 { font-family: var(--font-head); font-size: 1.05rem; color: var(--dark); margin-bottom: 5px; }
.feature-txt p { font-size: 14px; color: #666; line-height: 1.6; }

/* ============ GALLERY ============ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  background: #fff;
  border: 2px solid #ddd;
  color: var(--text);
  padding: 8px 22px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .25s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(123,45,139,.8), transparent);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 1.8rem; margin: 0 auto; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 12px; box-shadow: 0 0 60px rgba(0,0,0,.6); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,.15);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: var(--orange); }

/* ============ TESTIMONIALS ============ */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform .5s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .testimonial-card { min-width: 50%; }
}
@media (min-width: 1024px) {
  .testimonial-card { min-width: 33.333%; }
}

.testi-inner {
  background: #fff;
  border-radius: 24px;
  padding: 32px 26px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  position: relative;
  height: 100%;
}
.testi-inner::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--orange);
  opacity: .15;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}
.testi-stars { color: var(--yellow); margin-bottom: 12px; font-size: 16px; }
.testi-text { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-fun);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 800; color: var(--dark); font-size: 15px; }
.testi-role { font-size: 13px; color: var(--orange); }

.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.testi-nav button {
  background: none;
  border: 2px solid #ddd;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: all .2s;
  color: var(--text);
}
.testi-nav button:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 50%, var(--purple) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '🌟 🎈 ⭐ 🎉 🌈 🎊 🌟 🎈 ⭐ 🎉';
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  font-size: 1.5rem;
  opacity: .25;
  letter-spacing: 20px;
  white-space: nowrap;
}
.cta-banner h2 { font-family: var(--font-fun); font-size: clamp(1.8rem, 4vw, 3rem); color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.9); font-size: 17px; margin-bottom: 28px; }
.btn-white {
  background: #fff;
  color: var(--orange);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.2); color: var(--purple); }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--orange); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  gap: 12px;
  user-select: none;
}
.faq-question i {
  color: var(--orange);
  font-size: 14px;
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--purple), #1a1a2e);
  border-radius: 28px;
  padding: 40px 32px;
  color: #fff;
}
.contact-info-card h3 { font-family: var(--font-fun); font-size: 1.8rem; margin-bottom: 26px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-ico {
  width: 46px; height: 46px;
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--yellow);
}
.contact-item h5 { font-size: 13px; opacity: .7; margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: 15px; color: #fff; font-weight: 600; }
.contact-item a:hover { color: var(--yellow); }

.contact-form-card {
  background: #fff;
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.contact-form-card h3 { font-family: var(--font-fun); font-size: 1.8rem; color: var(--dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 6px; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
  background: #fafafa;
  color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,.1);
  background: #fff;
}
.form-group textarea { height: 110px; resize: vertical; }
.btn-submit {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  width: 100%;
  box-shadow: 0 6px 20px rgba(255,107,53,.3);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,53,.4); }

.alert { padding: 14px 20px; border-radius: 12px; margin-bottom: 16px; font-weight: 700; }
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid var(--green); }
.alert-error { background: #fce4ec; color: #c62828; border-left: 4px solid var(--red); }

/* Map */
.map-wrap { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); margin-top: 48px; }
.map-wrap iframe { width: 100%; height: 380px; display: block; border: none; }

/* ============ PAGE HERO ============ */
.page-hero {
  background: linear-gradient(135deg, var(--purple) 0%, #1a1a2e 100%);
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: var(--light-bg);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero-emojis {
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-size: 2rem;
  opacity: .1;
  overflow: hidden;
}
.page-hero h1 {
  font-family: var(--font-fun);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.page-hero p {
  color: rgba(255,255,255,.8);
  font-size: 17px;
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  position: relative;
  z-index: 2;
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb i { font-size: 10px; opacity: .6; }

/* ============ ABOUT PAGE ============ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.07);
  transition: transform .3s;
}
.value-card:hover { transform: translateY(-8px); }
.value-emoji { font-size: 3rem; margin-bottom: 14px; display: block; }
.value-card h4 { font-family: var(--font-fun); font-size: 1.2rem; color: var(--dark); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: #666; line-height: 1.6; }
.principal-card {
  background: linear-gradient(135deg, #fff5f0, #fff);
  border-radius: 28px;
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  border: 2px solid rgba(255,107,53,.15);
}
.principal-img-wrap {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(255,107,53,.3);
}
.principal-card blockquote { font-style: italic; font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 12px; }
.principal-card cite { font-style: normal; font-weight: 800; color: var(--dark); }

/* ============ FOOTER ============ */
.main-footer {
  background: linear-gradient(160deg, #1a1a2e 0%, #2d1b4e 100%);
  color: rgba(255,255,255,.85);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.fshape {
  position: absolute;
  font-size: 2rem;
  opacity: .07;
  animation: float 8s ease-in-out infinite;
}
.fshape1 { top: 10%; left: 5%; animation-delay: 0s; }
.fshape2 { top: 30%; right: 8%; animation-delay: 2s; }
.fshape3 { bottom: 20%; left: 15%; animation-delay: 4s; }
.fshape4 { bottom: 10%; right: 20%; animation-delay: 6s; }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(15deg); }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  position: relative;
}
.footer-brand .footer-logo { width: 70px; margin-bottom: 14px; }
.footer-brand h3 { font-family: var(--font-fun); font-size: 1.3rem; color: #fff; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all .2s;
}
.social-links a:hover { background: var(--orange); transform: translateY(-3px); }

.footer-col h4 { font-family: var(--font-head); font-size: 1.1rem; color: #fff; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid rgba(255,255,255,.1); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s, padding-left .2s; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--yellow); padding-left: 4px; }
.footer-col ul li a i { font-size: 10px; color: var(--orange); }

.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.footer-contact-item i { color: var(--yellow); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.5; }
.footer-contact-item a:hover { color: var(--yellow); }
.btn-footer-cta {
  display: inline-block;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s;
}
.btn-footer-cta:hover { transform: scale(1.05); color: #fff; }

.footer-bottom {
  background: rgba(0,0,0,.25);
  margin-top: 50px;
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,.6); }

/* ============ FLOATING ELEMENTS ============ */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .2s;
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); color: #fff; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,.7); }
}
.wa-tooltip {
  position: absolute;
  right: 66px;
  background: #333;
  color: #fff;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); background: var(--orange); }

/* ============ ANIMATIONS ============ */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(.6); }
  70% { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ============ CONFETTI BG ============ */
.confetti-bg {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,107,53,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(123,45,139,.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,215,0,.04) 0%, transparent 60%);
}

/* ============ ADMISSION STRIP ============ */
.admission-strip {
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-text {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.marquee-text span {
  font-family: var(--font-fun);
  font-size: 16px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ PROGRAM DETAIL (programs page) ============ */
.program-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.program-detail-grid:nth-child(even) { direction: rtl; }
.program-detail-grid:nth-child(even) > * { direction: ltr; }
.prog-img { width: 100%; height: 340px; object-fit: cover; }
.prog-content { padding: 40px; }
.prog-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--light-bg); border-radius: 30px; padding: 6px 16px; font-weight: 700; color: var(--orange); font-size: 14px; margin-bottom: 14px; }
.prog-content h3 { font-family: var(--font-fun); font-size: 1.8rem; color: var(--dark); margin-bottom: 10px; }
.prog-content p { color: #666; line-height: 1.8; font-size: 15px; margin-bottom: 16px; }
.prog-features { display: flex; flex-direction: column; gap: 8px; }
.prog-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #444; }
.prog-features li i { color: var(--green); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 36px; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,26,46,.97);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform .35s ease;
    z-index: 900;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: center; gap: 6px; }
  .main-nav ul li a { font-size: 1.3rem; color: #fff; padding: 12px 28px; }
  .main-nav ul li a:hover { color: var(--yellow); background: rgba(255,255,255,.1); }
  .btn-enroll { background: linear-gradient(135deg, var(--orange), var(--pink)) !important; }
  .hamburger { display: flex; z-index: 1000; position: relative; }

  .hero-slider { min-height: 480px; }
  .hero-content { padding: 0 20px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .about-main-img { height: 280px; }
  .about-badge-float { bottom: -10px; right: 10px; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .about-story { grid-template-columns: 1fr; }
  .principal-card { flex-direction: column; text-align: center; }
  .program-detail-grid { grid-template-columns: 1fr; }
  .program-detail-grid:nth-child(even) { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar { font-size: 12px; }
  .top-bar-left { display: none; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .school-name { font-size: 16px; }
  .school-sub { font-size: 10px; }
  .logo-img { width: 50px; height: 50px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ FIXES & ADDITIONS ============ */

/* Marquee BELOW hero — redesigned */
.admission-strip {
    background: linear-gradient(135deg, #1a1a2e 0%, var(--purple) 50%, #1a1a2e 100%);
    padding: 0;
    overflow: hidden;
    position: relative;
    border-top: 3px solid var(--yellow);
    border-bottom: 3px solid var(--orange);
}
.admission-strip-inner {
    display: flex;
    align-items: stretch;
}
.admission-strip-label {
    background: var(--yellow);
    color: var(--dark);
    font-family: var(--font-fun);
    font-size: 13px;
    padding: 10px 18px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    letter-spacing: .3px;
    z-index: 2;
}
.admission-strip-scroll {
    flex: 1;
    overflow: hidden;
    padding: 10px 0;
}
.marquee-text {
    display: flex;
    gap: 50px;
    animation: marquee 50s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.marquee-text span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.marquee-text span i { color: var(--yellow); }
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* WhatsApp — LEFT bottom */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: auto;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff !important;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(37,211,102,.45);
    z-index: 999;
    transition: transform .2s;
    animation: pulse-wa 2.5s infinite;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12); color: #fff !important; }
.wa-tooltip {
    position: absolute;
    left: 66px;
    right: auto;
    background: #1a1a2e;
    color: #fff;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    font-family: var(--font-body);
    font-weight: 700;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* Scroll-to-top — RIGHT bottom */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    left: auto;
    width: 46px; height: 46px;
    background: var(--purple);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .2s, background .2s;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); background: var(--orange); }

/* Footer legal row */
.footer-legal {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 40px;
    padding: 14px 0;
}
.footer-legal-inner {
    display: flex;
    justify-content: center;
}
.legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.legal-links a {
    color: rgba(255,255,255,.55);
    font-size: 13px;
    transition: color .2s;
    text-decoration: none;
}
.legal-links a:hover { color: var(--yellow); }
.legal-links span { color: rgba(255,255,255,.25); font-size: 12px; }

/* Footer bottom — two-column */
.footer-bottom { background: rgba(0,0,0,.3); padding: 16px 0; }
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.55); margin: 0; }
.dev-credit a {
    color: var(--yellow);
    font-weight: 700;
    text-decoration: none;
    transition: color .2s;
}
.dev-credit a:hover { color: var(--orange); }

/* Legal / content pages */
.legal-page { max-width: 860px; margin: 0 auto; }
.legal-page h2 { font-family: var(--font-fun); font-size: 1.6rem; color: var(--purple); margin: 32px 0 12px; }
.legal-page h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--dark); margin: 22px 0 8px; }
.legal-page p { color: #555; line-height: 1.85; margin-bottom: 14px; font-size: 15px; }
.legal-page ul { padding-left: 20px; margin-bottom: 14px; }
.legal-page ul li { color: #555; font-size: 15px; line-height: 1.8; margin-bottom: 6px; }
.legal-page .last-updated { background: #fff5f0; border-left: 4px solid var(--orange); padding: 10px 16px; border-radius: 8px; font-size: 14px; color: #888; margin-bottom: 28px; }

/* Responsive fixes */
@media (max-width: 600px) {
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .legal-links { gap: 8px; }
    .admission-strip-label { font-size: 12px; padding: 8px 12px; }
}

/* Marquee pause on hover */
.admission-strip-scroll:hover .marquee-text,
.admission-strip:hover .marquee-text {
    animation-play-state: paused;
    cursor: default;
}
