/* ==========================================================================
   Creative Networks - Gen-Z IT Scholarship Test 2026
   Master Stylesheet (Modern Glassmorphism & High-Aesthetics Theme)
   ========================================================================== */

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

:root {
  --bg-dark: #090d16;
  --bg-card: rgba(18, 26, 43, 0.75);
  --bg-card-hover: rgba(28, 39, 64, 0.85);
  --primary: #4f46e5;
  --primary-light: #6366f1;
  --primary-glow: rgba(99, 102, 241, 0.35);
  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.3);
  --accent-gold: #f59e0b;
  --accent-gold-glow: rgba(245, 158, 11, 0.25);
  --accent-green: #10b981;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border-light: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(99, 102, 241, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-glow: 0 10px 30px -10px rgba(79, 70, 229, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  background: radial-gradient(circle at 10% 10%, rgba(245, 158, 11, 0.18) 0%, transparent 40%),
              radial-gradient(circle at 90% 60%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 50% 90%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
              var(--bg-dark);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
}

/* Moving Background Particles Canvas */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

/* Hero Image Slider Carousel */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(245, 158, 11, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(245, 158, 11, 0.3);
  margin-bottom: 24px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 24px;
  background: linear-gradient(0deg, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0.4) 70%, transparent 100%);
  color: #fff;
}

.hero-slide-caption h4 {
  font-size: 20px;
  color: var(--accent-gold);
  font-family: 'Outfit', sans-serif;
}

.hero-slide-caption p {
  font-size: 13px;
  color: var(--text-muted);
}

.slider-controls {
  position: absolute;
  bottom: 15px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
  transform: scale(1.3);
}

/* Typography & General */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  background: linear-gradient(135deg, #fde68a 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 13, 22, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.35);
  flex-shrink: 0;
}

.brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  white-space: nowrap;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.08);
}

/* Nav Actions & Mobile Toggle */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--accent-gold);
}

.mobile-menu-only {
  display: none;
}

.desktop-only {
  display: inline-flex;
}

/* Mobile & Tablet Responsive Drawer Navigation */
@media (max-width: 1150px) {
  .mobile-toggle {
    display: flex;
  }
  .desktop-only {
    display: none !important;
  }
  .mobile-menu-only {
    display: block;
    width: 100%;
    margin-top: 6px;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(9, 13, 22, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    gap: 12px;
    display: none;
    z-index: 999;
    animation: fadeIn 0.3s ease-in-out forwards;
  }
  .nav-links.active {
    display: flex !important;
  }
  .nav-links a {
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: block;
    border-left: 3px solid transparent;
  }
  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    border-left-color: var(--accent-gold);
  }
}

@media (max-width: 576px) {
  .brand-title {
    font-size: 13px;
    letter-spacing: -0.3px;
  }
  .brand-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .hero-section {
    padding-top: 110px;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);

}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px -5px rgba(99, 102, 241, 0.5);
  background: linear-gradient(135deg, #4338ca, var(--primary));
}

.btn-gold {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

/* Hero Section */
.hero-section {
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--accent-cyan);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-main);
}

.hero-feature-item i {
  color: var(--accent-cyan);
  font-size: 18px;
  background: rgba(6, 182, 212, 0.15);
  padding: 6px;
  border-radius: 50%;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.fee-tag {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--border-glow);
  border-radius: var(--radius-md);
}

.fee-tag span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.fee-tag strong {
  font-size: 24px;
  color: var(--accent-gold);
  font-family: 'Outfit', sans-serif;
}

/* Glass Card Component */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
}

/* Hero Right Card - Countdown & Fast Info */
.hero-card {
  border-color: rgba(99, 102, 241, 0.25);
  background: linear-gradient(160deg, rgba(26, 35, 58, 0.85) 0%, rgba(15, 21, 37, 0.95) 100%);
}

.countdown-box {
  text-align: center;
  margin-bottom: 28px;
  background: rgba(9, 13, 22, 0.6);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.countdown-box h4 {
  font-size: 14px;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.timer-unit {
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 4px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timer-unit .number {
  font-size: 26px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  display: block;
}

.timer-unit .label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stat-text span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

.stat-text strong {
  font-size: 15px;
  color: #fff;
}

/* Sections General */
.section {
  padding: 90px 0;
  position: relative;
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-title span.tag {
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.section-title p {
  font-size: 16px;
  color: var(--text-muted);
}

/* O-Level Course Details Grid */
.olevel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.olevel-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.olevel-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(6, 182, 212, 0.2));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent-cyan);
  margin-bottom: 24px;
}

.olevel-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.olevel-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.modules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modules-list li {
  font-size: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary-light);
  color: var(--text-main);
}

/* Discount Slabs & Calculator Section */
.scholarship-box {
  background: linear-gradient(180deg, rgba(18, 26, 43, 0.9) 0%, rgba(9, 13, 22, 0.95) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 45px;
  margin-bottom: 60px;
}

.slabs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.slab-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.slab-card.featured {
  border-color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.05);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.slab-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.slab-percent {
  font-size: 42px;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  color: var(--accent-cyan);
  margin: 10px 0;
}

.slab-card.featured .slab-percent {
  color: var(--accent-gold);
}

.slab-range {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 16px;
}

.slab-fee-details {
  border-top: 1px dashed var(--border-light);
  padding-top: 16px;
  font-size: 14px;
}

.slab-fee-details del {
  color: var(--text-dim);
}

.slab-fee-details strong {
  display: block;
  font-size: 20px;
  color: #fff;
  margin-top: 4px;
}

/* Calculator Card */
.calc-card {
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid var(--border-glow);
  padding: 30px;
  border-radius: var(--radius-md);
  margin-top: 40px;
}

.calc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 15px;
}

.calc-slider-wrapper {
  margin-bottom: 30px;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.range-slider {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #1e293b;
  outline: none;
  accent-color: var(--accent-cyan);
}

.calc-result-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: rgba(9, 13, 22, 0.8);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.calc-res-item span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.calc-res-item strong {
  font-size: 22px;
  font-family: 'Outfit', sans-serif;
  display: block;
}

/* Syllabus Grid */
.syllabus-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.syllabus-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 20px 15px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.syllabus-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
}

.syllabus-icon {
  font-size: 28px;
  color: var(--accent-cyan);
  margin-bottom: 10px;
}

.syllabus-card h4 {
  font-size: 16px;
}

/* Registration Form Section */
.form-section {
  position: relative;
}

.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(18, 26, 43, 0.95) 0%, rgba(9, 13, 22, 0.98) 100%);
  border: 1px solid var(--border-glow);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.form-header {
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
  margin-bottom: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label span.req {
  color: #ef4444;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
}

select.form-control option {
  background-color: #0f172a;
  color: #fff;
}

.other-city-wrapper {
  display: none;
  margin-top: 10px;
}

.other-city-wrapper.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.help-text {
  font-size: 12px;
  color: var(--text-muted);
}

.error-text {
  font-size: 12px;
  color: #f87171;
  display: none;
}

.form-footer {
  margin-top: 36px;
  border-top: 1px solid var(--border-light);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.summary-badge {
  font-size: 15px;
}

.summary-badge strong {
  color: var(--accent-gold);
  font-size: 20px;
}

/* Modals (Payment & Admit Card) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 15, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #0f172a;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.close-modal:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.qr-box {
  background: #fff;
  padding: 16px;
  border-radius: var(--radius-md);
  width: 210px;
  height: 210px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-steps {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 24px;
}

.payment-steps ol {
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-muted);

}

.payment-steps ol li {
  margin-bottom: 8px;
}

/* Admit Card Printable Container */
.admit-card-container {
  background: #ffffff;
  color: #1e293b;
  border-radius: var(--radius-md);
  padding: 30px;
  max-width: 750px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.admit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px double #4f46e5;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.admit-title h3 {
  color: #1e1b4b;
  font-size: 22px;
}

.admit-title p {
  color: #4338ca;
  font-size: 13px;
  font-weight: 600;
}

.admit-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.admit-table {
  width: 100%;
  border-collapse: collapse;
}

.admit-table th, .admit-table td {
  padding: 8px 12px;
  border: 1px solid #cbd5e1;
  font-size: 13px;
  text-align: left;
}

.admit-table th {
  background: #f1f5f9;
  color: #334155;
  width: 35%;
}

.photo-space {
  border: 2px dashed #94a3b8;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #64748b;
  font-size: 12px;
  text-align: center;
  background: #fafafa;
}

/* Contact & Footer */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card {
  text-align: center;
  padding: 30px 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}

.footer {
  border-top: 1px solid var(--border-light);
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  background: #05080f;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .olevel-grid, .slabs-grid, .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .syllabus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .olevel-grid, .slabs-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .syllabus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
/* Animated Floating Background Mesh & Glow Orbs */
body::before, body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
  animation: floatOrb 14s infinite alternate ease-in-out;
}

body::before {
  top: -10%;
  left: 15%;
  width: 500px;
  height: 500px;
  background: rgba(99, 102, 241, 0.25);
}

body::after {
  bottom: 5%;
  right: 10%;
  width: 550px;
  height: 550px;
  background: rgba(6, 182, 212, 0.2);
  animation-delay: -7s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, 50px) scale(1.18); }
  100% { transform: translate(-50px, 90px) scale(0.88); }
}

.badge-pill {
  animation: badgeGlow 3s infinite ease-in-out;
}

@keyframes badgeGlow {
  0%, 100% { border-color: rgba(6, 182, 212, 0.3); box-shadow: 0 0 10px rgba(6, 182, 212, 0.15); }
  50% { border-color: rgba(6, 182, 212, 0.85); box-shadow: 0 0 22px rgba(6, 182, 212, 0.45); }
}

.btn-gold {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
  animation: pulseGold 2.5s infinite;
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.glass-card {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(99, 102, 241, 0.25);
  border-color: rgba(99, 102, 241, 0.45);
}

.slab-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.25);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  z-index: -1;
  animation: whatsappRipple 2s infinite;
}

@keyframes whatsappRipple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Scroll Entrance Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Print CSS */
@media print {
  body * {
    visibility: hidden;
  }
  .admit-card-container, .admit-card-container * {
    visibility: visible;
  }
  .admit-card-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: none;
  }
  .no-print {
    display: none !important;
  }
}
