/* ============================================================
   VIVEKANAND PUBLIC SCHOOL — MAIN STYLESHEET v2
   vps-style.css | All pages | Mobile-first responsive
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --saffron: #FF6B1A;
  --saffron-light: #FF8C4A;
  --royal-blue: #1A3FA0;
  --royal: #1A3FA0;
  --sky: #3DAEFF;
  --emerald: #00B88A;
  --gold: #F5C842;
  --cream: #FFF8F0;
  --dark: #0F1B35;
  --text: #2C3A5A;
  --light-bg: #F4F8FF;
  --light: #F4F8FF;
  --white: #FFFFFF;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; }

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.top-bar {
  background: linear-gradient(135deg, var(--royal-blue) 0%, #0F2878 100%);
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1000;
}
.top-bar a { color: rgba(255,255,255,0.9); text-decoration: none; transition: .2s; }
.top-bar a:hover { color: var(--gold); }
.cbse-link, .cbse-pill {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 3px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .5px;
  animation: pulse-gold 2s infinite;
  white-space: nowrap;
  display: inline-block;
}
@keyframes pulse-gold {
  0%,100%{ box-shadow: 0 0 0 0 rgba(245,200,66,.5); }
  50%{ box-shadow: 0 0 0 8px rgba(245,200,66,0); }
}
@keyframes pulse {
  0%,100%{ box-shadow: 0 0 0 0 rgba(245,200,66,.5); }
  50%{ box-shadow: 0 0 0 8px rgba(245,200,66,0); }
}
.top-social a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; margin: 0 2px;
  background: rgba(255,255,255,.15);
  transition: .3s;
  color: rgba(255,255,255,.9);
}
.top-social a:hover { background: var(--saffron); transform: translateY(-2px); color: #fff; }

/* ── MARQUEE (CSS animation — works on all browsers) ── */
.top-marquee-bar {
  background: var(--saffron);
  padding: 6px 0;
  overflow: hidden;
  width: 100%;
  display: block;
  position: relative;
}
.marquee-track {
  width: 100%;
  overflow: hidden;
  display: block;
}
.marquee-inner {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.marquee-inner span {
  display: inline-block;
  padding-right: 0;
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Pause on hover */
.top-marquee-bar:hover .marquee-inner {
  animation-play-state: paused;
}
.marquee-sep { margin: 0 16px; opacity: .7; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar-main, .navbar-vps {
  background: var(--white);
  box-shadow: 0 4px 30px rgba(26,63,160,.1);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all .3s;
}
.navbar-main.scrolled, .navbar-vps.scrolled {
  box-shadow: 0 8px 40px rgba(26,63,160,.2);
}
/* Logo image — NO background */
.navbar-logo-img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.navbar-brand-wrap, .brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  text-decoration: none;
}
.brand-text-main, .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--royal-blue);
  line-height: 1.2;
}
.brand-text-sub, .brand-sub {
  font-size: 11px;
  color: var(--saffron);
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: .5px;
}
/* Nav links */
.nav-link-custom, .nav-item-vps {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark) !important;
  padding: 20px 10px !important;
  position: relative;
  transition: color .3s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.nav-link-custom::after, .nav-item-vps::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--saffron);
  border-radius: 3px 3px 0 0;
  transition: .3s;
}
.nav-link-custom:hover, .nav-item-vps:hover { color: var(--saffron) !important; }
.nav-link-custom:hover::after, .nav-item-vps:hover::after { left: 10px; right: 10px; }
/* Dropdown */
.dropdown-menu-custom, .dd-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  padding: 10px;
  background: #fff;
  min-width: 220px;
  display: none;
  position: absolute;
  top: 100%; left: 0;
  z-index: 1000;
}
.dropdown-item-custom, .dd-item {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  transition: .2s;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.dropdown-item-custom:hover, .dd-item:hover {
  background: linear-gradient(135deg, rgba(255,107,26,.08), rgba(26,63,160,.08));
  color: var(--royal-blue);
  padding-left: 20px;
}
/* Disclosure button */
.nav-disclosure-btn, .nav-disc {
  background: linear-gradient(135deg, var(--saffron), #e85d00) !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .5px;
  box-shadow: 0 4px 15px rgba(255,107,26,.4) !important;
  transition: .3s !important;
}
.nav-disclosure-btn::after, .nav-disc::after { display: none !important; }
.nav-disclosure-btn:hover, .nav-disc:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,107,26,.5) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════
   INNER BANNER (non-home pages)
══════════════════════════════════════ */
.inner-banner {
  background: linear-gradient(135deg, var(--royal-blue), #081d70);
  padding: 60px 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.inner-banner h1 {
  color: #fff;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
}
.inner-banner p { color: rgba(255,255,255,.8); margin-top: 10px; font-size: 1rem; }
.banner-shape, .b-shape {
  position: absolute;
  border-radius: 50%; opacity: .07; background: #fff;
  animation: floatAround 6s ease-in-out infinite;
}
.bs1 { width: 200px; height: 200px; top: -60px; left: 5%; }
.bs2 { width: 120px; height: 120px; bottom: -30px; right: 8%; animation-delay: 2s; }
.bs3 { width: 70px; height: 70px; top: 20%; right: 22%; animation-delay: 3.5s; }
.bc { justify-content: center; margin-top: 12px; }
.bc .breadcrumb-item a, .breadcrumb-item a { color: rgba(255,255,255,.7); text-decoration: none; }
.bc .breadcrumb-item.active, .breadcrumb-item.active { color: var(--gold); }
.bc .breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 50px; }
.sec-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,107,26,.1), rgba(26,63,160,.1));
  color: var(--saffron);
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  padding: 6px 20px; border-radius: 30px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.sec-title, .sec-h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--dark);
  line-height: 1.2;
}
.sec-title span, .sec-h2 span { color: var(--saffron); }
.sec-line {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
  margin: 14px auto 0;
  display: block;
}
.sec-line-c { margin: 14px auto; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary-vps, .btn-orange {
  background: linear-gradient(135deg, var(--saffron), #d44e00);
  color: #fff; border: none;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 6px 20px rgba(255,107,26,.35);
  transition: .3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-primary-vps:hover, .btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,107,26,.5);
  color: #fff;
}
.btn-blue {
  background: linear-gradient(135deg, var(--royal), #0a2580);
  color: #fff; border: none;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 6px 20px rgba(26,63,160,.3);
  transition: .3s; text-decoration: none; display: inline-block;
}
.btn-blue:hover { transform: translateY(-3px); color: #fff; }
.btn-green {
  background: linear-gradient(135deg, var(--emerald), #007a5e);
  color: #fff; border: none;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 700; font-size: 14px;
  transition: .3s; text-decoration: none; display: inline-block;
}
.btn-green:hover { transform: translateY(-3px); color: #fff; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--saffron), #d44e00);
  color: #fff; padding: 13px 28px; border-radius: 50px;
  font-weight: 700; font-size: 14px; border: none;
  box-shadow: 0 8px 30px rgba(255,107,26,.45);
  transition: .3s; text-decoration: none; display: inline-block;
  margin-right: 10px; margin-bottom: 10px;
}
.btn-hero-primary:hover { transform: translateY(-3px); color: #fff; }
.btn-hero-outline {
  background: transparent; color: #fff;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 600; font-size: 14px;
  border: 2px solid rgba(255,255,255,.6);
  transition: .3s; text-decoration: none; display: inline-block;
  margin-bottom: 10px;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }

/* ══════════════════════════════════════
   ADMISSIONS CTA (fixed floating)
══════════════════════════════════════ */
.cta-admissions-fixed {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 9997;
  background: linear-gradient(135deg, var(--royal-blue), #081d70);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  padding: 12px 12px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(26,63,160,.5);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: ctaPulse 3s ease-in-out infinite;
  transition: .3s;
  max-width: 80px;
}
.cta-admissions-fixed:hover { transform: scale(1.08); color: #fff; }
.cta-admissions-fixed i { font-size: 16px; color: var(--gold); }
@keyframes ctaPulse {
  0%,100%{ box-shadow: 0 8px 25px rgba(26,63,160,.5); }
  50%{ box-shadow: 0 8px 40px rgba(26,63,160,.8), 0 0 0 8px rgba(26,63,160,.15); }
}

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero-section {
  position: relative; height: 92vh; min-height: 500px; overflow: hidden;
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide-bg { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 8s ease; }
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15,27,53,.82) 0%, rgba(26,63,160,.55) 55%, transparent 100%);
}
.hero-content {
  position: absolute;
  top: 50%; left: 8%;
  transform: translateY(-50%);
  max-width: 600px;
  z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,200,66,.2); border: 1px solid var(--gold);
  color: var(--gold); padding: 6px 18px; border-radius: 30px;
  font-size: 13px; font-weight: 600; letter-spacing: .8px;
  margin-bottom: 20px; animation: fadeDown .8s .2s both;
}
.hero-title {
  font-size: clamp(1.8rem, 5vw, 3.8rem);
  color: #fff; line-height: 1.15; margin-bottom: 20px;
  animation: fadeUp .8s .4s both;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  color: rgba(255,255,255,.85); font-size: clamp(.9rem, 2vw, 1.1rem);
  margin-bottom: 30px; font-weight: 400; animation: fadeUp .8s .6s both;
}
.hero-btns { animation: fadeUp .8s .8s both; }
.floating-shape { position: absolute; border-radius: 50%; opacity: .12; animation: floatAround 8s ease-in-out infinite; }
.fs1 { width:100px;height:100px; background:var(--gold); top:15%; right:20%; }
.fs2 { width:60px;height:60px; background:var(--sky); top:60%; right:10%; animation-delay:2s; }
.fs3 { width:140px;height:140px; background:var(--emerald); bottom:15%; right:30%; animation-delay:4s; }
.hero-dots { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; border: none; transition: .3s; }
.hero-dot.active { background: var(--gold); width: 30px; border-radius: 5px; }
.scroll-indicator { position: absolute; bottom: 25px; right: 4%; display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: 1px; }
.scroll-indicator::before { content: ''; width: 2px; height: 50px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.6)); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0%{height:0;opacity:0;} 50%{height:50px;opacity:1;} 100%{height:0;opacity:0;} }

/* ══════════════════════════════════════
   STATS RIBBON
══════════════════════════════════════ */
.stats-ribbon {
  background: linear-gradient(135deg, var(--royal-blue) 0%, #0a2580 100%);
  padding: 28px 0; position: relative; overflow: hidden;
}
.stats-ribbon::before {
  content: ''; position: absolute; top: 0; left: -10%; width: 120%; height: 100%;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.stat-item { text-align: center; color: #fff; padding: 8px 0; }
.stat-num { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,2.4rem); font-weight: 900; color: var(--gold); display: block; }
.stat-label { font-size: 12px; opacity: .8; letter-spacing: .5px; }
.stat-sep { width: 1px; background: rgba(255,255,255,.2); align-self: stretch; margin: 8px 0; }

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about-section { padding: 80px 0; background: var(--cream); }
.about-img-main { width: 100%; border-radius: 20px; box-shadow: 0 20px 60px rgba(26,63,160,.15); }
.about-badge-float {
  position: absolute; bottom: -20px; right: -10px;
  background: linear-gradient(135deg, var(--saffron), #c04400);
  color: #fff; padding: 16px 20px; border-radius: 16px;
  text-align: center; box-shadow: 0 10px 30px rgba(255,107,26,.35);
}
.about-badge-float strong { display: block; font-size: 1.8rem; font-family: 'Playfair Display', serif; }
.about-badge-float span { font-size: 11px; opacity: .85; }
.about-text-wrap { padding-left: 30px; }
.about-list { list-style: none; margin: 20px 0; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 14.5px; border-bottom: 1px dashed rgba(26,63,160,.1); }
.about-list li i { color: var(--emerald); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.info-list { list-style: none; padding: 0; }
.info-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px dashed rgba(26,63,160,.1); font-size: 14.5px; }
.info-list li i { color: var(--emerald); font-size: 16px; margin-top: 2px; flex-shrink: 0; }

/* ══════════════════════════════════════
   TEAM CARDS (2 cards on homepage)
══════════════════════════════════════ */
.team-card { background: #fff; border-radius: 20px; box-shadow: 0 10px 40px rgba(26,63,160,.1); overflow: hidden; transition: .4s; height: 100%; }
.team-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(26,63,160,.18); }
.team-card-img-wrap { width: 100%; height: 280px; overflow: hidden; }
.team-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: .5s; }
.team-card:hover .team-card-img-wrap img { transform: scale(1.05); }
.team-card-body { padding: 22px 24px; text-align: center; }
.team-card-body h4 { font-size: 1.2rem; color: var(--dark); margin-bottom: 6px; }
.team-card-body .designation { color: var(--saffron); font-weight: 600; font-size: 13px; margin-bottom: 12px; }

/* ══════════════════════════════════════
   LEADER PHOTO (Chairman / Principal pages)
══════════════════════════════════════ */
.leader-photo {
  width: 100%; max-width: 500px; height: 500px;
  object-fit: cover; object-position: top;
  border-radius: 20px;
  border-top: 3px solid var(--saffron);
  box-shadow: 0 20px 60px rgba(26,63,160,.15);
  display: block; margin: 0 auto;
}

/* ══════════════════════════════════════
   FEATURE CARDS (Infrastructure)
══════════════════════════════════════ */
.features-section { padding: 80px 0; background: #fff; }
.feature-card {
  background: linear-gradient(135deg, #fff 0%, var(--light-bg) 100%);
  border-radius: 16px; padding: 28px 20px; text-align: center;
  border: 2px solid transparent; transition: .4s; height: 100%;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 14px;
  background: linear-gradient(135deg, var(--saffron), var(--royal-blue));
  opacity: 0; transition: .4s; z-index: 0;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { border-color: transparent; transform: translateY(-6px); }
.feature-card:hover .fc-icon,
.feature-card:hover h5,
.feature-card:hover p { color: #fff !important; position: relative; z-index: 1; }
.fc-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,107,26,.1), rgba(26,63,160,.1));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 24px; color: var(--saffron);
  transition: .4s; position: relative; z-index: 1;
}
.feature-card:hover .fc-icon { background: rgba(255,255,255,.2); color: #fff; }
.feature-card h5, .feature-card p { position: relative; z-index: 1; transition: .4s; }

/* ══════════════════════════════════════
   ACTIVITIES
══════════════════════════════════════ */
.activities-section { padding: 80px 0; background: var(--cream); }
.activity-card { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; width: 300px; height: 300px; }
.activity-bg { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.activity-card:hover .activity-bg { transform: scale(1.1); }
.activity-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,27,53,.9) 0%, transparent 60%); transition: .4s; }
.activity-card:hover .activity-overlay { background: linear-gradient(to top, rgba(15,27,53,.95) 0%, rgba(26,63,160,.5) 100%); }
.activity-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px; transform: translateY(20px); opacity: 0; transition: .4s; }
.activity-card:hover .activity-info { transform: translateY(0); opacity: 1; }
.activity-label { position: absolute; top: 14px; left: 14px; background: var(--saffron); color: #fff; padding: 3px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; }

/* ══════════════════════════════════════
   COUNTER SECTION (Parallax)
══════════════════════════════════════ */
.counter-section {
  padding: 90px 0;
  background-image: url('assets/images/slider/carousel-6.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative; overflow: hidden;
}
.counter-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,27,53,.88) 0%, rgba(26,63,160,.80) 100%);
  z-index: 0;
}
.counter-shape {
  position: absolute; border-radius: 50%; opacity: .1; z-index: 1;
}
.cs1 { width: 280px; height: 280px; background: var(--gold); top: -60px; left: -50px; animation: csFloat1 10s ease-in-out infinite; }
.cs2 { width: 160px; height: 160px; background: var(--sky); bottom: -40px; right: 10%; animation: csFloat2 8s ease-in-out infinite; }
.cs3 { width: 100px; height: 100px; background: var(--emerald); top: 20%; right: 5%; animation: csFloat1 12s ease-in-out infinite 2s; }
.cs4 { width: 50px; height: 50px; background: var(--saffron); top: 50%; left: 20%; animation: csFloat2 7s ease-in-out infinite 1s; }
@keyframes csFloat1 { 0%,100%{ transform: translateY(0) rotate(0); } 50%{ transform: translateY(-25px) rotate(20deg); } }
@keyframes csFloat2 { 0%,100%{ transform: translateY(0) rotate(0); } 50%{ transform: translateY(20px) rotate(-15deg); } }
.counter-card { text-align: center; color: #fff; padding: 28px 16px; position: relative; z-index: 2; }
.counter-num { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,5vw,3.5rem); font-weight: 900; color: var(--gold); display: block; }
.counter-unit { font-size: 1.4rem; }
.counter-label { font-size: 13px; opacity: .8; margin-top: 8px; }
.counter-icon { width: 56px; height: 56px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 14px; border: 2px solid rgba(255,255,255,.2); }

/* ══════════════════════════════════════
   RECENT CELEBRATIONS GALLERY
   2 rows × 3 square images
══════════════════════════════════════ */
.celebrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.celeb-item { text-decoration: none; display: block; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 24px rgba(26,63,160,.1); transition: .4s; }
.celeb-item:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(26,63,160,.18); }
.celeb-img-wrap { width: 100%; padding-top: 100%; position: relative; overflow: hidden; }
.celeb-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.celeb-item:hover .celeb-img-wrap img { transform: scale(1.08); }
.celeb-caption { background: #fff; padding: 12px 14px; font-size: 13.5px; font-weight: 600; color: var(--dark); text-align: center; border-top: 3px solid var(--saffron); }

/* ══════════════════════════════════════
   GALLERY GRID (original photo gallery)
══════════════════════════════════════ */
.gallery-section { padding: 80px 0; background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.gallery-item:hover .gallery-img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(26,63,160,.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: .4s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 28px; }

/* ══════════════════════════════════════
   INFRASTRUCTURE IMAGE GRID (sub-pages)
   2 rows × 3 images
══════════════════════════════════════ */
.infra-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
.infra-img-item { border-radius: 14px; overflow: hidden; box-shadow: 0 6px 20px rgba(26,63,160,.1); transition: .4s; }
.infra-img-item:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(26,63,160,.18); }
.infra-img-item img { width: 100%; height: 200px; object-fit: cover; display: block; transition: .5s; }
.infra-img-item:hover img { transform: scale(1.06); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section { padding: 80px 0; background: var(--light-bg); }
.testi-card { background: #fff; border-radius: 20px; padding: 30px 26px; box-shadow: 0 10px 40px rgba(0,0,0,.06); position: relative; margin: 16px 8px; }
.testi-quote { font-size: 50px; color: var(--saffron); opacity: .2; font-family: Georgia, serif; line-height: .7; margin-bottom: 12px; }
.testi-stars { color: var(--gold); margin-bottom: 12px; font-size: 15px; }
.testi-text { font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 18px; font-size: 14px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--saffron), var(--royal-blue)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.testi-name { font-weight: 700; color: var(--dark); font-size: 14px; }
.testi-role { font-size: 11px; color: var(--saffron); }
.testi-carousel-wrap { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform .5s ease; }
.testi-slide { min-width: 33.333%; padding: 0 8px; }
.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(26,63,160,.2); border: none; cursor: pointer; transition: .3s; }
.testi-dot.active { background: var(--saffron); width: 30px; border-radius: 5px; }

/* ══════════════════════════════════════
   MSG CARDS (Messages section)
══════════════════════════════════════ */
.messages-section { padding: 80px 0; background: var(--light-bg); }
.msg-card { background: #fff; border-radius: 20px; padding: 30px 26px; box-shadow: 0 10px 40px rgba(26,63,160,.08); position: relative; overflow: hidden; height: 100%; transition: .4s; }
.msg-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(26,63,160,.14); }
.msg-card-accent { position: absolute; top: 0; left: 0; width: 100%; height: 5px; }
.msg-avatar { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, var(--saffron), var(--royal-blue)); display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; margin: 0 auto 14px; font-family: 'Playfair Display', serif; font-weight: 700; }

/* ══════════════════════════════════════
   ALUMNI / FEEDBACK IMAGE CARDS
══════════════════════════════════════ */
.alumni-card, .feedback-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 8px 30px rgba(26,63,160,.08); transition: .4s; height: 100%; }
.alumni-card:hover, .feedback-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,63,160,.14); }
.alumni-card-img, .feedback-card-img { width: 100%; height: 210px; object-fit: cover; display: block; transition: .5s; }
.alumni-card:hover .alumni-card-img, .feedback-card:hover .feedback-card-img { transform: scale(1.05); }
.alumni-card-body, .feedback-card-body { padding: 18px 20px; }

/* ══════════════════════════════════════
   MAP / CONTACT
══════════════════════════════════════ */
.map-section { padding: 80px 0; background: #fff; }
.map-frame { border-radius: 18px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.contact-info-card { background: linear-gradient(135deg, var(--royal-blue), #081d70); border-radius: 18px; padding: 36px 30px; color: #fff; height: 100%; }
.ci-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.ci-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; color: var(--gold); }
.ci-text a { color: rgba(255,255,255,.8); text-decoration: none; }
.ci-text a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 60px 0 0; position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--saffron), var(--gold), var(--emerald), var(--sky), var(--royal-blue)); }
.footer-brand { margin-bottom: 20px; }
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
/* Footer logo — no background */
.footer-brand-logo img { height: 50px; width: 50px; object-fit: contain; border-radius: 0 !important; background: transparent !important; }
.footer-title { font-family: 'Playfair Display', serif; color: #fff; font-size: 15px; font-weight: 700; }
.footer-subtitle { font-size: 11px; color: var(--gold); }
footer h6 { color: #fff; font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; margin-bottom: 18px; padding-bottom: 8px; border-bottom: 2px solid rgba(255,255,255,.1); }
.footer-links, .f-links { list-style: none; padding: 0; }
.footer-links li, .f-links li { margin-bottom: 9px; }
.footer-links a, .f-links a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 13px; transition: .2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover, .f-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a::before, .f-links a::before { content: '›'; color: var(--saffron); }
.footer-social a, .f-social a { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.07); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); margin-right: 6px; margin-bottom: 6px; font-size: 14px; transition: .3s; text-decoration: none; }
.footer-social a:hover, .f-social a:hover { background: var(--saffron); color: #fff; transform: translateY(-3px); }
.footer-bottom, .f-bottom { background: rgba(0,0,0,.3); margin-top: 40px; padding: 16px 0; font-size: 12px; text-align: center; }
.footer-bottom a, .f-bottom a { color: var(--gold); text-decoration: none; }

/* ══════════════════════════════════════
   STICKY ELEMENTS
══════════════════════════════════════ */
.sticky-whatsapp, .wa-btn {
  position: fixed; bottom: 24px; right: 20px; z-index: 9999;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 24px; box-shadow: 0 8px 30px rgba(37,211,102,.45);
  text-decoration: none; animation: waBounce 2s infinite; transition: .3s;
}
.sticky-whatsapp:hover, .wa-btn:hover { transform: scale(1.15); color: #fff; }
@keyframes waBounce { 0%,100%{transform:scale(1);} 50%{transform:scale(1.08);} }
@keyframes waPulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.08);} }
.sticky-socials, .sticky-soc { position: fixed; left: 0; top: 50%; transform: translateY(-50%); z-index: 9998; display: flex; flex-direction: column; }
.sticky-social-btn, .ss-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; text-decoration: none; transition: .3s; margin-bottom: 2px; }
.sticky-social-btn:hover, .ss-btn:hover { width: 54px; color: #fff; }
.ss-fb { background: #1877F2; }
.ss-ig { background: linear-gradient(135deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.ss-yt { background: #FF0000; }
.ss-tw { background: #1DA1F2; }

/* ══════════════════════════════════════
   POPUP MODAL
══════════════════════════════════════ */
.popup-modal .modal-content { border: none; border-radius: 20px; overflow: hidden; position: relative; }
.popup-close { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,.5); color: #fff; border: none; display: flex; align-items: center; justify-content: center; z-index: 100; cursor: pointer; font-size: 14px; transition: .2s; }
.popup-close:hover { background: rgba(0,0,0,.8); transform: scale(1.1); }
/* Ensure modal link buttons are fully clickable */
.popup-modal .btn-primary-vps { cursor: pointer; pointer-events: auto; z-index: 10; position: relative; }

/* ══════════════════════════════════════
   DISCLOSURE PAGE
══════════════════════════════════════ */
.disc-badge { background: linear-gradient(135deg, var(--royal-blue), #1A3FA0); color: #fff; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.disc-wrap { background: #fff; border-radius: 16px; box-shadow: 0 8px 30px rgba(26,63,160,.08); overflow: hidden; margin-bottom: 32px; }
.disc-wrap table { margin: 0; }
.disc-wrap thead { background: linear-gradient(135deg, var(--royal-blue), #1A3FA0); }
.disc-wrap thead th { padding: .8rem 1rem; color: #fff; font-weight: 600; border: none; }
.disc-wrap tbody td { padding: .7rem 1rem; vertical-align: middle; border-color: #f0f0f0; font-size: 14px; }
.disc-wrap tbody tr:hover td { background: rgba(26,63,160,.03); }
.disc-btn { background: var(--saffron); color: #fff; border-radius: 20px; padding: 4px 16px; font-size: .78rem; text-decoration: none; display: inline-block; transition: .2s; }
.disc-btn:hover { background: #d44e00; color: #fff; }
.disc-active { background: var(--emerald); color: #fff; padding: 3px 12px; border-radius: 20px; font-size: .78rem; font-weight: 700; white-space: nowrap; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp { from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-20px);}to{opacity:1;transform:translateY(0);} }
@keyframes floatAround { 0%,100%{transform:translateY(0) rotate(0);} 33%{transform:translateY(-18px) rotate(30deg);} 66%{transform:translateY(8px) rotate(-15deg);} }

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.text-saffron { color: var(--saffron); }
.text-royal { color: var(--royal-blue); }
.text-gold { color: var(--gold); }
.text-emerald { color: var(--emerald); }
.bg-cream { background: var(--cream); }
.bg-light-vps, .bg-light { background: var(--light-bg); }
.section-pad, .pad-section { padding: 80px 0; }
.pad-section-sm { padding: 50px 0; }
.vps-card { background: #fff; border-radius: 18px; box-shadow: 0 8px 30px rgba(0,0,0,.07); transition: .4s; overflow: hidden; }
.vps-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,63,160,.12); }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET 992px
══════════════════════════════════════ */
@media (max-width: 992px) {
  /* Testimonials */
  .testi-slide { min-width: 50%; }

  /* About */
  .about-text-wrap { padding-left: 0; padding-top: 28px; }
  .about-badge-float { right: 0; bottom: -10px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: 1/3; grid-row: 1; }

  /* Celebrations */
  .celebrations-grid { grid-template-columns: repeat(2,1fr); }

  /* Infra grid */
  .infra-img-grid { grid-template-columns: repeat(2,1fr); }

  /* Leader photo */
  .leader-photo { height: 420px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE 768px
══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Top bar */
  .top-bar .py-1 { padding-top: 6px !important; padding-bottom: 4px !important; }

  /* Marquee always visible */
  .top-marquee-bar { display: block !important; padding: 5px 0; }
  .marquee-inner span { font-size: 11.5px; }
  .marquee-inner { animation-duration: 22s; }

  /* Navbar */
  .brand-text-main, .brand-name { font-size: 14px; }
  .brand-text-sub, .brand-sub { font-size: 10px; }
  .navbar-logo-img { height: 48px; width: 48px; }

  /* Hero */
  .hero-section { height: 75vh; min-height: 400px; }
  .hero-content { left: 16px; right: 16px; max-width: 100%; }
  .hero-title { font-size: clamp(1.5rem,6vw,2.4rem); }
  .hero-subtitle { font-size: .9rem; }
  .hero-btns { display: flex; flex-wrap: wrap; gap: 8px; }
  .btn-hero-primary, .btn-hero-outline { margin-right: 0; padding: 11px 20px; font-size: 13px; }
  .scroll-indicator { display: none; }
  .floating-shape { display: none; }

  /* Stats ribbon */
  .stat-num { font-size: 1.7rem; }
  .stat-label { font-size: 11px; }

  /* Section headers */
  .section-header { margin-bottom: 34px; }
  .sec-title, .sec-h2 { font-size: clamp(1.4rem,5vw,2rem); }

  /* About */
  .about-section { padding: 50px 0; }
  .about-text-wrap { padding-left: 0; }

  /* Buttons */
  .btn-primary-vps, .btn-orange, .btn-blue, .btn-green { padding: 10px 22px; font-size: 13px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: 1/3; grid-row: 1; height: 180px; }
  .gallery-item { height: 140px; }

  /* Celebrations 1 col on small */
  .celebrations-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Infra grid */
  .infra-img-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .infra-img-item img { height: 150px; }

  /* Team cards */
  .team-card-img-wrap { height: 220px; }

  /* Leader photo */
  .leader-photo { height: 300px; }

  /* Testimonials */
  .testi-slide { min-width: 100%; }
  .testi-card { margin: 10px 4px; padding: 22px 18px; }

  /* Counter */
  .counter-section { padding: 60px 0; background-attachment: scroll; }
  .counter-num { font-size: 2.4rem; }

  /* Activity cards */
  .activity-card { height: 220px; }

  /* Hide sticky socials */
  .sticky-socials, .sticky-soc { display: none; }

  /* CTA button */
  .cta-admissions-fixed { bottom: 86px; right: 14px; font-size: 10px; padding: 10px 10px; max-width: 70px; }
  .cta-admissions-fixed i { font-size: 14px; }

  /* Footer */
  footer { padding: 40px 0 0; }
  footer h6 { margin-bottom: 14px; }
  .footer-links li, .f-links li { margin-bottom: 7px; }

  /* Map section */
  .map-section { padding: 50px 0; }
  .contact-info-card { padding: 28px 22px; border-radius: 16px; }

  /* Disclosure tables — horizontal scroll */
  .disc-wrap { overflow-x: auto; }
  .disc-wrap table { min-width: 500px; }
  .disc-wrap tbody td { font-size: 12.5px; padding: .6rem .8rem; }
  .disc-wrap thead th { padding: .7rem .8rem; font-size: 12.5px; }

  /* Inner banner */
  .inner-banner { padding: 44px 0; }
  .inner-banner h1 { font-size: clamp(1.3rem,5vw,2rem); }

  /* Alumni / feedback grid */
  .alumni-card-img, .feedback-card-img { height: 180px; }

  /* General padding */
  .pad-section, .section-pad { padding: 50px 0; }
  .features-section { padding: 50px 0; }
  .activities-section { padding: 50px 0; }
  .gallery-section { padding: 50px 0; }
  .testimonials-section { padding: 50px 0; }
  .map-section { padding: 50px 0; }
  .about-section { padding: 50px 0; }

  /* Text alignment mobile */
  .text-md-start { text-align: center !important; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE 480px
══════════════════════════════════════ */
@media (max-width: 480px) {
  /* 1 col celebrations */
  .celebrations-grid { grid-template-columns: 1fr; }

  /* infra 1 col */
  .infra-img-grid { grid-template-columns: 1fr; }
  .infra-img-item img { height: 200px; }

  /* Gallery 1 col */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: 1; grid-row: 1; height: 200px; }
  .gallery-item { height: 160px; }

  /* Hero */
  .hero-section { height: 80vh; }
  .hero-badge { font-size: 11px; padding: 5px 14px; }

  /* Stats ribbon stack */
  .stats-ribbon .row { flex-direction: column; }
  .stat-sep { display: none; }

  /* Buttons full width */
  .hero-btns .btn-hero-primary,
  .hero-btns .btn-hero-outline { width: 100%; display: block; text-align: center; margin-right: 0; }

  /* Team cards */
  .team-card-img-wrap { height: 200px; }

  /* Leader photo */
  .leader-photo { height: 260px; }

  /* Contact card stack */
  .ci-item { flex-direction: row; }

  /* Top bar phone numbers wrap */
  .top-bar .d-flex.gap-3 { gap: 6px !important; }
  .top-bar a { font-size: 11px; }
}

/* ══════════════════════════════════════
   MOBILE NAVBAR MENU OPEN STATE
══════════════════════════════════════ */
#navbarMenu.d-flex.flex-column {
  position: absolute !important;
  top: 78px !important;
  left: 0 !important;
  right: 0 !important;
  background: #fff !important;
  z-index: 9998 !important;
  padding: 16px 20px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.12) !important;
  border-top: 3px solid var(--saffron);
  max-height: 80vh;
  overflow-y: auto;
}
#navbarMenu.d-flex.flex-column .nav-link-custom,
#navbarMenu.d-flex.flex-column .nav-item-vps {
  padding: 12px 4px !important;
  border-bottom: 1px solid rgba(0,0,0,.05);
  font-size: 14px !important;
  width: 100%;
  display: block;
}
#navbarMenu.d-flex.flex-column .dropdown-menu-custom,
#navbarMenu.d-flex.flex-column .dd-menu {
  position: static !important;
  display: block !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  background: var(--light-bg) !important;
  padding: 6px 8px !important;
  margin: 4px 0 8px 10px !important;
}
#navbarMenu.d-flex.flex-column .nav-disclosure-btn,
#navbarMenu.d-flex.flex-column .nav-disc {
  margin-left: 0 !important;
  margin-top: 8px !important;
  display: inline-block !important;
}


/* ══════════════════════════════════════
   INDEX PAGE — Message card accents & quote
══════════════════════════════════════ */
.msg-card:nth-child(1) .msg-card-accent { background: linear-gradient(90deg, var(--saffron), var(--gold)); }
.msg-card:nth-child(2) .msg-card-accent { background: linear-gradient(90deg, var(--royal-blue), var(--sky)); }
.msg-card:nth-child(3) .msg-card-accent { background: linear-gradient(90deg, var(--emerald), #00e0b0); }
.msg-quote { font-size: 60px; line-height: .5; color: var(--saffron); opacity: .15; font-family: Georgia, serif; position: absolute; top: 20px; right: 24px; }

/* ══════════════════════════════════════
   DISCLOSURE PAGE — Tables & badges
══════════════════════════════════════ */
.disc-badge { background: linear-gradient(135deg, var(--royal-blue), #1A3FA0); color: #fff; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.disc-wrap { background: #fff; border-radius: 16px; box-shadow: 0 8px 30px rgba(26,63,160,.08); overflow: hidden; margin-bottom: 36px; }
.disc-wrap table { margin: 0; }
.disc-wrap thead { background: linear-gradient(135deg, var(--royal-blue), #1A3FA0); }
.disc-wrap thead th { padding: .85rem 1.25rem; color: #fff; font-weight: 600; border: none; }
.disc-wrap tbody td { padding: .78rem 1.25rem; vertical-align: middle; border-color: #f0f0f0; font-size: 14px; }
.disc-wrap tbody tr:hover td { background: rgba(26,63,160,.03); }
.disc-btn { background: var(--saffron); color: #fff; border-radius: 20px; padding: 4px 18px; font-size: .8rem; text-decoration: none; display: inline-block; transition: .2s; }
.disc-btn:hover { background: #d44e00; color: #fff; transform: translateY(-1px); }
.disc-active { background: var(--emerald); color: #fff; padding: 3px 14px; border-radius: 20px; font-size: .82rem; font-weight: 700; }

/* ══════════════════════════════════════
   KINDERGARTEN PAGE — Playful theme extras
══════════════════════════════════════ */
.kg-card { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,.08); transition: .4s; background: #fff; }
.kg-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.14); }
.kg-badge { display: inline-block; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; }


/* ══════════════════════════════════════
   KINDERGARTEN PAGE — Complete Playful Theme
   Uses --kg-* variables to avoid conflicts
══════════════════════════════════════ */

/* Kindergarten colour variables (prefixed kg- to avoid conflicts) */
:root {
  --kg-pink:   #FF6B9D;
  --kg-yellow: #FFD93D;
  --kg-blue:   #6C9FFF;
  --kg-green:  #6BCB77;
  --kg-orange: #FF8C42;
  --kg-purple: #B084CC;
  --kg-red:    #FF5757;
}

/* ── REVEAL ANIMATION (replaces AOS — no hidden flash) ── */
.kinder-reveal {
  opacity: 1;
  transform: none;
  transition: opacity .6s ease, transform .6s ease;
}
/* Only animate when JS adds revealed class */
.kinder-reveal:not(.revealed) {
  opacity: 0;
  transform: translateY(28px);
}
.kinder-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ── HERO ── */
.kinder-hero {
  background: linear-gradient(135deg, #FF6B9D 0%, #FF8C42 35%, #FFD93D 65%, #6C9FFF 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
}

/* Moving background shapes */
.kinder-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .18;
  animation: kinderFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.ks1 { width: 300px; height: 300px; background: #fff; top: -80px; left: -60px; animation-delay: 0s; }
.ks2 { width: 200px; height: 200px; background: #FFD93D; bottom: -40px; right: 5%; animation-delay: 2s; animation-direction: reverse; }
.ks3 { width: 140px; height: 140px; background: #FF6B9D; top: 30%; right: 20%; animation-delay: 1s; }
.ks4 { width: 80px;  height: 80px;  background: #6BCB77; top: 60%; left: 15%; animation-delay: 3s; }

@keyframes kinderFloat {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33%       { transform: translateY(-28px) rotate(18deg) scale(1.05); }
  66%       { transform: translateY(14px) rotate(-10deg) scale(.96); }
}

/* Hero title */
.kinder-hero-title {
  font-family: 'Fredoka One', 'Nunito', cursive;
  font-size: clamp(2rem, 6vw, 3.8rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 3px 12px rgba(0,0,0,.15);
}
.kinder-hero-title .kg-bounce {
  color: var(--kg-yellow);
  display: inline-block;
  animation: kgBounce 2s ease-in-out infinite;
}
@keyframes kgBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.kinder-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(.95rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,.95);
  margin-bottom: 28px;
  font-weight: 600;
}

/* Breadcrumb inside hero */
.kinder-breadcrumb-ol {
  background: rgba(255,255,255,.2);
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-flex;
  margin-bottom: 0;
  font-size: 13px;
}
.kinder-breadcrumb-ol .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,.6);
}

/* Floating emoji cartoons */
.cartoon-wrap {
  position: relative;
  height: 300px;
  width: 100%;
}
.cartoon {
  position: absolute;
  font-size: 2.6rem;
  line-height: 1;
  display: inline-block;
  animation: cartoonBounce 3s ease-in-out infinite;
  user-select: none;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.15));
}
.c1 { top: 5%;   left: 8%;   animation-delay: 0s;    font-size: 3.4rem; }
.c2 { top: 2%;   left: 38%;  animation-delay: .4s; }
.c3 { top: 2%;   right: 8%;  animation-delay: .8s;   font-size: 3rem; }
.c4 { top: 38%;  left: 0%;   animation-delay: 1.2s; }
.c5 { top: 40%;  left: 28%;  animation-delay: 1.6s;  font-size: 3.2rem; }
.c6 { top: 38%;  right: 4%;  animation-delay: 2s; }
.c7 { bottom: 4%; left: 12%; animation-delay: 2.4s;  font-size: 2.8rem; }
.c8 { bottom: 4%; right: 18%;animation-delay: 2.8s;  font-size: 3.6rem; }

@keyframes cartoonBounce {
  0%, 100% { transform: translateY(0) rotate(-5deg) scale(1); }
  50%       { transform: translateY(-16px) rotate(5deg) scale(1.1); }
}

/* ── BUTTONS ── */
.btn-kinder {
  display: inline-block;
  padding: 13px 28px;
  background: #fff;
  color: var(--kg-pink);
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255,107,157,.35);
  transition: .3s;
  border: none;
  cursor: pointer;
}
.btn-kinder:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(255,107,157,.45);
  color: var(--kg-pink);
  text-decoration: none;
}
.btn-kinder-outline {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: #fff;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.75);
  transition: .3s;
  cursor: pointer;
}
.btn-kinder-outline:hover {
  background: rgba(255,255,255,.2);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
  text-decoration: none;
}

/* ── SECTIONS ── */
.kinder-section { padding: 80px 0; }

/* Section tag */
.sec-tag-kinder {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,107,157,.15), rgba(255,217,61,.15));
  color: var(--kg-pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
}

/* Headings */
.kinder-h2 {
  font-family: 'Fredoka One', 'Nunito', cursive;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0;
}
.kinder-h2 span { color: var(--kg-pink); }

/* Divider line */
.kg-divider {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  margin: 14px auto 24px;
  display: block;
}

/* ── FEATURE CARDS ── */
.kinder-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.07);
  transition: transform .4s ease, box-shadow .4s ease;
  height: 100%;
  position: relative;
  border-bottom: 4px solid transparent;
}
.kinder-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}
.kc-1 { border-bottom-color: var(--kg-pink); }
.kc-2 { border-bottom-color: var(--kg-yellow); }
.kc-3 { border-bottom-color: var(--kg-blue); }
.kc-4 { border-bottom-color: var(--kg-green); }
.kc-5 { border-bottom-color: var(--kg-orange); }
.kc-6 { border-bottom-color: var(--kg-purple); }

.kc-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
  animation: iconWiggle 3s ease-in-out infinite;
}
@keyframes iconWiggle {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50%       { transform: rotate(5deg) scale(1.1); }
}
.kinder-card h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.kinder-card p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  font-family: 'Nunito', sans-serif;
}

/* ── PROGRAM CARDS ── */
.program-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  transition: transform .4s ease, box-shadow .4s ease;
  height: 100%;
  background: #fff;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0,0,0,.14);
}
.program-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.program-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.program-card:hover .program-img-wrap img {
  transform: scale(1.06);
}
.program-body {
  padding: 22px 20px;
  font-family: 'Nunito', sans-serif;
}
.program-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ── CTA SECTION ── */
.kg-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #FF6B9D, #FF8C42, #FFD93D);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.kg-cta-emojis {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 50px;
  opacity: .1;
  pointer-events: none;
  letter-spacing: 4px;
}
.kg-cta-content { position: relative; z-index: 1; }
.kg-cta-btn-white {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: var(--kg-pink);
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
  transition: .3s;
}
.kg-cta-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0,0,0,.2);
  color: var(--kg-pink);
  text-decoration: none;
}
.kg-cta-btn-outline {
  display: inline-block;
  padding: 13px 36px;
  background: rgba(255,255,255,.2);
  color: #fff;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.6);
  transition: .3s;
}
.kg-cta-btn-outline:hover {
  background: rgba(255,255,255,.35);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .kinder-hero { min-height: 380px; padding: 60px 0 50px; }
  .cartoon-wrap { height: 240px; }
}
@media (max-width: 768px) {
  .kinder-hero { padding: 50px 0 40px; min-height: auto; }
  .kinder-hero-title { font-size: clamp(1.7rem, 7vw, 2.3rem); }
  .kinder-section { padding: 50px 0; }
  .kinder-card { padding: 20px 14px; }
  .kc-icon { font-size: 2.4rem; }
  .program-img-wrap { height: 160px; }
  .btn-kinder, .btn-kinder-outline { padding: 11px 22px; font-size: .9rem; }
  .kg-cta-section { padding: 55px 0; }
  .kg-cta-emojis { font-size: 32px; }
}
@media (max-width: 480px) {
  .kinder-hero-title { font-size: clamp(1.5rem, 8vw, 1.9rem); }
  .kinder-h2 { font-size: clamp(1.4rem, 7vw, 1.8rem); }
  .kc-icon { font-size: 2rem; }
  .kinder-card { padding: 18px 12px; }
  .kg-cta-btn-white, .kg-cta-btn-outline { padding: 12px 24px; font-size: .95rem; width: 100%; text-align: center; }
}


/* ══════════════════════════════════════
   CAREER PAGE — Job cards & why-join section
══════════════════════════════════════ */

/* ── Why Join Cards ── */
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(26,63,160,.08);
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(26,63,160,.14);
}
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
  transition: transform .3s ease;
}
.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
}
.why-card h5 {
  color: var(--dark);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* ── Job Cards ── */
.job-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 28px rgba(26,63,160,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid rgba(26,63,160,.06);
}
.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(26,63,160,.15);
}

/* Job card header band */
.job-header {
  padding: 24px 26px 18px;
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
  border-bottom: 1px solid rgba(26,63,160,.07);
}
.job-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 10px;
}
.job-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: #777;
}
.job-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.job-meta i {
  color: var(--saffron);
  font-size: 11px;
}

/* Job card body */
.job-body {
  padding: 20px 26px;
  flex: 1;
}
.job-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}
.job-requirements {
  list-style: none;
  padding: 0;
  margin: 0;
}
.job-requirements li {
  font-size: 13.5px;
  color: #555;
  padding: 6px 0 6px 22px;
  position: relative;
  border-bottom: 1px dashed rgba(26,63,160,.08);
  line-height: 1.5;
}
.job-requirements li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--emerald);
  font-weight: 700;
  font-size: 12px;
}
.job-requirements li:last-child {
  border-bottom: none;
}

/* Job card footer with apply buttons */
.job-footer {
  padding: 18px 26px 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(26,63,160,.07);
  background: #fafbff;
}
.btn-apply-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
  flex: 1;
  justify-content: center;
  min-width: 140px;
}
.btn-apply-wa:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,.35);
  text-decoration: none;
}
.btn-apply-wa i { font-size: 15px; }

.btn-apply-email {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: var(--royal-blue);
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
  flex: 1;
  justify-content: center;
  min-width: 140px;
}
.btn-apply-email:hover {
  background: #0f2878;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26,63,160,.35);
  text-decoration: none;
}
.btn-apply-email i { font-size: 13px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .why-card { padding: 22px 16px; }
  .why-icon { width: 52px; height: 52px; font-size: 20px; }
  .job-header { padding: 18px 18px 14px; }
  .job-body { padding: 16px 18px; }
  .job-footer { padding: 14px 18px 18px; }
  .job-title { font-size: 1.05rem; }
  .btn-apply-wa, .btn-apply-email { font-size: 12px; padding: 9px 14px; }
}
@media (max-width: 480px) {
  .job-footer { flex-direction: column; }
  .btn-apply-wa, .btn-apply-email { min-width: 100%; }
  .job-meta { gap: 8px; font-size: 11.5px; }
}

