@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Outfit:wght@500;700;800;900&display=swap');

:root {
  /* Dark Magical Color Palette */
  --bg-dark: #071426;             /* Midnight Navy Main Background */
  --bg-indigo: #17112F;           /* Dark Indigo Secondary Background */
  --bg-card: #101C33;             /* Deep Blue Card Background */
  
  --color-yellow: #FFD84D;        /* Glowing Yellow Accent */
  --color-blue: #4CC9F0;          /* Glowing Sky Blue Accent */
  --color-pink: #FF6FB1;          /* Glowing Pink Accent */
  --color-green: #7ED957;         /* Glowing Green Accent */
  --color-orange: #FF9F1C;        /* Glowing Orange Accent */
  --color-purple: #9B5DE5;        /* Glowing Purple Accent */
  
  --text-white: #FFFFFF;
  --text-gray: #B0C4DE;           /* Soft light grey-blue */
  --text-muted: #708090;          /* Muted slate gray */
  
  /* Glowing Shadows */
  --glow-yellow: 0 0 20px rgba(255, 216, 77, 0.25);
  --glow-blue: 0 0 20px rgba(76, 201, 240, 0.25);
  --glow-pink: 0 0 20px rgba(255, 111, 177, 0.25);
  --glow-green: 0 0 20px rgba(126, 217, 87, 0.25);
  --glow-purple: 0 0 20px rgba(155, 93, 229, 0.25);
  --glow-orange: 0 0 20px rgba(255, 159, 28, 0.25);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 50px;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Nunito', sans-serif;
  
  --transition-normal: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Base & Scrollbar --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-purple);
  border-radius: var(--radius-pill);
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-pink);
}

/* --- Helper Classes & Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}

.section-padding {
  padding: 110px 0;
  position: relative;
}

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

/* Playful Neon Badges */
.badge {
  display: inline-block;
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.badge-pink { background-color: rgba(255, 111, 177, 0.12); color: var(--color-pink); border: 1.5px solid rgba(255, 111, 177, 0.3); box-shadow: var(--glow-pink); }
.badge-blue { background-color: rgba(76, 201, 240, 0.12); color: var(--color-blue); border: 1.5px solid rgba(76, 201, 240, 0.3); box-shadow: var(--glow-blue); }
.badge-yellow { background-color: rgba(255, 216, 77, 0.12); color: var(--color-yellow); border: 1.5px solid rgba(255, 216, 77, 0.3); box-shadow: var(--glow-yellow); }
.badge-green { background-color: rgba(126, 217, 87, 0.12); color: var(--color-green); border: 1.5px solid rgba(126, 217, 87, 0.3); box-shadow: var(--glow-green); }

/* Playful Dark Section Headings */
.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}
.section-title span {
  background: linear-gradient(120deg, var(--color-blue), var(--color-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-desc {
  max-width: 600px;
  margin: 0 auto 55px auto;
  color: var(--text-gray);
  font-size: 1.1rem;
}

/* Glowing Accent Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition-bounce);
}
.btn:hover {
  transform: translateY(-4px) scale(1.03);
}
.btn:active {
  transform: translateY(0) scale(0.98);
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  color: white;
  box-shadow: 0 8px 25px rgba(255, 111, 177, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 12px 35px rgba(255, 111, 177, 0.55);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--color-blue), #32e0c4);
  color: #071426;
  box-shadow: 0 8px 25px rgba(76, 201, 240, 0.3);
}
.btn-secondary:hover {
  box-shadow: 0 12px 35px rgba(76, 201, 240, 0.55);
}
.btn-yellow {
  background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
  color: #071426;
  box-shadow: 0 8px 25px rgba(255, 216, 77, 0.3);
}
.btn-yellow:hover {
  box-shadow: 0 12px 35px rgba(255, 216, 77, 0.55);
}
.btn-green {
  background: linear-gradient(135deg, var(--color-green), #4ff587);
  color: #071426;
  box-shadow: 0 8px 25px rgba(126, 217, 87, 0.3);
}
.btn-green:hover {
  box-shadow: 0 12px 35px rgba(126, 217, 87, 0.55);
}
.btn-white {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-white:hover {
  background: white;
  color: var(--bg-dark);
}

/* --- Floating Background Elements (Magical Glowing Particle System) --- */
.decorations-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.floating-element {
  position: absolute;
  opacity: 0.25;
  animation: floatUp 16s linear infinite;
  pointer-events: none;
  filter: drop-shadow(0 0 10px currentColor);
}

/* --- Header / Sticky Glassmorphism Navbar --- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(7, 20, 38, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  transition: var(--transition-normal);
}
.header.scrolled {
  background-color: rgba(7, 20, 38, 0.9);
  padding: 5px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--color-green);
  object-fit: cover;
  transition: var(--transition-bounce);
  filter: drop-shadow(0 0 5px rgba(126, 217, 87, 0.4));
}
.logo-area:hover .logo-img {
  transform: rotate(360deg) scale(1.1);
  filter: drop-shadow(0 0 10px rgba(126, 217, 87, 0.8));
}
.school-name-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
}
.school-tagline-text {
  font-size: 0.75rem;
  color: var(--color-green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-gray);
  position: relative;
  padding: 8px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-pink));
  border-radius: 2px;
  transition: var(--transition-normal);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link:hover {
  color: white;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1001;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background: white;
  margin: 5px auto;
  transition: var(--transition-normal);
}

/* --- Homepage Hero (Autoplay video background) --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 110px 0;
  overflow: hidden;
  background-color: var(--bg-dark);
}
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 20, 38, 0.92) 0%, rgba(23, 17, 47, 0.85) 100%);
  z-index: 2;
}
.hero-content-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 50px;
}
.hero-text {
  max-width: 650px;
}
.hero-text h1 {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  color: white;
}
.hero-text h1 span {
  background: linear-gradient(125deg, var(--color-yellow), var(--color-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 111, 177, 0.2);
}
.hero-text p {
  font-size: 1.3rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-right-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3.5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-card);
  box-shadow: 0 20px 45px rgba(0,0,0,0.5), var(--glow-blue);
  transform: rotate(2deg);
  transition: var(--transition-bounce);
}
.hero-right-card:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6), var(--glow-pink);
  border-color: rgba(255, 111, 177, 0.3);
}
.hero-right-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge-float {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--color-yellow);
  color: var(--bg-dark);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 900;
  box-shadow: var(--glow-yellow);
  text-align: center;
  transform: rotate(-5deg);
  animation: wobble 4s ease-in-out infinite;
  z-index: 10;
}
.hero-badge-float span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(7, 20, 38, 0.8);
}

/* Decorative wavy curves */
.wave-divider-top {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 5;
  pointer-events: none;
}

/* --- About Us (Magical dark purple section) --- */
.about {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-indigo) 100%);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 60px;
}
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 5px solid rgba(255,255,255,0.08);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  transition: var(--transition-bounce);
  background-color: var(--bg-card);
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-box:nth-child(1) {
  transform: rotate(-3deg);
  margin-top: 30px;
  border-color: rgba(76, 201, 240, 0.2);
}
.about-img-box:nth-child(2) {
  transform: rotate(4deg);
  border-color: rgba(255, 111, 177, 0.2);
}
.about-img-box:nth-child(3) {
  transform: rotate(2deg);
  grid-column: span 2;
  aspect-ratio: 16/9;
  border-color: rgba(255, 216, 77, 0.2);
}
.about-img-box:hover {
  transform: rotate(0) scale(1.05);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 35px;
}
.about-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feat-icon-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--color-green);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: var(--glow-green);
}
.about-feat-item h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: white;
}
.about-feat-item p {
  font-size: 0.9rem;
  color: var(--text-gray);
}
.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 45px;
  border-top: 2px dashed rgba(255, 255, 255, 0.1);
  padding-top: 35px;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--color-pink);
  display: block;
  text-shadow: var(--glow-pink);
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 700;
}

/* --- Facilities (Glowing deep blue card grid) --- */
.facilities {
  background-color: var(--bg-dark);
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.facility-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 38px 24px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: var(--transition-bounce);
  border: 2px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}
.facility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}
.facility-card.fc-1::before { background-color: var(--color-pink); }
.facility-card.fc-2::before { background-color: var(--color-blue); }
.facility-card.fc-3::before { background-color: var(--color-green); }
.facility-card.fc-4::before { background-color: var(--color-yellow); }
.facility-card.fc-5::before { background-color: var(--color-purple); }

.facility-card:hover {
  transform: translateY(-10px);
}
.facility-card.fc-1:hover { border-color: rgba(255, 111, 177, 0.4); box-shadow: 0 15px 35px rgba(0,0,0,0.4), var(--glow-pink); }
.facility-card.fc-2:hover { border-color: rgba(76, 201, 240, 0.4); box-shadow: 0 15px 35px rgba(0,0,0,0.4), var(--glow-blue); }
.facility-card.fc-3:hover { border-color: rgba(126, 217, 87, 0.4); box-shadow: 0 15px 35px rgba(0,0,0,0.4), var(--glow-green); }
.facility-card.fc-4:hover { border-color: rgba(255, 216, 77, 0.4); box-shadow: 0 15px 35px rgba(0,0,0,0.4), var(--glow-yellow); }
.facility-card.fc-5:hover { border-color: rgba(155, 93, 229, 0.4); box-shadow: 0 15px 35px rgba(0,0,0,0.4), var(--glow-purple); }

.facility-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition-bounce);
  border: 1.5px solid transparent;
}
.facility-card:hover .facility-icon {
  transform: scale(1.1) rotate(12deg);
}
.fc-1 .facility-icon { background-color: rgba(255, 111, 177, 0.08); color: var(--color-pink); border-color: rgba(255, 111, 177, 0.2); }
.fc-2 .facility-icon { background-color: rgba(76, 201, 240, 0.08); color: var(--color-blue); border-color: rgba(76, 201, 240, 0.2); }
.fc-3 .facility-icon { background-color: rgba(126, 217, 87, 0.08); color: var(--color-green); border-color: rgba(126, 217, 87, 0.2); }
.fc-4 .facility-icon { background-color: rgba(255, 216, 77, 0.08); color: var(--color-yellow); border-color: rgba(255, 216, 77, 0.2); }
.fc-5 .facility-icon { background-color: rgba(155, 93, 229, 0.08); color: var(--color-purple); border-color: rgba(155, 93, 229, 0.2); }

.facility-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: white;
}
.facility-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* --- Programs / Classes (Glowing dark borders) --- */
.programs {
  background-color: var(--bg-indigo);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.program-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: var(--transition-bounce);
  border: 2px solid rgba(255,255,255,0.04);
}
.program-card:hover {
  transform: translateY(-8px);
}
.program-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  position: relative;
  border-bottom: 3px solid rgba(255,255,255,0.05);
}
.program-meta {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: var(--bg-dark);
  color: white;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.program-meta span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.pc-1 .program-meta span { background-color: var(--color-pink); }
.pc-2 .program-meta span { background-color: var(--color-blue); }
.pc-3 .program-meta span { background-color: var(--color-yellow); }
.pc-4 .program-meta span { background-color: var(--color-green); }
.pc-5 .program-meta span { background-color: var(--color-orange); }
.pc-6 .program-meta span { background-color: var(--color-purple); }

.program-card.pc-1:hover { border-color: rgba(255, 111, 177, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.45), var(--glow-pink); }
.program-card.pc-2:hover { border-color: rgba(76, 201, 240, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.45), var(--glow-blue); }
.program-card.pc-3:hover { border-color: rgba(255, 216, 77, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.45), var(--glow-yellow); }
.program-card.pc-4:hover { border-color: rgba(126, 217, 87, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.45), var(--glow-green); }
.program-card.pc-5:hover { border-color: rgba(255, 159, 28, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.45), var(--glow-orange); }
.program-card.pc-6:hover { border-color: rgba(155, 93, 229, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.45), var(--glow-purple); }

.program-info {
  padding: 30px;
}
.program-info h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: white;
}
.program-info p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 22px;
}
.program-details-list {
  border-top: 1px dashed rgba(255,255,255,0.08);
  padding-top: 18px;
  margin-bottom: 26px;
}
.program-details-list li {
  font-size: 0.9rem;
  color: var(--text-white);
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.program-details-list li i {
  color: var(--color-green);
  font-size: 0.8rem;
}

/* --- Learning Approach --- */
.approach {
  background-color: var(--bg-dark);
}
.approach-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.approach-left h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.approach-left p {
  color: var(--text-gray);
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.approach-left img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 6px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transform: rotate(-2deg);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.approach-card {
  background-color: var(--bg-card);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid rgba(255,255,255,0.03);
}
.approach-card:hover {
  transform: translateY(-5px);
}
.approach-card.ac-1:hover { border-color: rgba(255, 111, 177, 0.3); box-shadow: 0 15px 30px rgba(0,0,0,0.3), var(--glow-pink); }
.approach-card.ac-2:hover { border-color: rgba(76, 201, 240, 0.3); box-shadow: 0 15px 30px rgba(0,0,0,0.3), var(--glow-blue); }
.approach-card.ac-3:hover { border-color: rgba(255, 216, 77, 0.3); box-shadow: 0 15px 30px rgba(0,0,0,0.3), var(--glow-yellow); }
.approach-card.ac-4:hover { border-color: rgba(126, 217, 87, 0.3); box-shadow: 0 15px 30px rgba(0,0,0,0.3), var(--glow-green); }
.approach-card.ac-5:hover { border-color: rgba(155, 93, 229, 0.3); box-shadow: 0 15px 30px rgba(0,0,0,0.3), var(--glow-purple); }
.approach-card.ac-6:hover { border-color: rgba(255, 111, 177, 0.3); box-shadow: 0 15px 30px rgba(0,0,0,0.3), var(--glow-pink); }

.approach-card-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
}
.ac-1 .approach-card-icon { background-color: rgba(255, 111, 177, 0.08); color: var(--color-pink); }
.ac-2 .approach-card-icon { background-color: rgba(76, 201, 240, 0.08); color: var(--color-blue); }
.ac-3 .approach-card-icon { background-color: rgba(255, 216, 77, 0.08); color: var(--color-yellow); }
.ac-4 .approach-card-icon { background-color: rgba(126, 217, 87, 0.08); color: var(--color-green); }
.ac-5 .approach-card-icon { background-color: rgba(155, 93, 229, 0.08); color: var(--color-purple); }
.ac-6 .approach-card-icon { background-color: rgba(255, 111, 177, 0.08); color: var(--color-pink); }

.approach-card h4 {
  font-size: 1.15rem;
  color: white;
}
.approach-card p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* --- Video Gallery (Cinematic hover overlays) --- */
.video-gallery {
  background-color: var(--bg-indigo);
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}
.video-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  transition: var(--transition-bounce);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.04);
}
.video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 111, 177, 0.4);
  box-shadow: 0 25px 45px rgba(0,0,0,0.5), var(--glow-pink);
}
.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #000;
}
.video-thumbnail-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: var(--transition-normal);
}
.video-card:hover .video-thumbnail-wrapper video {
  transform: scale(1.05);
  opacity: 0.9;
}
.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: white;
  color: var(--color-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: var(--transition-bounce);
  z-index: 10;
}
.play-btn-overlay i {
  margin-left: 5px;
}
.video-card:hover .play-btn-overlay {
  transform: translate(-50%, -50%) scale(1.15);
  background-color: var(--color-pink);
  color: white;
  box-shadow: var(--glow-pink);
}
.video-info-box {
  padding: 24px;
}
.video-info-box h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: white;
}
.video-info-box p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Video Modal Lightbox */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 20, 38, 0.97);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
  padding: 20px;
}
.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.video-modal-content {
  width: 100%;
  max-width: 800px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 65px rgba(0,0,0,0.6);
  background-color: #000;
  transform: scale(0.9);
  transition: var(--transition-bounce);
  border: 2px solid rgba(255,255,255,0.08);
}
.video-modal.active .video-modal-content {
  transform: scale(1);
}
.video-modal-player {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  outline: none;
}
.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
}
.video-modal-close:hover {
  color: var(--color-pink);
  text-shadow: var(--glow-pink);
}

/* --- Photo Gallery (Magical Hover zoom) --- */
.gallery {
  background-color: var(--bg-dark);
}
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.filter-btn {
  background-color: rgba(255,255,255,0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: var(--text-gray);
  transition: var(--transition-bounce);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-green);
  background-color: var(--color-green);
  color: var(--bg-dark);
  box-shadow: var(--glow-green);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border: 5px solid rgba(255,255,255,0.06);
  transition: var(--transition-bounce);
  background-color: var(--bg-card);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-normal);
}
.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 17, 47, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  color: white;
  opacity: 0;
  transition: var(--transition-normal);
}
.gallery-item-overlay h4 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  transform: translateY(15px);
  transition: var(--transition-bounce);
}
.gallery-item-overlay p {
  font-size: 0.85rem;
  color: var(--text-gray);
  transform: translateY(15px);
  transition: var(--transition-bounce);
}
.gallery-item:hover {
  transform: scale(1.03) rotate(1deg);
  border-color: var(--color-green);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4), var(--glow-green);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-item-overlay h4,
.gallery-item:hover .gallery-item-overlay p {
  transform: translateY(0);
}
.gallery-item.hidden {
  display: none;
}

/* --- Testimonials (Glowing Carousel) --- */
.testimonials {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-indigo) 100%);
  overflow: hidden;
}
.carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}
.carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  background-color: var(--bg-card);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 3px solid rgba(255, 255, 255, 0.05);
}
.carousel-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
.carousel-slide {
  min-width: 100%;
  padding: 55px 70px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stars-rating {
  color: var(--color-yellow);
  font-size: 1.4rem;
  margin-bottom: 24px;
  text-shadow: var(--glow-yellow);
}
.review-text {
  font-size: 1.25rem;
  color: white;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 30px;
  font-weight: 600;
}
.parent-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  color: white;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: var(--glow-pink);
}
.parent-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: white;
}
.parent-role {
  font-size: 0.8rem;
  color: var(--color-blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-dark);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
  z-index: 10;
}
.carousel-nav-btn:hover {
  background-color: var(--color-pink);
  color: white;
  border-color: var(--color-pink);
  box-shadow: var(--glow-pink);
  transform: translateY(-50%) scale(1.1);
}
.carousel-btn-prev { left: -25px; }
.carousel-btn-next { right: -25px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
}
.carousel-dot.active {
  width: 28px;
  background-color: var(--color-pink);
  border-radius: var(--radius-pill);
  box-shadow: var(--glow-pink);
}

/* --- Admissions / Enquiry Form (Dark neon inputs) --- */
.enquiry {
  background-color: var(--bg-dark);
}
.enquiry-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.enquiry-info h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.enquiry-info p {
  color: var(--text-gray);
  font-size: 1.05rem;
  margin-bottom: 30px;
}
.enquiry-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-yellow);
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--glow-yellow);
}
.step-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: white;
}
.step-text p {
  font-size: 0.9rem;
  color: var(--text-gray);
}
.enquiry-form-container {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.4);
  border: 2px solid rgba(255, 255, 255, 0.05);
}
.form-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
  text-align: center;
  color: white;
}
.form-subtitle {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 30px;
  text-align: center;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group.full-width {
  grid-column: span 2;
}
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: white;
}
.form-input {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: white;
  transition: var(--transition-normal);
  background-color: #0b1526;
}
.form-input:focus {
  border-color: var(--color-pink);
  background-color: var(--bg-card);
  outline: none;
  box-shadow: 0 0 15px rgba(255, 111, 177, 0.25);
}
textarea.form-input {
  resize: vertical;
  min-height: 100px;
}
.enquiry-form .btn {
  width: 100%;
  padding: 16px;
}

/* --- Contact Us (Glowing borders) --- */
.contact {
  background-color: var(--bg-indigo);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-method {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cm-1 .contact-icon { background-color: rgba(255, 111, 177, 0.08); color: var(--color-pink); border-color: rgba(255, 111, 177, 0.2); }
.cm-2 .contact-icon { background-color: rgba(76, 201, 240, 0.08); color: var(--color-blue); border-color: rgba(76, 201, 240, 0.2); }
.cm-3 .contact-icon { background-color: rgba(126, 217, 87, 0.08); color: var(--color-green); border-color: rgba(126, 217, 87, 0.2); }

.contact-text h4 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: white;
}
.contact-text p {
  color: var(--text-gray);
  font-size: 0.95rem;
}
.contact-text a {
  color: white;
  font-weight: 700;
}
.contact-text a:hover {
  color: var(--color-pink);
  text-shadow: var(--glow-pink);
}
.contact-buttons-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), var(--glow-blue);
  border: 6px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 16/10;
  background-color: #0b1526;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg); /* Dark themes standard trick for maps */
}

/* --- Footer --- */
.footer {
  background-color: #040c17;
  color: var(--text-gray);
  padding: 85px 0 30px 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
.footer-logo-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-yellow);
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
}
.footer-logo-area p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-links h4,
.footer-contact h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}
.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-pink);
  border-radius: 2px;
  box-shadow: var(--glow-pink);
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--text-gray);
  font-size: 0.9rem;
  transition: var(--transition-normal);
  display: inline-block;
}
.footer-links a:hover {
  color: var(--color-pink);
  text-shadow: var(--glow-pink);
  transform: translateX(5px);
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-gray);
  font-size: 0.9rem;
}
.footer-contact-item i {
  color: var(--color-yellow);
  font-size: 1.1rem;
  flex-shrink: 0;
  text-shadow: var(--glow-yellow);
}
.footer-contact-item a {
  color: var(--text-gray);
  font-weight: 600;
}
.footer-contact-item a:hover {
  color: var(--color-pink);
  text-shadow: var(--glow-pink);
}
.social-icons-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-bounce);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-icon:hover {
  background-color: var(--color-pink);
  color: white;
  border-color: var(--color-pink);
  box-shadow: var(--glow-pink);
  transform: translateY(-4px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  position: relative;
  z-index: 5;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition-bounce);
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}
/* Pulsing effect ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.4;
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

/* --- Animations & Effects --- */
@keyframes floatUp {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.25;
  }
  90% {
    opacity: 0.25;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

@keyframes wobble {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-8px); }
}

/* Scroll Fade Up class */
.fade-up-element {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.fade-up-element.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* --- Mobile Menu Styles (Media Queries) --- */
@media (max-width: 991px) {
  .section-padding { padding: 90px 0; }
  .section-title { font-size: 2.3rem; }
  
  .hero-content-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-right-card {
    max-width: 500px;
    margin: 0 auto;
    transform: rotate(0deg);
  }
  
  .about-grid, .approach-layout, .enquiry-layout, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }
  .approach-left img {
    max-width: 500px;
    margin: 0 auto;
    display: block;
    transform: rotate(0deg);
  }
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nav-cta {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-dark);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px 40px;
    gap: 24px;
    transition: var(--transition-normal);
    z-index: 1000;
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .nav-menu.active {
    right: 0;
  }
  .menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
  }
  .carousel-slide {
    padding: 40px 30px;
  }
  .carousel-nav-btn {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero-text h1 { font-size: 2.6rem; }
  .section-title { font-size: 1.85rem; }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .enquiry-form-container {
    padding: 24px;
  }
  .carousel-slide {
    padding: 30px 15px;
  }
  .review-text {
    font-size: 1.05rem;
  }
  .floating-element {
    display: none; /* Disable for mobile performance */
  }
}
