*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fff;
color:#333;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:white;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-size:28px;
font-weight:700;
color:#ff6b6b;
}

nav{
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
color:#333;
font-weight:500;
}

.btn{
background:#ff6b6b;
color:white;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
transition:.3s;
}

.btn:hover{
background:#ff5252;
}

.hero{
padding:80px 0;
background:linear-gradient(
135deg,
#fff7ed,
#fff0f5,
#eefcff
);
}

.hero-content{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.hero-text h1{
font-size:60px;
line-height:1.1;
margin:20px 0;
}

.hero-text p{
font-size:20px;
color:#666;
}

.badge{
background:#ffe3d8;
padding:10px 20px;
border-radius:30px;
font-size:14px;
font-weight:600;
color:#ff6b6b;
}

.hero-buttons{
margin-top:30px;
display:flex;
gap:15px;
}

.btn-outline{
padding:12px 25px;
border:2px solid #ff6b6b;
color:#ff6b6b;
border-radius:30px;
text-decoration:none;
}

.hero-image img{
width:100%;
border-radius:30px;
box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.features,
.programs,
.gallery{
padding:100px 0;
}

.features h2,
.programs h2,
.gallery h2{
text-align:center;
font-size:42px;
margin-bottom:60px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card,
.program-card{
background:white;
padding:35px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.card:hover,
.program-card:hover{
transform:translateY(-10px);
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery-grid img{
width:100%;
height:250px;
object-fit:cover;
border-radius:20px;
transition:.4s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

.cta{
padding:100px 20px;
text-align:center;
background:#ff6b6b;
color:white;
}

.cta h2{
font-size:50px;
margin-bottom:20px;
}

.btn-white{
display:inline-block;
margin-top:25px;
padding:15px 35px;
background:white;
color:#ff6b6b;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

footer{
background:#222;
color:white;
padding:60px 0;
}

.footer{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

@media(max-width:768px){

.hero-content{
grid-template-columns:1fr;
}

.hero-text h1{
font-size:40px;
}

.nav{
flex-direction:column;
gap:15px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

}

.why-us{
    padding:120px 0;
    background:linear-gradient(
        180deg,
        #fff,
        #f8fbff
    );
    position:relative;
}

.section-header{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:70px;
}

.section-header span{
    background:#fff0e8;
    color:#ff6b6b;
    padding:10px 25px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.section-header h2{
    font-size:52px;
    margin-top:20px;
    color:#222;
}

.section-header p{
    color:#666;
    margin-top:15px;
    font-size:18px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.feature-card{
    background:rgba(255,255,255,.8);
    backdrop-filter:blur(10px);
    border-radius:30px;
    padding:40px 30px;
    text-align:center;
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.4);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.feature-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(
        90deg,
        #ff6b6b,
        #4ecdc4
    );
}

.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.icon-circle{
    width:90px;
    height:90px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:40px;
    margin:auto;
    margin-bottom:25px;
}

.orange{
    background:#fff0e8;
}

.pink{
    background:#ffe8f3;
}

.blue{
    background:#e9f8ff;
}

.green{
    background:#e9fff0;
}

.feature-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.feature-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

@media(max-width:768px){

.section-header h2{
    font-size:36px;
}

.feature-card{
    padding:30px 20px;
}

}



.programs-section{
    padding:120px 0;
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

.programs-section::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:#fff0e8;
    border-radius:50%;
    top:-100px;
    left:-150px;
    filter:blur(120px);
}

.programs-section::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:#e8f8ff;
    border-radius:50%;
    bottom:-100px;
    right:-150px;
    filter:blur(120px);
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.program-card{
    padding:35px;
    border-radius:30px;
    position:relative;
    overflow:hidden;
    transition:.4s;
    color:#222;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.program-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.program-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:42px;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.program-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.program-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.program-card span{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.8);
    font-size:13px;
    font-weight:600;
}

/* Individual Colors */

.preschool{
    background:linear-gradient(135deg,#fff0f5,#ffdbe8);
}

.daycare{
    background:linear-gradient(135deg,#e8f8ff,#d6f4ff);
}

.mandala{
    background:linear-gradient(135deg,#fff6d8,#ffeaa7);
}

.canvas{
    background:linear-gradient(135deg,#f3e8ff,#e9d5ff);
}

.handwriting{
    background:linear-gradient(135deg,#e8fff1,#d4f8e8);
}

.summer{
    background:linear-gradient(135deg,#fff1e8,#ffd8b5);
}

.program-card::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(255,255,255,.25);
    border-radius:50%;
    top:-40px;
    right:-40px;
}

.program-card::after{
    content:'';
    position:absolute;
    width:80px;
    height:80px;
    background:rgba(255,255,255,.15);
    border-radius:50%;
    bottom:-20px;
    left:-20px;
}

@media(max-width:768px){

.program-grid{
    grid-template-columns:1fr;
}

.program-card{
    padding:30px;
}

.program-card h3{
    font-size:24px;
}

}

.gallery-section{
    padding:120px 0;
    background:linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );
    overflow:hidden;
}

.gallery-slider{
    position:relative;
    overflow:hidden;
    margin-top:60px;
}

.gallery-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:scrollGallery 40s linear infinite;
}

.gallery-slider:hover .gallery-track{
    animation-play-state:paused;
}

.gallery-card{
    position:relative;
    width:380px;
    height:280px;
    flex-shrink:0;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    transition:.4s;
}

.gallery-card:hover{
    transform:translateY(-10px);
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.gallery-card:hover img{
    transform:scale(1.1);
}

.gallery-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:25px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );
}

.gallery-overlay span{
    background:white;
    color:#ff6b6b;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

@keyframes scrollGallery{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

@media(max-width:768px){

.gallery-card{
    width:280px;
    height:220px;
}

}

.section-header{
    text-align:center;
    max-width:700px;
    margin:auto;
}

.section-header span{
    background:#fff0e8;
    color:#ff6b6b;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.section-header h2{
    font-size:52px;
    margin-top:20px;
    color:#222;
}

.section-header p{
    margin-top:15px;
    color:#666;
    font-size:18px;
}

/* ==========================
   ADMISSION SECTION
========================== */

.admission-section{
    position:relative;
    padding:120px 20px;
    text-align:center;
    overflow:hidden;

    background:linear-gradient(
        135deg,
        #ff6b6b,
        #ff8a65,
        #ffb74d
    );

    color:white;
}

.admission-content{
    max-width:850px;
    margin:auto;
    position:relative;
    z-index:2;
}

.admission-badge{
    display:inline-block;
    background:rgba(255,255,255,.2);
    backdrop-filter:blur(10px);
    padding:10px 25px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.admission-content h2{
    font-size:58px;
    line-height:1.2;
    margin-bottom:20px;
}

.admission-content p{
    font-size:20px;
    line-height:1.8;
    opacity:.95;
    max-width:700px;
    margin:auto;
}

.cta-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-primary{
    background:white;
    color:#ff6b6b;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.cta-primary:hover{
    transform:translateY(-5px);
}

.cta-secondary{
    border:2px solid white;
    color:white;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.cta-secondary:hover{
    background:white;
    color:#ff6b6b;
}

/* Floating Shapes */

.admission-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
}

.shape1{
    width:300px;
    height:300px;
    background:#ffd54f;
    top:-80px;
    left:-100px;
}

.shape2{
    width:300px;
    height:300px;
    background:#ff8a80;
    bottom:-80px;
    right:-100px;
}

/* ==========================
   FOOTER
========================== */

.footer-section{
    background:#16213e;
    color:white;
    padding-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:50px;
}

.footer-box h3,
.footer-box h4{
    margin-bottom:20px;
    font-size:24px;
}

.footer-box p,
.footer-box li{
    color:#d6d6d6;
    line-height:1.9;
    list-style:none;
}

.footer-box ul{
    padding:0;
}

.social-links{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.social-links a{
    color:#d6d6d6;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    color:#ffb74d;
    padding-left:8px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding:25px 0;
    margin-top:50px;
    color:#aaa;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .admission-content h2{
        font-size:38px;
    }

    .admission-content p{
        font-size:16px;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .footer-grid{
        gap:40px;
    }

}

.hero{
    position:relative;
    overflow:hidden;
    padding:120px 0;
    background:linear-gradient(
        135deg,
        #fff7ed,
        #fff0f5,
        #eefcff
    );
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    position:relative;
    z-index:2;
}

.hero-text h1{
    font-size:68px;
    line-height:1.1;
    font-weight:700;
    color:#222;
    margin:25px 0;
}

.hero-text h1 span{
    display:block;
    color:#ff6b6b;
}

.hero-text p{
    font-size:20px;
    line-height:1.8;
    color:#666;
    max-width:600px;
}

.hero-badge{
    display:inline-block;
    background:#fff;
    padding:12px 24px;
    border-radius:50px;
    color:#ff6b6b;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-top:35px;
    flex-wrap:wrap;
}

.hero-btn{
    background:#ff6b6b;
    color:white;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.hero-btn:hover{
    transform:translateY(-5px);
}

.hero-btn-outline{
    border:2px solid #ff6b6b;
    color:#ff6b6b;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:600;
}

.hero-btn-outline:hover{
    background:#ff6b6b;
    color:white;
}

.hero-stats{
    display:flex;
    gap:20px;
    margin-top:50px;
    flex-wrap:wrap;
}

.stat-card{
    background:white;
    padding:20px 30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.stat-card h3{
    font-size:30px;
    color:#ff6b6b;
}

.stat-card span{
    color:#666;
    font-size:14px;
}

/* IMAGE */

.image-wrapper{
    position:relative;
}

.image-wrapper img{
    width:100%;
    border-radius:40px;
    box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.floating-card{
    position:absolute;
    background:white;
    padding:15px 25px;
    border-radius:20px;
    font-weight:600;
    box-shadow:0 15px 30px rgba(0,0,0,.1);
}

.card-1{
    top:40px;
    left:-40px;
}

.card-2{
    bottom:40px;
    right:-30px;
}

/* FLOATING SHAPES */

.hero-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
}

.shape-1{
    width:300px;
    height:300px;
    background:#ffd6e7;
    top:-80px;
    left:-100px;
}

.shape-2{
    width:250px;
    height:250px;
    background:#d8f6ff;
    top:50%;
    right:-100px;
}

.shape-3{
    width:220px;
    height:220px;
    background:#fff0c7;
    bottom:-50px;
    left:40%;
}

/* RESPONSIVE */

@media(max-width:992px){

.hero-content{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-text p{
    margin:auto;
}

.hero-buttons{
    justify-content:center;
}

.hero-stats{
    justify-content:center;
}

.card-1,
.card-2{
    display:none;
}

.hero-text h1{
    font-size:50px;
}
}

@media(max-width:768px){

.hero{
    padding:80px 0;
}

.hero-text h1{
    font-size:40px;
}

.hero-text p{
    font-size:16px;
}

.stat-card{
    width:100%;
}

}

.map-section{
    margin-top:60px;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
}

.contact-info{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:50px;
}

.contact-card{
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    padding:25px;
    border-radius:20px;
    text-align:center;
}

.contact-card span{
    font-size:32px;
}

.contact-card h4{
    margin:10px 0;
}

.contact-card a,
.contact-card p{
    color:white;
    text-decoration:none;
}

@media(max-width:768px){
    .contact-info{
        grid-template-columns:1fr;
    }
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:28px;
    font-weight:700;
    color:#ff6b6b;
}

.logo img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.logo span{
    white-space:nowrap;
}

html{
    scroll-behavior:smooth;
}

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
    z-index:9999;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}
/* Desktop */

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#ff6b6b;
}

/* Mobile */

@media(max-width:768px){

    .nav{
        position:relative;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        position:fixed;
        top:0;
        right:-100%;
        width:280px;
        height:100vh;

        background:white;

        display:flex;
        flex-direction:column;
        align-items:flex-start;

        padding:100px 30px 30px;

        gap:25px;

        box-shadow:-10px 0 30px rgba(0,0,0,.15);

        transition:.4s ease;

        z-index:9999;
    }

    nav.active{
        right:0;
    }

    nav a{
        font-size:18px;
        width:100%;
        padding:12px 0;
        border-bottom:1px solid #f1f1f1;
    }

    .mobile-enroll{
        margin-top:15px;
        width:100%;
        text-align:center;
        background:#ff6b6b;
        color:white !important;
        padding:15px;
        border-radius:50px;
        border:none !important;
    }

}

.menu-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.4);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}
.mobile-menu-header{
    text-align:center;
    width:100%;
    margin-bottom:30px;
}

.mobile-menu-header img{
    width:70px;
    height:70px;
    border-radius:50%;
    margin-bottom:10px;
}

.mobile-menu-header h3{
    color:#ff6b6b;
}

.back-to-top{
    position:fixed;
    bottom:100px;
    right:25px;

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    background:linear-gradient(
        135deg,
        #ff6b6b,
        #ff8e53
    );

    color:white;
    font-size:20px;
    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    opacity:0;
    visibility:hidden;

    transition:all .3s ease;

    z-index:999;
}

.back-to-top:hover{
    transform:translateY(-5px);
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
}

@media(max-width:768px){
    .back-to-top{
        width:50px;
        height:50px;
        bottom:95px;
        right:20px;
    }
}

.whatsapp-float{
    bottom:25px;
}

.back-to-top{
    bottom:100px;
}

.back-to-top.show{
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(255,107,107,.5);
    }
    70%{
        box-shadow:0 0 0 15px rgba(255,107,107,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(255,107,107,0);
    }
}
