/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Tokens */
  --background: #ffffff;
  --foreground: #1f2937;
  --card: #f8fafc;
  --card-foreground: #374151;
  --primary: #6366f1;
  --primary-foreground: #ffffff;
  --secondary: #374151;
  --secondary-foreground: #ffffff;
  --muted: #f8fafc;
  --muted-foreground: #1f2937;
  --border: #d1d5db;
  --input: #f8fafc;
  --ring: #6366f1;
  --radius: 0.5rem;

  /* Global Spacing System */
  --section-padding: 80px;
  --container-width: 1200px;
  --gap-large: 3rem;
  --gap-medium: 2rem;
  --gap-small: 1rem;

  /* Spacing Scale Assets (Keep for utility if needed) */
  --space-xs: 0.5rem;
  /* 8px */
  --space-sm: 1rem;
  /* 16px */
  --space-md: 1.5rem;
  /* 24px */
  --space-lg: 3rem;
  /* 48px */
  --space-xl: 5rem;
  /* 80px */
  --space-2xl: 8rem;
  /* 128px */
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: linear-gradient(to bottom right, #f8fafc, #dbeafe);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

input,
button,
textarea,
select {
  font-family: inherit;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gap-medium);
}

section,
.section {
  padding: var(--section-padding) 0;
}

/* Loading Screen Styles */
.loading-screen {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading-content {
  text-align: center;
  max-width: 28rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.loading-spinner-container {
  margin-bottom: 4rem;
}

.loading-spinner-bg {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-spinner {
  width: 2rem;
  height: 2rem;
  border: 2px solid white;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.loading-subtitle {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
}

.loading-progress-container {
  margin-bottom: 2rem;
}

.progress-bar-wrapper {
  width: 20rem;
  margin: 0 auto;
}

.progress-bar-bg {
  height: 0.25rem;
  background: var(--muted);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-bar {
  height: 100%;
  background: var(--primary);
  transition: width 0.3s ease-out;
  border-radius: 9999px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.loading-text-label {
  color: var(--muted-foreground);
  font-weight: 500;
}

.progress-percent {
  color: var(--foreground);
  font-family: "Courier New", monospace;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.dot {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.3s;
}

.dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

/* Professional Fade Animation */
.professional-fade {
  animation: professionalFade 0.6s ease-out forwards;
}

@keyframes professionalFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Content */
.main-content {
  min-height: 100vh;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: headerReveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes headerReveal {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  padding: 0.25rem 0;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-content {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.4s ease;
}

.header.scrolled .nav-content {
  height: 70px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  z-index: 1100;
}

.logo-container img {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-container:hover img {
  transform: rotate(-5deg) scale(1.05);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary);
}

/* Desktop Navigation - Hidden on Tablet & Mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1025px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.6rem 1.1rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(99, 102, 241, 0.08);
}

.nav-link.active {
  font-weight: 700;
}

.btn-enroll {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

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

.profile-link {
  color: var(--foreground);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.profile-link:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

@media (min-width: 1025px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

/* Mobile Menu Panel */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

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

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: white;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1);
}

.mobile-menu-panel.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.close-menu {
  background: var(--muted);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-menu:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: rotate(90deg);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(99, 102, 241, 0.05);
  color: var(--primary);
  padding-left: 2rem;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 2rem;
}

.mobile-cta {
  display: block;
  text-align: center;
  padding: 1.25rem;
  font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Removed overflow: hidden to prevent clipping long content */
  padding: 8rem var(--space-md) 4rem;
  /* Balanced padding for header and growth */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 1rem 1rem;
  max-width: 56rem;
  margin: 0 auto;
  width: 100%;
}

/* Mobile Hero Responsiveness Fix */
@media (max-width: 768px) {
  .hero-section {
    padding: 8rem var(--space-sm) 4rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .hero-title {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
    margin-bottom: var(--space-md);
    text-align: center;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 5vw, 1.25rem);
    margin-bottom: var(--space-xl);
    text-align: center;
    max-width: 100%;
    padding: 0 var(--space-xs);
  }

  .hero-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.85rem, 12vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.95rem, 6vw, 1.125rem);
    line-height: 1.5;
  }
}

.hero-title {
  /* Fluid scaling from 2.5rem at 320px to 5rem at 1440px */
  font-size: clamp(2.5rem, 6vw + 1rem, 5rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 100%;
}

.hero-subtitle {
  /* Fluid scaling for subtitle */
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s;
  animation: glow 2s ease-in-out infinite alternate;
}

.hero-btn:hover {
  transform: scale(1.1);
}

.play-icon {
  margin-right: 0.5rem;
  width: 1rem;
  height: 1rem;
}

/* Animations */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
  }
}

/* Innovative About & Team Styles */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-accent-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(40px);
}

.about-accent-blob-1 {
  top: -100px;
  right: -100px;
}

.about-accent-blob-2 {
  bottom: -100px;
  left: -100px;
}

.modern-journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-large);
  align-items: center;
}

@media (min-width: 1024px) {
  .modern-journey-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
  }
}

.journey-image-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.journey-img-primary {
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: transform 0.5s ease;
}

.journey-img-secondary {
  position: absolute;
  width: 60%;
  bottom: -40px;
  right: -20px;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 4px solid white;
  z-index: 3;
  transition: transform 0.5s ease;
}

.journey-image-stack:hover .journey-img-primary {
  transform: translate(-10px, -10px);
}

.journey-image-stack:hover .journey-img-secondary {
  transform: translate(10px, 10px);
}

/* Team Section & Innovative Card UX */
.team-section {
  padding: var(--section-padding) 0;
  background: white;
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--gap-large);
  margin-top: var(--gap-large);
}

.team-card {
  position: relative;
  background: white;
  border-radius: 2rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.team-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 60px -15px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.2);
}

.team-card:hover::before {
  opacity: 1;
}

.team-img-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrapper {
  transform: rotate(5deg) scale(1.05);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
}

.team-info {
  position: relative;
  z-index: 2;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.team-card:hover .team-socials {
  transform: translateY(0);
  opacity: 1;
}

.team-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  color: var(--foreground);
  transition: all 0.3s ease;
  text-decoration: none;
}

.team-social-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.about-image:hover {
  transform: scale(1.02);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.vision-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.vision-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

@media (min-width: 768px) {
  .vision-title {
    font-size: 1.5rem;
  }
}

.vision-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

@media (min-width: 768px) {
  .vision-text {
    font-size: 1rem;
  }
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-medium);
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .stats-container {
    justify-content: flex-start;
    gap: var(--gap-large);
  }
}

.stat-item {
  text-align: center;
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.25rem;
  }
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 0.875rem;
  }
}

/* Responsive Layouts Section - Mobile First */

/* Container & Spacing Scaling */
:root {
  --container-padding: 1.5rem;
}

.container {
  padding: 0 var(--container-padding);
}

/* 1. Courses Grid (Mobile First) */
.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* 1 card mobile */
  gap: 2rem;
}

/* 2. Testimonials Grid (Mobile First) */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* Stack vertically mobile */
  gap: 2rem;
}

/* 3. About Grid (Mobile First) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* Single column mobile */
  gap: 3rem;
  text-align: center;
}

.about-image-container {
  order: -1;
  /* Image on top mobile */
}

/* 4. Contact Grid (Mobile First) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* Stack vertically mobile */
  gap: 3rem;
}

/* 5. Footer Grid (Mobile First) */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* Stack neatly mobile */
  gap: 3rem;
  text-align: center;
}

.footer-brand {
  align-items: center;
}

.footer-social {
  justify-content: center;
}

/* --- Responsive Breakpoints (Mobile-First Upwards) --- */

/* Extra Small Devices (576px and up) */
@media (min-width: 576px) {
  :root {
    --container-padding: 2rem;
  }
}

/* Small Devices / Tablets (768px and up) */
@media (min-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 cards tablet */
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

/* Medium Devices / Laptops (992px and up) */
@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    /* 2 columns desk */
    align-items: center;
  }

  .about-image-container {
    order: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    /* Side by side desk */
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* Large Devices / Desktop (1200px and up) */
@media (min-width: 1200px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
    /* 3 cards desktop */
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .container {
    max-width: 1200px;
  }
}

/* Common Responsive Utilities */
@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-section {
    padding-top: 6rem;
    min-height: auto;
    padding-bottom: 4rem;
  }

  .stats-container {
    margin-top: 2rem;
  }
}

/* Blog Styles (Consolidated from blog.html) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--gap-large);
  margin-top: var(--gap-large);
}

.blog-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.blog-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-content {
  padding: var(--space-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 0.05em;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--foreground);
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read-more {
  margin-top: auto;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more:hover {
  text-decoration: underline;
}

/* Page Header */
.page-header {
  padding: var(--space-2xl) 0 var(--space-lg);
  text-align: center;
  background: linear-gradient(to bottom, #fff, #f8fafc);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--gap-medium);
  margin-top: var(--gap-large);
}

.course-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.course-image-wrapper {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.course-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.3s;
}

.course-card:hover .course-image {
  transform: scale(1.05);
}

.course-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.course-card:hover .course-overlay {
  opacity: 1;
}

.course-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .course-title {
    font-size: 1.5rem;
  }
}

.course-card:hover .course-title {
  color: var(--primary);
}

.course-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .course-description {
    font-size: 1rem;
  }
}

.course-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.course-duration {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.clock-icon {
  margin-right: 0.25rem;
}

.course-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

@media (min-width: 768px) {
  .course-price {
    font-size: 1.125rem;
  }
}

.course-btn {
  display: inline-block;
  width: 100%;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: var(--primary-foreground);
  padding: 1rem;
  border: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  margin-top: auto;
}

.course-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--background);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-medium);
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
  border-radius: 1rem;
  /* White Glass Card on Light Background */
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 4px 20px -5px rgba(0, 0, 0, 0.1),
    0 2px 8px -2px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.05);
}

.rating {
  display: flex;
  margin-bottom: 1rem;
}

.star {
  color: #fbbf24;
}

.testimonial-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.75;
  font-style: italic;
}

@media (min-width: 768px) {
  .testimonial-text {
    font-size: 1rem;
  }
}

.testimonial-author {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .testimonial-author {
    font-size: 1rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom right,
      rgba(99, 102, 241, 0.1),
      rgba(55, 65, 81, 0.1));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-card {
  padding: 2rem;
  border-radius: 0.5rem;
}

.form-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .form-title {
    font-size: 1.5rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  font-size: 0.875rem;
  font-family: inherit;
  transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-textarea {
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: var(--primary-foreground);
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s;
  animation: glow 2s ease-in-out infinite alternate;
}

.form-submit-btn:hover {
  transform: scale(1.05);
}

.form-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: transform 0.3s;
  text-decoration: none;
  display: block;
}

.contact-info-card:hover {
  transform: scale(1.05);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-content {
  min-width: 0;
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .contact-info-title {
    font-size: 1.125rem;
  }
}

.contact-info-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
  word-break: break-all;
}

@media (min-width: 768px) {
  .contact-info-link {
    font-size: 1rem;
  }
}

.contact-info-link:hover {
  color: var(--primary);
}

.contact-info-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .contact-info-text {
    font-size: 1rem;
  }
}

/* Footer Redesign */
.footer {
  background: transparent;
  color: var(--foreground);
  padding: var(--section-padding) 0 var(--gap-medium);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-overlay {
  display: none;
}

.footer-pattern {
  display: none;
}

.footer-container {
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-large);
  margin-bottom: var(--gap-large);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  /* Prevent brand name breaking into two lines */
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 0.9;
}


.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--foreground);
  letter-spacing: -0.025em;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .footer-logo-text {
    font-size: 1.5rem;
  }
}

.footer-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 28rem;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  border-color: transparent;
}

/* Mobile Nav Link Active States */
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(99, 102, 241, 0.05);
  /* Subtle background highlight */
  color: var(--primary);
  padding-left: 1.5rem;
  /* Slight shift for mobile active state */
}

.mobile-nav-link.active {
  font-weight: 700;
  border-left: 4px solid var(--primary);
}

/* Headings */
.footer-heading {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.75rem;
  width: 2rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Links List */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

/* Contact Info in Footer */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-text,
.footer-contact .footer-link {
  font-size: 1rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Footer Bottom Layout */
.footer-bottom {
  margin-top: var(--gap-large);
  padding-top: var(--gap-medium);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: var(--gap-medium);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
  }
}

.footer-copyright {
  color: #64748b;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: var(--gap-medium);
}

.footer-legal-link {
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-legal-link:hover {
  color: white;
}

/* Designer Credit Badge */
.footer-credit {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-credit-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 9999px;
  color: var(--foreground);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.footer-credit-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      transparent,
      rgba(99, 102, 241, 0.1),
      transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.footer-credit-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.25);
  color: var(--primary);
  border-color: rgba(99, 102, 241, 0.3);
}

.footer-credit-link:hover::before {
  transform: translateX(100%);
}

/* Modern Course Page Layout */
.course-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

@media (min-width: 1024px) {
  .course-layout {
    grid-template-columns: 1.8fr 1fr;
    /* Content | Sidebar */
    align-items: start;
  }
}

.course-main-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.course-sidebar {
  position: relative;
}

@media (min-width: 1024px) {
  .course-sidebar {
    position: sticky;
    top: 8rem;
    /* Space for fixed header */
    margin-top: -8rem;
    /* Pull up to overlap hero if desired, or just standard */
    margin-top: 0;
  }
}

.course-sidebar-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  /* Glass feel if needed, but solid white pops more on complex background */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
}

.course-sidebar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.course-feature-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.course-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--foreground);
  font-size: 0.95rem;
}

.course-feature-icon {
  color: var(--primary);
  width: 1.25rem;
  height: 1.25rem;
}

.course-curriculum-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.course-module {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.course-module:hover {
  background: white;
  border-color: var(--primary);
  transform: translateX(8px);
  box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.15);
}

.course-module-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #cbd5e1;
  min-width: 2rem;
}

.course-module:hover .course-module-number {
  color: var(--primary);
}

.course-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.course-section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: var(--primary);
  margin-top: 0.5rem;
  border-radius: 2px;
}

/* Course Image Link */
.course-image-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Success Modal */
.success-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.success-modal {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  width: 90%;
  max-width: 400px;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.success-modal-overlay.active .success-modal {
  transform: scale(1);
}

.success-icon-container {
  width: 4rem;
  height: 4rem;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.success-message {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.success-close-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}

.success-close-btn:hover {
  opacity: 0.9;
}

/* Young Prodigy Hub Styles */
.hero-section.prodigy {
  background:
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9)),
    url("../images/keyboard.jpg");
  background-size: cover;
  background-position: center;
}

.prodigy-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: var(--space-md);
  border-radius: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.prodigy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.15);
  border-color: var(--primary);
}

.gradient-text-prodigy {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.icon-container {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  animation: float 3s ease-in-out infinite;
}

/* Age Roadmap */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 2rem;
}

.roadmap-item {
  position: relative;
  background: white;
  padding: 3rem 2rem 2rem;
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.roadmap-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.roadmap-age {
  position: absolute;
  top: -15px;
  left: 2rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 0.875rem;
}

.roadmap-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.roadmap-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.roadmap-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.roadmap-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
}

/* Testimonials */
.parent-testimonial-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 2rem;
  text-align: center;
}

.testimonial-rating {
  margin-bottom: 1.5rem;
  letter-spacing: 0.2rem;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--foreground);
  margin-bottom: 2rem;
  font-style: italic;
}

.parent-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.parent-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}

.parent-name {
  font-weight: 700;
  color: var(--foreground);
}

.child-info {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(99, 102, 241, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-cta {
  background: white;
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-cta {
  transform: translateY(0);
}

/* Growth Viz */
.growth-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .growth-container {
    grid-template-columns: 1fr 1fr;
  }
}

.skill-meter {
  margin-bottom: 1.5rem;
}

.skill-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.skill-bar {
  height: 10px;
  background: #f1f5f9;
  border-radius: 5px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: var(--primary);
  border-radius: 5px;
  transition: width 1.5s ease-out;
}

.growth-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .growth-badges {
    grid-template-columns: 1fr 1fr;
  }
}

.milestone-badge {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.badge-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Feature Grid Cluster */
.feature-box {
  background: white;
  padding: 2.5rem;
  border-radius: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Final CTA */
.section.finale {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
  border-radius: 3rem 3rem 0 0;
  padding: 6rem 1rem;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn.white {
  background: white;
  color: var(--primary);
  border: none;
}

.hero-btn.outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Timeline Styles */
.timeline {
  max-width: 800px;
  margin: var(--gap-large) auto 0;
  position: relative;
  padding-left: var(--gap-medium);
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 1px;
}

.timeline-item {
  position: relative;
  padding-bottom: var(--gap-large);
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: -23px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--background);
  border: 3px solid var(--primary);
}

.timeline-date {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap-medium);
  margin-top: var(--gap-large);
}

.pricing-card {
  background: white;
  padding: var(--gap-large);
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.1);
  transform: scale(1.05);
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin: var(--gap-medium) 0;
  color: var(--foreground);
}

.price span {
  font-size: 1rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--gap-large);
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--muted-foreground);
}

/* Featured Blog Post */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-large);
  background: white;
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: var(--section-padding);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  .blog-featured {
    grid-template-columns: 1.2fr 1fr;
  }
}

.featured-content {
  padding: var(--gap-large);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Genre Cards */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-medium);
}

.genre-card {
  background: white;
  padding: var(--gap-medium);
  border-radius: 1.5rem;
  text-align: center;
  border-bottom: 4px solid var(--primary);
}

/* --- Innovative Blog Enhancements --- */

/* Category Filters */
.blog-filters-container {
  padding: 2rem 0;
  margin-bottom: 2rem;
  position: sticky;
  top: 5rem;
  z-index: 100;
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(10px);
}

.blog-filters {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.blog-filters::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.filter-chip {
  padding: 0.75rem 1.75rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 2rem;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-chip.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.3);
}

.filter-chip:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Trending Section */
.trending-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .trending-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.trending-feature-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  height: 100%;
}

.trending-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: var(--secondary);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 1rem;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}

.trending-mini-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trending-mini-post {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.trending-mini-post:hover {
  transform: translateX(10px);
}

.trending-mini-img {
  width: 100px;
  height: 100px;
  border-radius: 1rem;
  object-fit: cover;
}

.trending-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

/* Editor's Picks */
.editors-picks-section {
  background: rgba(99, 102, 241, 0.03);
}

.editor-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.editor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.editor-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

/* Newsletter Block */
.newsletter-block {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 5rem 2rem;
  border-radius: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 2.5rem auto 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  color: white;
  font-family: inherit;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-btn {
  background: white;
  color: var(--primary);
  border: none;
  padding: 0 2rem;
  border-radius: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: var(--foreground);
  color: white;
  transform: scale(1.05);
}

/* Learning Path Timeline */
.path-timeline {
  position: relative;
  padding-left: 3rem;
}

.path-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
}

.path-group {
  margin-bottom: 4rem;
  position: relative;
}

.path-bubble {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transform: translateX(-50%);
}

.path-level {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

/* Popular Tags Cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag-btn {
  padding: 0.5rem 1.25rem;
  background: #f1f5f9;
  color: #64748b;
  border: none;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tag-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

/* Bottom CTA */
.blog-bottom-cta {
  background: var(--foreground);
  color: white;
  text-align: center;
  padding: 8rem 0;
  border-radius: 4rem 4rem 0 0;
}

.blog-bottom-cta .cta-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0.5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card Container & Grid Section Mobile Responsiveness Override */
@media (max-width: 640px) {

  .testimonial-card,
  .course-content,
  .prodigy-card,
  .feature-box,
  .roadmap-item,
  .parent-testimonial-card,
  .course-sidebar-card,
  .milestone-badge {
    padding: 1.5rem !important;
  }

  .roadmap-item {
    padding-top: 3rem !important;
    /* give space for the floating age badge */
  }

  /* Make sure titles inside cards scale down slightly on tiny screens */
  .course-section-title {
    font-size: 1.5rem !important;
  }

  /* Reduce gap sizes for mobile sections */
  .courses-grid,
  .team-grid,
  .blog-grid,
  .roadmap-grid,
  .gallery-grid {
    gap: 1.5rem;
    /* overrides the medium/large gaps on mobile */
  }
}

/* ==========================================
   PAGE HERO — Contact & Enroll Pages
   ========================================== */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: white;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.6), transparent 70%);
  top: -100px;
  right: -50px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.5), transparent 70%);
  bottom: -80px;
  left: -60px;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.4), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -8s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 15px) scale(0.95);
  }
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 10;
}

.page-hero-content {
  max-width: 750px;
  margin: 0 auto;
}

/* Breadcrumb */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: white;
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-current {
  color: var(--primary);
  font-weight: 600;
}

/* Hero Title & Subtitle */
.page-hero-title {
  font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.page-hero-title .gradient-text {
  background: linear-gradient(135deg, #818cf8, #c084fc, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Stats Strip */
.hero-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: fit-content;
  margin: 0 auto;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.hero-stat-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.hero-stat-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Floating Musical Notes */
.floating-notes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.floating-notes .note {
  position: absolute;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.08);
  animation: floatNote 15s ease-in-out infinite;
}

.note-1 {
  top: 15%;
  left: 8%;
  font-size: 2.5rem;
  animation-delay: 0s !important;
}

.note-2 {
  top: 25%;
  right: 10%;
  font-size: 1.8rem;
  animation-delay: -3s !important;
}

.note-3 {
  bottom: 20%;
  left: 15%;
  font-size: 3rem;
  animation-delay: -7s !important;
}

.note-4 {
  bottom: 30%;
  right: 12%;
  font-size: 2rem;
  animation-delay: -10s !important;
}

@keyframes floatNote {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.08;
  }

  25% {
    transform: translateY(-20px) rotate(10deg);
    opacity: 0.15;
  }

  50% {
    transform: translateY(-5px) rotate(-5deg);
    opacity: 0.1;
  }

  75% {
    transform: translateY(-15px) rotate(8deg);
    opacity: 0.12;
  }
}

/* Contact Hero Variant */
.contact-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
}

/* Enroll Hero Variant */
.enroll-hero {
  background: linear-gradient(135deg, #0f172a 0%, #172554 50%, #0f172a 100%);
}

/* ==========================================
   ENROLL FORM SECTION
   ========================================== */
.enroll-section {
  padding: 5rem 0;
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.05), transparent 40%),
    radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.03), transparent 40%);
}

.enroll-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .enroll-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ==========================================
   CONTACT PAGE SECTION SPACING FIX
   ========================================== */
.contact-page-section {
  padding: 5rem 0;
}

/* ==========================================
   RESPONSIVE — PAGE HERO
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
  .page-hero {
    padding: 9rem 0 4rem;
  }

  .page-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
  }

  .hero-orb-1 {
    width: 300px;
    height: 300px;
  }

  .hero-orb-2 {
    width: 260px;
    height: 260px;
  }

  .hero-orb-3 {
    width: 200px;
    height: 200px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero {
    padding: 8rem 1rem 3.5rem;
  }

  .page-hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .hero-stats-strip {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 1.25rem;
  }

  .hero-stat-divider {
    width: 60%;
    height: 1px;
  }

  .hero-stat-item {
    font-size: 0.8rem;
  }

  .floating-notes .note {
    font-size: 1.5rem;
  }

  .note-1 {
    top: 10%;
    left: 5%;
  }

  .note-2 {
    top: 20%;
    right: 5%;
  }

  .note-3 {
    bottom: 15%;
    left: 10%;
  }

  .note-4 {
    bottom: 25%;
    right: 8%;
  }

  .hero-orb-1 {
    width: 220px;
    height: 220px;
  }

  .hero-orb-2 {
    width: 180px;
    height: 180px;
  }

  .hero-orb-3 {
    width: 140px;
    height: 140px;
  }

  /* Enroll section */
  .enroll-section {
    padding: 3rem 0;
  }

  .enroll-grid {
    gap: 2.5rem;
  }

  /* Contact section */
  .contact-page-section {
    padding: 3rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .page-hero {
    padding: 7.5rem 0.75rem 3rem;
  }

  .page-hero-title {
    font-size: clamp(1.75rem, 9vw, 2.25rem);
    margin-bottom: 1rem;
  }

  .page-hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .hero-breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-stats-strip {
    padding: 0.875rem 1rem;
  }

  .hero-stat-item span {
    font-size: 0.75rem;
  }

  .hero-stat-item svg {
    width: 16px;
    height: 16px;
  }

  .floating-notes .note {
    font-size: 1.2rem;
    opacity: 0.05;
  }

  .enroll-section {
    padding: 2rem 0;
  }

  .enroll-grid {
    gap: 2rem;
  }

  .contact-page-section {
    padding: 2rem 0;
  }
}

/* Extra small mobile */
@media (max-width: 360px) {
  .page-hero {
    padding: 7rem 0.5rem 2.5rem;
  }

  .page-hero-title {
    font-size: 1.6rem;
  }

  .page-hero-subtitle {
    font-size: 0.85rem;
  }

  .hero-stats-strip {
    padding: 0.75rem;
  }
}