* { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --purple: #7B52AB;
    --purple-dark: #5A3D82;
    --purple-light: #9B72CB;
    --pink: #E83E8C;
    --pink-light: #F06BAD;
    --orange: #FF6B35;
    --yellow: #FFB800;
    --teal: #00BCD4;
    --green: #4CAF50;
    --dark: #2D2D2D;
    --white: #ffffff;
    --light-bg: #FAF8FF;
    --card-border: #EDE6F8;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Poppins', sans-serif; color: var(--dark); background: var(--white); margin:0;}

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 48px;
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123,82,171,0.12);
  }
  .nav-logo { height: 52px; width: auto; object-fit: contain; }
  .nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
  .nav-links a { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--dark); letter-spacing: 0.03em; transition: color 0.2s; text-transform: uppercase; }
  .nav-links a:hover { color: var(--purple); }
  .nav-cta { background: linear-gradient(135deg, var(--purple), var(--pink)); color: var(--white) !important; padding: 10px 24px; border-radius: 30px; transition: opacity 0.2s, transform 0.2s !important; }
  .nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

  /* HERO */
  #hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #4A2F7A 0%, #7B52AB 40%, #C23788 75%, #E83E8C 100%);
    position: relative; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    padding: 120px 24px 80px; overflow: hidden;
  }
  .hero-circles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .hero-circles span { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06); }
  .hero-circles span:nth-child(1) { width: 480px; height: 480px; top: -120px; left: -120px; }
  .hero-circles span:nth-child(2) { width: 320px; height: 320px; bottom: -80px; right: -80px; }
  .hero-circles span:nth-child(3) { width: 200px; height: 200px; top: 30%; right: 10%; }
  .hero-circles span:nth-child(4) { width: 140px; height: 140px; bottom: 20%; left: 8%; }
  .hero-illustration {
    width: 100%; max-width: 820px; border-radius: 24px; margin-bottom: 40px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.22); position: relative; z-index: 1;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
    color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 8px 20px; border-radius: 30px; margin-bottom: 20px;
    backdrop-filter: blur(8px); position: relative; z-index: 1;
  }
  .hero-badge::before { content: "✦"; }
  .hero-title {
    font-family: 'Nunito', sans-serif; font-size: clamp(38px, 6vw, 72px);
    font-weight: 900; color: var(--white); line-height: 1.1; max-width: 820px;
    margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.15); position: relative; z-index: 1;
  }
  .hero-title span { background: linear-gradient(90deg, #FFD1F0, #FFF0B3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .hero-sub { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 540px; line-height: 1.6; margin-bottom: 36px; position: relative; z-index: 1; }
  .hero-nav { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 48px; position: relative; z-index: 1; }
  .hero-nav a { text-decoration: none; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 13px 30px; border-radius: 50px; transition: all 0.25s; }
  .hero-btn-primary { background: var(--white); color: var(--purple-dark); }
  .hero-btn-primary:hover { background: #F3EEFF; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
  .hero-btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55); }
  .hero-btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }
  .hero-tags { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
  .hero-tag { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); letter-spacing: 0.1em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
  .hero-tag::before { content: "•"; color: var(--pink-light); font-size: 18px; }

  /* SECTIONS */
  section { padding: 96px 24px; }
  .section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pink); margin-bottom: 12px; }
  .section-title { font-family: 'Nunito', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--dark); line-height: 1.15; margin-bottom: 16px; }
  .section-title span { color: var(--purple); }
  .section-lead { font-size: 16px; color: #666; line-height: 1.7; max-width: 620px; }
  .section-header { margin-bottom: 56px; }
  .container { max-width: 1140px; margin: 0 auto; }

  /* ABOUT */
  #about { background: var(--light-bg); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .about-img-wrap { position: relative; }
  .about-img-wrap img { width: 100%; border-radius: 24px; box-shadow: 0 20px 50px rgba(123,82,171,0.18); }
  .about-floating {
    position: absolute; bottom: -20px; right: -20px;
    background: white; border-radius: 18px; padding: 18px 22px;
    box-shadow: 0 12px 36px rgba(123,82,171,0.2);
    display: flex; align-items: center; gap: 12px;
  }
  .about-floating .icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--purple), var(--pink)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
  .about-floating .label { font-weight: 800; font-size: 13px; color: var(--dark); }
  .about-floating .sublabel { font-size: 11px; color: #999; margin-top: 2px; }
  .about-stat-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }
  .stat-box { background: white; border: 1.5px solid var(--card-border); border-radius: 16px; padding: 18px 16px; text-align: center; }
  .stat-box .num { font-family: 'Nunito', sans-serif; font-size: 28px; font-weight: 900; background: linear-gradient(135deg, var(--purple), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .stat-box .lbl { font-size: 11px; font-weight: 600; color: #888; margin-top: 2px; }
  .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
  .feat-pill { background: white; border: 1.5px solid var(--card-border); border-radius: 16px; padding: 18px; display: flex; align-items: flex-start; gap: 12px; transition: box-shadow 0.2s, border-color 0.2s; }
  .feat-pill:hover { box-shadow: 0 8px 24px rgba(123,82,171,0.1); border-color: var(--purple-light); }
  .feat-pill .icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
  .feat-pill h4 { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
  .feat-pill p { font-size: 12px; color: #888; line-height: 1.5; }

  /* COURSES */
  #courses { background: white; }
  .course-banner { width: 100%; border-radius: 20px; margin-bottom: 56px; box-shadow: 0 8px 30px rgba(123,82,171,0.15); }

  /* 3 category boxes */
  .category-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 40px; }
  .cat-box {
    border-radius: 24px; padding: 36px 28px; position: relative; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .cat-box:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.13); }
  .cat-box-1 { background: linear-gradient(145deg, #7B52AB, #5A3D82); }
  .cat-box-2 { background: linear-gradient(145deg, #E83E8C, #C23788); }
  .cat-box-3 { background: linear-gradient(145deg, #FF6B35, #E04A1A); }
  .cat-box::before {
    content: ""; position: absolute; width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,0.07); top: -60px; right: -60px;
  }
  .cat-box::after {
    content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%;
    background: rgba(255,255,255,0.05); bottom: -30px; left: -30px;
  }
  .cat-box-emoji { font-size: 44px; margin-bottom: 16px; display: block; position: relative; z-index: 1; }
  .cat-box h3 { font-family: 'Nunito', sans-serif; font-size: 22px; font-weight: 900; color: white; margin-bottom: 8px; position: relative; z-index: 1; }
  .cat-box .cat-desc { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 20px; position: relative; z-index: 1; }
  .cat-items { list-style: none; position: relative; z-index: 1; }
  .cat-items li {
    font-size: 13px; color: rgba(255,255,255,0.9); padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; gap: 8px; font-weight: 500;
  }
  .cat-items li:last-child { border-bottom: none; }
  .cat-items li::before { content: "✓"; font-size: 11px; background: rgba(255,255,255,0.2); border-radius: 50%; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700; }

  /* Age bands */
  .age-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
  .age-card { border-radius: 20px; padding: 30px 26px; position: relative; overflow: hidden; border: 2px solid transparent; transition: transform 0.2s; }
  .age-card:hover { transform: translateY(-4px); }
  .age-card:nth-child(1) { background: #EDE6F8; border-color: #D4C4F0; }
  .age-card:nth-child(2) { background: #FCE8F3; border-color: #F4C0DB; }
  .age-card:nth-child(3) { background: #FFF3E0; border-color: #FFCC80; }
  .age-card .age-emoji { font-size: 36px; margin-bottom: 10px; display: block; }
  .age-card .age-label { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple-dark); margin-bottom: 4px; }
  .age-card h3 { font-family: 'Nunito', sans-serif; font-size: 20px; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
  .age-card p { font-size: 13px; color: #555; line-height: 1.6; }

  /* TESTIMONIALS */
  #testimonials { background: var(--light-bg); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testi-card { background: white; border-radius: 20px; padding: 30px; border: 1.5px solid var(--card-border); transition: box-shadow 0.2s, transform 0.2s; }
  .testi-card:hover { box-shadow: 0 12px 32px rgba(123,82,171,0.1); transform: translateY(-3px); }
  .testi-card .quote-icon { font-size: 44px; line-height: 1; color: var(--pink-light); font-family: Georgia, serif; margin-bottom: 8px; display: block; }
  .testi-card .stars { color: #FFB800; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
  .testi-card p { font-size: 14px; color: #555; line-height: 1.75; margin-bottom: 22px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--card-border); }
  .author-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 800; color: white; flex-shrink: 0; }
  .av1 { background: linear-gradient(135deg, #7B52AB, #C23788); }
  .av2 { background: linear-gradient(135deg, #FF6B35, #E83E8C); }
  .av3 { background: linear-gradient(135deg, #00BCD4, #7B52AB); }
  .author-name { font-weight: 700; font-size: 13px; color: var(--dark); }
  .author-role { font-size: 11px; color: #999; margin-top: 2px; }

  /* CONNECT */
  #connect { background: white; }
  .connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .connect-info h2 { font-family: 'Nunito', sans-serif; font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; color: var(--dark); margin-bottom: 14px; line-height: 1.2; }
  .connect-info h2 span { color: var(--purple); }
  .connect-info > p { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 28px; }
  .contact-items { display: flex; flex-direction: column; gap: 14px; }
  .contact-item { display: flex; align-items: center; gap: 14px; }
  .contact-item .ci-icon { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--purple), var(--pink)); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
  .contact-item .ci-text { font-size: 14px; color: var(--dark); font-weight: 600; }
  .contact-item .ci-sub { font-size: 11px; color: #999; margin-top: 2px; }
  .connect-form { background: var(--light-bg); border-radius: 24px; padding: 36px; border: 1.5px solid var(--card-border); }
  .connect-form h3 { font-family: 'Nunito', sans-serif; font-size: 22px; font-weight: 900; color: var(--dark); margin-bottom: 24px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--purple-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--card-border); border-radius: 12px; font-size: 14px; font-family: 'Poppins', sans-serif; color: var(--dark); background: white; outline: none; transition: border-color 0.2s; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--purple); }
  .form-group textarea { resize: none; height: 90px; }
  .form-submit { width: 100%; padding: 15px; background: linear-gradient(135deg, var(--purple), var(--pink)); color: white; border: none; border-radius: 50px; font-size: 14px; font-weight: 700; font-family: 'Poppins', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: opacity 0.2s, transform 0.2s; margin-top: 6px; }
  .form-submit:hover { opacity: 0.9; transform: translateY(-2px); }

  /* FOOTER */
  footer { background: #1E1533; color: rgba(255,255,255,0.7); padding: 56px 24px 32px; }
  .footer-inner { max-width: 1140px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 28px; }
  .footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 220px; margin-bottom: 18px; }
  .footer-social { display: flex; gap: 10px; }
  .social-btn { width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 14px; text-decoration: none; transition: background 0.2s; }
  .social-btn:hover { background: linear-gradient(135deg, var(--purple), var(--pink)); }
  .footer-col h4 { font-size: 12px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .footer-col a { text-decoration: none; font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
  .footer-col a:hover { color: var(--pink-light); }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.4); }
  .footer-bottom span { color: var(--pink-light); }

  @media (max-width: 900px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    .about-grid, .connect-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-features, .form-row { grid-template-columns: 1fr; }
    .testimonials-grid, .category-boxes, .age-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  }
  @media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; }
    .hero-nav { flex-direction: column; align-items: center; }
    .about-stat-strip { grid-template-columns: repeat(3,1fr); }
  }
  
  /* Error Message */ label.error { color: #dc3545; font-size: 13px; margin-top: 5px; display: block; font-weight: 500; } /* Invalid Field */ .form-control.error, select.error, textarea.error { border: 1px solid #dc3545 !important; box-shadow: none; } /* Valid Field */ .form-control.valid, select.valid, textarea.valid { border: 1px solid #198754 !important; box-shadow: none; }
.email-error,.error{ color:#dc3545; font-size:12px;}
#responseMsg{
  display: block;
    margin-top: 20px;  
}

.my-atropos {
    width: 100%;
    max-width: 1200px;
    height: 550px;
    margin: auto;
}

.atropos-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Main Image */
.hero-illustration {
    width: 100%;
    position: relative;
    z-index: 5;
}

/* Floating Alphabet Blocks */
.floating-item {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #ffb703;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.letter-a {
    top: 40px;
    left: 20px;
    background: #ff6b6b;
}

.letter-b {
    top: 100px;
    right: 40px;
    background: #4dabf7;
    animation-delay: .8s;
}

.letter-c {
    bottom: 100px;
    left: 50px;
    background: #51cf66;
    animation-delay: 1.5s;
}

/* Clouds */
.cloud {
    position: absolute;
    opacity: .8;
}

.cloud1 {
    top: 30px;
    left: -20px;
    width: 120px;
}

.cloud2 {
    top: 80px;
    right: 0;
    width: 100px;
}

/* Stars */
.star {
    position: absolute;
    font-size: 40px;
    animation: spin 8s linear infinite;
}

.star1 {
    top: 50px;
    right: 150px;
    z-index: 99;
}

.star2 {
    bottom: 80px;
    right: 60px;
}

/* Balloon */
.balloon {
    position: absolute;
    top: 30px;
    left: 65%;
    font-size: 60px;
    animation: float 5s ease-in-out infinite;
    z-index: 999;
}

.cloud {
    position: absolute;
    font-size: 60px;
}
/* Animations */
@keyframes float {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

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

@media (max-width: 768px) {

    .my-atropos {
        height: 320px;
    }

    .floating-item {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .balloon {
        font-size: 35px;
    }

    .star {
        font-size: 24px;
    }

    .cloud1,
    .cloud2 {
        width: 70px;
    }
}

@media (max-width: 480px) {

    .my-atropos {
        height: 250px;
    }

    .floating-item {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .balloon {
        font-size: 28px;
    }

    .star {
        font-size: 18px;
    }
}

.footer-social {
    display: flex;

    gap: 15px;
}

.social-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn .fa-facebook-f {
    color: #1877F2;
}

.social-btn .fa-instagram {
    color: #E4405F;
}

.social-btn .fa-whatsapp {
    color: #25D366;
}
.contact-items i { color:#fff;}