   :root {
    --primary: #8834E3;
    --secondary: #DF528A;
    --light: #F8F5FF;
    --dark: #1F2937;
    --gray: #6B7280;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #DF528A, #8834E3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
    color: var(--dark);
    padding-top: 80px; /* हेडर फिक्स्ड होने के कारण कंटेंट ऊपर न छुपे इसलिए पैडिंग दी है */
}

/* CONTAINER STRUCTURE */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO SECTION */
.hero {
    min-height: calc(100vh - 80px);
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    color: #fff;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f1f1f1;
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

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

/* SECTION */
.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--gray);
}

/* ABOUT */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about img {
    width: 100%;
    border-radius: 20px;
}

.about h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* PROGRAMS */
.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.card h4 {
    margin-bottom: 15px;
}

.card p {
    color: var(--gray);
}

/* WHY US */
.why-us {
    background: var(--light);
}

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

.feature {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.feature h4 {
    margin: 15px 0;
}

/* TESTIMONIALS */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.review {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.stars {
    color: #f8b400;
    margin-bottom: 10px;
}

.review p {
    color: var(--gray);
    margin-bottom: 15px;
}

/* CTA */
.cta {
    background: var(--gradient);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.cta h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
}



/* GLOBAL RESPONSIVE RULES FOR CONTENT */
@media(max-width:992px) {
    .about {
        grid-template-columns: 1fr;
    }
    .program-grid, .feature-grid, .testimonial-grid, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 45px;
    }
}

@media(max-width:768px) {
    body {
        padding-top: 70px;
    }
    .program-grid, .feature-grid, .testimonial-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 34px;
    }
    .section-title h2 {
        font-size: 30px;
    }
    .cta h2 {
        font-size: 32px;
    }
}