/* landing.css */
/* Kalashree Sangeet Gurukul — Premium Indian Classical Music Academy */
/* Design: Inspired by Dribbble Indian Classical Instruments + unique Gurukul soul */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: #FAF6F0;
  color: #2C1608;
}

ul {
  list-style: none;
}


/* ══════════════════════════
   FLOATING SWARA NOTATION (decorative)
══════════════════════════ */

@keyframes floatSwara {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.08; }
  50% { transform: translateY(-20px) rotate(5deg); opacity: 0.15; }
  100% { transform: translateY(0) rotate(0deg); opacity: 0.08; }
}

/* Mandala pattern overlay for sections */
.mandala-overlay {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0c16.569 0 30 13.431 30 30S46.569 60 30 60 0 46.569 0 30 13.431 0 30 0zm0 2c15.464 0 28 12.536 28 28S45.464 58 30 58 2 45.464 2 30 14.536 2 30 2zM15 15l30 30M45 15L15 45' stroke='%23D4A017' stroke-width='0.5' fill='none' stroke-opacity='0.15'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}


/* ══════════════════════════
   NAVBAR
══════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(44, 22, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(44, 22, 8, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo with image */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 160, 23, 0.5);
  box-shadow: 0 0 15px rgba(212, 160, 23, 0.2);
  transition: transform 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.08);
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #F8F1E3;
  line-height: 1.1;
}

.nav-logo-sub {
  font-size: 9px;
  color: rgba(212, 160, 23, 0.7);
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  color: rgba(248, 241, 227, 0.6);
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, #D4A017, transparent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #D4A017;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Action buttons */
.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-login {
  font-size: 13px;
  color: rgba(248, 241, 227, 0.75);
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-login:hover {
  background: rgba(212, 160, 23, 0.1);
  border-color: rgba(212, 160, 23, 0.6);
  color: #D4A017;
}

.nav-signup {
  font-size: 13px;
  font-weight: 600;
  color: #2C1608;
  text-decoration: none;
  padding: 8px 20px;
  background: linear-gradient(135deg, #D4A017, #B5872A);
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(212, 160, 23, 0.3);
}

.nav-signup:hover {
  background: linear-gradient(135deg, #E0B020, #C4962E);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}


/* ══════════════════════════
   HERO — Grand & Emotional
══════════════════════════ */

.hero {
  min-height: 100vh;
  background: linear-gradient(-45deg, #3F1A12, #2C1608, #5A2810, #3F1A12);
  background-size: 400% 400%;
  animation: gradientBG 18s ease infinite;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Mandala circle decorative */
.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 23, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: rotateSlow 60s linear infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 160, 23, 0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: rotateSlow 45s linear infinite reverse;
}

@keyframes rotateSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212, 160, 23, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 130px 40px 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Left text */
.hero-text {
  flex: 1;
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.hero-tag {
  font-size: 16px;
  color: rgba(212, 160, 23, 0.75);
  margin-bottom: 20px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.5px;
}

.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 700;
  color: #F8F1E3;
  line-height: 1.08;
  margin-bottom: 10px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero-heading em {
  font-style: italic;
  font-weight: 400;
  color: #D4A017;
  text-shadow: 0 0 30px rgba(212, 160, 23, 0.2);
}

.hero-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #D4A017, rgba(212, 160, 23, 0.2));
  margin: 22px 0;
}

.hero-sub {
  font-size: 15.5px;
  color: rgba(248, 241, 227, 0.55);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
}

/* Saffron gold primary button */
.btn-primary {
  display: inline-block;
  padding: 13px 32px;
  background: linear-gradient(135deg, #D4A017, #B5872A);
  color: #2C1608;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.35);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E0B020, #C4962E);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.45);
}

/* Ghost button with gold border */
.btn-ghost {
  display: inline-block;
  padding: 13px 32px;
  background: transparent;
  color: rgba(248, 241, 227, 0.8);
  font-size: 14px;
  border: 1.5px solid rgba(212, 160, 23, 0.35);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: rgba(212, 160, 23, 0.08);
  border-color: rgba(212, 160, 23, 0.6);
  color: #D4A017;
}

.hero-ragas {
  font-size: 11px;
  color: rgba(212, 160, 23, 0.25);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 300;
}

/* Right side - photo with artistic frame */
.hero-visual {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.hero-img-frame {
  width: 440px;
  height: 400px;
  border-radius: 0;
  overflow: visible;
  border: none;
  background: transparent;
  position: relative;
}

/* Decorative corner ornaments */
.hero-img-frame::before {
  content: '✦';
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 24px;
  color: rgba(212, 160, 23, 0.3);
  z-index: 5;
}

.hero-img-frame::after {
  content: '✦';
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 24px;
  color: rgba(212, 160, 23, 0.3);
  z-index: 5;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Fallback when image not found */
.hero-img-fallback {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  border: 2px dashed rgba(212, 160, 23, 0.15);
  border-radius: 12px;
}

.fallback-icon {
  font-size: 56px;
  color: rgba(212, 160, 23, 0.2);
  font-family: serif;
}

.fallback-text {
  font-size: 12px;
  color: rgba(248, 241, 227, 0.25);
  text-align: center;
  padding: 0 24px;
}

.hero-photo-label {
  text-align: center;
  font-size: 10px;
  color: rgba(212, 160, 23, 0.2);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 14px;
}


/* ══════════════════════════
   SHARED SECTION STYLES
══════════════════════════ */

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 90px 40px;
}

.section-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #D4A017;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: #2C1608;
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #D4A017, rgba(212, 160, 23, 0.2));
}

.section-center-head {
  text-align: center;
  margin-bottom: 50px;
}


/* ══════════════════════════
   ABOUT
══════════════════════════ */

.about {
  background: #FAF6F0;
  position: relative;
}

.about-inner {
  display: flex;
  gap: 70px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-para {
  font-size: 14.5px;
  color: #5A3018;
  line-height: 1.85;
  margin-bottom: 14px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 260px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 22px 18px;
  border-left: 3px solid #D4A017;
  box-shadow: 0 4px 20px rgba(63, 26, 18, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(63, 26, 18, 0.1);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  color: #3F1A12;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  color: #8C6A52;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ══════════════════════════
   COURSES
══════════════════════════ */

.courses {
  background: linear-gradient(180deg, #EDE0CA, #F2E8D8);
  position: relative;
}

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

.course-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.25);
  box-shadow: 0 4px 15px rgba(63, 26, 18, 0.04);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  position: relative;
}

/* Subtle mandala background on hover for cards */
.course-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23D4A017' stroke-width='1.5' fill='none' opacity='0.08'/%3E%3Ccircle cx='50' cy='50' r='30' stroke='%23D4A017' stroke-width='1' stroke-dasharray='4 4' fill='none' opacity='0.08'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.course-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(63, 26, 18, 0.12);
}

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

/* Golden miniature painting border on top */
.course-band {
  height: 4px;
  position: relative;
}

.band-1 { background: linear-gradient(90deg, #D4A017, #B5572A); }
.band-2 { background: linear-gradient(90deg, #4A7CB5, #2C5A8E); }
.band-3 { background: linear-gradient(90deg, #4A9B6F, #2D7A50); }
.band-4 { background: linear-gradient(90deg, #7B5EA7, #5E4080); }

.course-body {
  padding: 24px 20px;
}

.course-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 700;
  color: #2C1608;
  margin-bottom: 5px;
}

.course-level {
  font-size: 10.5px;
  color: #D4A017;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  font-weight: 600;
}

.course-desc {
  font-size: 13px;
  color: #6A4828;
  line-height: 1.75;
}


/* ══════════════════════════
   WHY US — Light Warm Section
══════════════════════════ */

.why {
  background: linear-gradient(155deg, #F5EDE3 0%, #FAF6F0 50%, #F5EDE3 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle mandala pattern */
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(212, 160, 23, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(181, 87, 42, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.why::after {
  content: '𝄞';
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  font-size: 300px;
  color: rgba(212, 160, 23, 0.06);
  pointer-events: none;
  font-family: serif;
}

.why .section-inner {
  position: relative;
  z-index: 1;
}

.why-head {
  text-align: center;
  margin-bottom: 50px;
}

.why-tag {
  color: #D4A017 !important;
}

.why-heading {
  color: #2C1608 !important;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-item {
  padding: 34px 26px;
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(63, 26, 18, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #D4A017, #B5872A);
  transition: width 0.5s ease;
}

.why-item:hover::before {
  width: 100%;
}

.why-item:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(212, 160, 23, 0.4);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 40px rgba(63, 26, 18, 0.1);
}

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: rgba(212, 160, 23, 0.3);
  line-height: 1;
  margin-bottom: 16px;
}

.why-title {
  font-size: 16px;
  font-weight: 700;
  color: #3D1A08;
  margin-bottom: 12px;
}

.why-desc {
  font-size: 14px;
  color: #6A4828;
  line-height: 1.75;
}


/* ══════════════════════════
   CONTACT
══════════════════════════ */

.contact {
  background: #FAF6F0;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 40px 0;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(63, 26, 18, 0.06);
  border: 1px solid rgba(212, 160, 23, 0.1);
}

.contact-item {
  flex: 1;
  padding: 0 36px;
  text-align: center;
}

.contact-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, #D4A017, transparent);
  align-self: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #D4A017;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-val {
  font-size: 14px;
  color: #3F1A12;
  line-height: 1.6;
}

/* Social media links */
.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
}

.social-label {
  font-size: 12px;
  color: #8C6A52;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-insta {
  background: rgba(255, 255, 255, 0.9);
  color: #C13584;
  border: 1.5px solid rgba(193, 53, 132, 0.3);
}

.social-insta:hover {
  background: #FFF0F8;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(193, 53, 132, 0.15);
}

.social-fb {
  background: rgba(255, 255, 255, 0.9);
  color: #1877F2;
  border: 1.5px solid rgba(24, 119, 242, 0.3);
}

.social-fb:hover {
  background: #F0F5FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.15);
}

/* CTA */
.contact-cta {
  text-align: center;
}

.contact-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  color: #3F1A12;
  margin-bottom: 20px;
}


/* ══════════════════════════
   FOOTER — Dark Wood
══════════════════════════ */

.footer {
  background: #1A0D05;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4A017, transparent);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: rgba(212, 160, 23, 0.7);
  margin-bottom: 5px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(248, 241, 227, 0.25);
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(248, 241, 227, 0.15);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(248, 241, 227, 0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #D4A017;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  font-size: 12px;
  color: rgba(248, 241, 227, 0.25);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #D4A017;
}


/* ══════════════════════════
   MOBILE RESPONSIVE
══════════════════════════ */

@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .hero-inner {
    flex-direction: column;
    padding: 100px 24px 60px;
  }

  .hero-heading {
    font-size: 38px;
  }

  .hero-img-frame {
    width: 100%;
    height: 280px;
  }

  .about-inner {
    flex-direction: column;
  }

  .courses-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card {
    flex-direction: column;
    padding: 24px 0;
    gap: 24px;
  }

  .contact-divider {
    width: 60px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, #D4A017, transparent);
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }

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

@media (max-width: 480px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-heading {
    font-size: 32px;
  }
}


/* ══════════════════════════
   ANIMATIONS & HOVER EFFECTS
══════════════════════════ */

/* Scroll fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Button universal transitions */
.btn-primary, .btn-ghost {
  transition: all 0.3s ease;
}

/* Stat box counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat-box {
  animation: countUp 0.6s ease backwards;
}

.stat-box:nth-child(1) { animation-delay: 0.1s; }
.stat-box:nth-child(2) { animation-delay: 0.2s; }
.stat-box:nth-child(3) { animation-delay: 0.3s; }
.stat-box:nth-child(4) { animation-delay: 0.4s; }
