*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
line-height:1.6;
}

.navbar{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:#203d64;
z-index:1000;
}

.logo{
display:flex;
align-items:center;
color:white;
font-size:20px;
font-weight:600;
}

.logo-circle{
width:60px;
height:60px;
border-radius:50%;
background:white;
display:flex;
align-items:center;
justify-content:center;
margin-right:10px;
}

.logo-circle img{
width:85%;
}

.menu-toggle{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}

.nav-links{
list-style:none;
display:flex;
gap:25px;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:500;
padding:8px 12px;
border-radius:6px;
transition:0.3s;
}

.nav-links a:hover{
background:#ffbd59;
color:#203d64;
}

.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
background-size:cover;
background-position:center;
animation:slide 20s infinite;
position:relative;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
}

.hero-text{
position:relative;
z-index:2;
}

.hero-text h1{
font-size:55px;
}

.btn{
background:#ffbd59;
padding:12px 30px;
border-radius:30px;
text-decoration:none;
color:#203d64;
font-weight:600;
}

/* spacing hero enroll button below motto */
.hero-btn{
margin-top:20px;
display:inline-block;
}

@keyframes slide{
0%{background-image:url('images/kids1.jpg');}
25%{background-image:url('images/kids2.jpg');}
50%{background-image:url('images/kids3.jpg');}
75%{background-image:url('images/kids4.jpg');}
100%{background-image:url('images/kids1.jpg');}
}

section{
padding:90px 20px;
text-align:center;
}

.about{
background:#f5f5f5;
}

.vision{
background:#92d7ff;
display:flex;
flex-wrap:wrap;
justify-content:center;
}

.box{
background:white;
padding:30px;
margin:15px;
width:280px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.program-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

.program{
background:#203d64;
color:white;
margin:15px;
padding:25px;
width:250px;
border-radius:10px;
}

.program h3{
color:#ffbd59;
}

.gallery-slider{
overflow:hidden;
margin-top:40px;
}

.gallery-track{
display:flex;
gap:20px;
animation:scroll 25s linear infinite;
}

.gallery-slider:hover .gallery-track{
animation-play-state:paused;
}

.gallery-img{
width:280px;
height:180px;
border-radius:10px;
object-fit:cover;
cursor:pointer;
}

@keyframes scroll{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}

.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.8);
display:none;
justify-content:center;
align-items:center;
}

.lightbox img{
max-width:80%;
max-height:80%;
}

.contact{
background:#92d7ff;
}

/* contact wrapper stacked vertically and full width */
.contact-wrapper{
display:flex;
flex-direction:column;
align-items:center;
gap:30px;
width:100%;
}

/* contact and enroll forms styling */
.contact-form, .enroll-form{
background:white;
padding:30px;
border-radius:10px;
display:flex;
flex-direction:column;
gap:15px;
width:90%;
max-width:500px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.name-row{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.enroll-form input,
.enroll-form select,
.enroll-form textarea{
padding:10px;
border:1px solid #ddd;
border-radius:6px;
width:100%;
}

.contact-form textarea,
.enroll-form textarea{
height:120px;
}

.contact-form button,
.enroll-form button{
background:#203d64;
color:white;
padding:12px;
border:none;
border-radius:8px;
cursor:pointer;
}

/* make map wider */
.map-container{
width:90%;
max-width:900px;
height:400px;
border-radius:10px;
overflow:hidden;
}

.map-container iframe{
width:100%;
height:100%;
border:none;
border-radius:10px;
}

/* Center enroll section */
.enroll{
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
width:100%;
}

/* WhatsApp button */
.whatsapp{
position:fixed;
bottom:20px;
right:20px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

.whatsapp img{
width:32px;
}

/* ✅ FIXED: Back to top button now same size as WhatsApp */
.back-to-top{
position:fixed;
bottom:90px;
right:20px;
width:60px; /* changed from 50px */
height:60px; /* changed from 50px */
background:#203d64;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px; /* slightly adjusted for balance */
text-decoration:none;
cursor:pointer;
z-index:1000;
transition:0.3s;
}

.back-to-top:hover{
background:#ffbd59;
color:#203d64;
}

footer{
background:#203d64;
color:white;
padding:20px;
text-align:center;
}

.reveal{
opacity:0;
transform:translateY(40px);
transition:all 1s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

@media(max-width:768px){

.menu-toggle{
display:block;
}

.nav-links{
display:none;
flex-direction:column;
position:absolute;
top:80px;
right:20px;
background:#203d64;
width:220px;
padding:20px;
border-radius:10px;
gap:15px;
}

.nav-links.show{
display:flex;
}

.nav-links a{
padding:10px 0;
border-bottom:1px solid rgba(255,255,255,0.2);
}

.name-row{
flex-direction:column;
}

.map-container iframe{
width:100%;
}

.contact-form, .enroll-form{
width:100%;
}

}