*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins', sans-serif;
background:#f8f9fb;
color:#333;
line-height:1.6;
}


/* HEADER */

.main-header{
background:white;
box-shadow:0px 2px 10px rgba(0,0,0,0.1);
position:sticky;
top:0;
z-index:1000;
}

.header-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px;
}


/* LOGO */

.logo{
width:70px;
}

.logo-title{
display:flex;
align-items:center;
gap:10px;
}

.school-name h1{
font-size:22px;
color:#ff6600;
}

.school-name p{
font-size:14px;
color:#666;
}


/* MENU */

.menu a{
text-decoration:none;
margin-left:25px;
font-weight:600;
color:#333;
transition:0.3s;
}

.menu a:hover{
color:#ff6600;
}

.menu .active{
color:#ff6600;
}


/* HERO */

.hero{
height:450px;
background:url("../images/Nursery.jpeg");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-content{
background:rgba(0,0,0,0.5);
padding:40px;
border-radius:10px;
}

.hero h1{
font-size:40px;
margin-bottom:10px;
}

.hero p{
font-size:18px;
margin-bottom:20px;
}


.admission-btn{

background:#ff6600;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:6px;
font-weight:600;
transition:0.3s;

}

.admission-btn:hover{

background:#e65c00;

}



/* ABOUT */

.about-preview{
padding:60px 20px;
background:white;
}

.about-flex{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
gap:40px;
}

.about-text{
flex:1;
}

.about-text h2{
margin-bottom:15px;
color:#ff6600;
}

.about-text p{
margin-bottom:20px;
}

.about-btn{

background:#4CAF50;
color:white;
padding:10px 20px;
text-decoration:none;
border-radius:6px;

}


.about-image img{
width:350px;
border-radius:10px;
}



/* PROGRAMS */

.home-programs{
padding:60px 20px;
background:#f0f6ff;
text-align:center;
}

.program-heading{
margin-bottom:30px;
color:#ff6600;
}

.home-program-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1100px;
margin:auto;

}


.home-program-card{

background:white;
border-radius:10px;
box-shadow:0px 5px 15px rgba(0,0,0,0.1);
padding-bottom:20px;
transition:0.3s;

}

.home-program-card:hover{

transform:translateY(-5px);

}


.home-program-card img{
width:100%;
border-radius:10px 10px 0 0;
height:200px;
object-fit:cover;
}


.home-program-card h3{
margin:10px 0;
}


.program-btn{

background:#ff6600;
color:white;
padding:8px 20px;
text-decoration:none;
border-radius:5px;
display:inline-block;
margin-top:10px;

}



/* WHY CHOOSE */

.why-section{

padding:60px 20px;
text-align:center;
background:white;

}


.why-title{

margin-bottom:30px;
color:#ff6600;

}


.why-container{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1100px;
margin:auto;

}


.why-card{

background:#f8f9fb;
padding:25px;
border-radius:10px;
box-shadow:0px 3px 10px rgba(0,0,0,0.1);

}


.why-card .icon{

font-size:40px;
margin-bottom:10px;

}



/* GALLERY */

.container{

padding:60px 20px;
text-align:center;
background:#f0f6ff;

}


.grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
max-width:1100px;
margin:auto;
margin-top:20px;

}


.grid img{

width:100%;
height:220px;
object-fit:cover;
border-radius:10px;

}



/* TESTIMONIAL */

.testimonial-section{

padding:60px 20px;
text-align:center;
background:white;

}


.testimonial-container{

display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
margin-top:30px;

}


.testimonial-card{

width:300px;
background:#f8f9fb;
padding:25px;
border-radius:10px;
box-shadow:0px 3px 10px rgba(0,0,0,0.1);

}


.parent-img{

width:80px;
margin-bottom:10px;

}



/* SEO TEXT */

.about-home{

padding:60px 20px;
background:#f0f6ff;

}


.about-container{

max-width:900px;
margin:auto;
text-align:center;

}

.about-container h2{

margin-bottom:20px;
color:#ff6600;

}

.about-container p{

margin-bottom:15px;

}



/* FOOTER */

footer{

background:#222;
color:white;
text-align:center;
padding:25px;

}



/* ENQUIRE BUTTON */

.enquire-btn{

position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
box-shadow:0px 5px 15px rgba(0,0,0,0.2);

}



/* MOBILE */

@media(max-width:768px){

.about-flex{

flex-direction:column;
text-align:center;

}

.hero h1{

font-size:28px;

}

.menu{

display:none;

}

}


/* ABOUT BANNER */

.about-banner{

background:#6a5acd;
color:white;
text-align:center;
padding:60px 20px;

}

.about-banner h1{

font-size:36px;
margin-bottom:10px;

}

.about-banner p{

font-size:16px;

}



/* ABOUT MAIN */

.about-main{

padding:60px 20px;
background:white;

}

.about-grid{

max-width:1100px;
margin:auto;
display:flex;
gap:40px;
align-items:center;

}

.about-img{

width:400px;
border-radius:10px;
box-shadow:0px 5px 15px rgba(0,0,0,0.2);

}

.about-grid h2{

color:#ff6600;
margin-bottom:15px;

}

.about-grid p{

margin-bottom:15px;
line-height:1.6;

}



/* PRINCIPAL */

.principal-section{

background:#f0f6ff;
padding:60px 20px;

}

.principal-grid{

max-width:1100px;
margin:auto;
display:flex;
gap:40px;
align-items:center;

}

.principal-img{

width:300px;
border-radius:10px;
box-shadow:0px 5px 15px rgba(0,0,0,0.2);

}

.principal-section h2{

color:#ff6600;
margin-bottom:15px;

}



/* VALUES */

.values-section{

padding:60px 20px;
text-align:center;
background:white;

}

.values-section h2{

margin-bottom:40px;
color:#ff6600;

}

.values-container{

max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;

}

.value-card{

background:#f8f9fb;
padding:25px;
border-radius:10px;
box-shadow:0px 3px 10px rgba(0,0,0,0.1);

}

.value-icon{

font-size:40px;
margin-bottom:10px;

}


/* PROGRAM PAGE */

.program-main{

padding:60px 20px;
background:#f8f9fb;
text-align:center;

}

.program-title{

margin-bottom:40px;
color:#ff6600;
font-size:35px;

}

.program-grid{

max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;

}

.program-card{

background:white;
border-radius:10px;
box-shadow:0px 5px 15px rgba(0,0,0,0.1);
padding-bottom:20px;
transition:0.3s;

}

.program-card:hover{

transform:translateY(-5px);

}

.program-card img{

width:100%;
height:220px;
object-fit:cover;
border-radius:10px 10px 0 0;

}

.program-card h2{

margin-top:10px;

}

.program-card p{

margin-top:5px;

}

.enrol-btn{

background:#ff6600;
color:white;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
display:inline-block;
margin-top:10px;

}

.enrol-btn:hover{

background:#e65c00;

}

/* CONTACT PAGE */

.contact-section{

padding:60px 20px;
background:white;

}

.contact-container{

max-width:1100px;
margin:auto;
display:flex;
gap:50px;
flex-wrap:wrap;

}


.contact-info{

flex:1;
min-width:300px;

}

.contact-info h2{

margin-bottom:20px;
color:#ff6600;

}

.contact-info p{

margin-bottom:15px;
line-height:1.6;

}



/* FORM */

.contact-form{

flex:1;
min-width:300px;

}

.contact-form h2{

margin-bottom:20px;
color:#ff6600;

}

.contact-form input,
.contact-form textarea{

width:100%;
padding:12px;
margin-bottom:15px;
border-radius:6px;
border:1px solid #ccc;

}

.contact-form textarea{

height:120px;

}

.contact-form button{

background:#ff6600;
color:white;
padding:12px;
border:none;
border-radius:6px;
font-weight:bold;
cursor:pointer;

}

.contact-form button:hover{

background:#e65c00;

}



/* MAP */

.map-section{

padding:60px 20px;
background:#f0f6ff;
text-align:center;

}

.map-section h2{

margin-bottom:20px;
color:#ff6600;

}

.map-container{

max-width:1100px;
margin:auto;

}

.map-container iframe{

border-radius:10px;

}
