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

html{
    scroll-behavior:smooth;
}

body{
    background:#f8f9fb;
    color:#222;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:15px 8%;
    background:#0B3D91;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#fff;
}

.logo h2{
    color:#fff;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#FFD700;
}

/* HERO */

.hero{
    height:100vh;
    background:url("building.jpg") center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.overlay{
    background:rgba(0,0,0,.55);
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.overlay h1{
    font-size:55px;
    margin-bottom:15px;
}

.overlay p{
    font-size:22px;
    margin-bottom:30px;
}

.buttons{
    display:flex;
    gap:20px;
}

.call-btn,
.whatsapp-btn{
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-weight:bold;
    transition:.3s;
}

.call-btn{
    background:#FFD700;
    color:#000;
}

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

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

/* ABOUT */

.about{
    padding:90px 8%;
    display:flex;
    gap:50px;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:40px;
    color:#0B3D91;
    margin-bottom:20px;
}

.about-text p{
    font-size:18px;
    line-height:1.8;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}/* FACILITIES */

.facilities{
    padding:80px 8%;
    background:#ffffff;
    text-align:center;
}

.facilities h2,
.gallery h2,
.video-section h2,
.contact h2{
    font-size:40px;
    color:#0B3D91;
    margin-bottom:40px;
}

.facility-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

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

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

.card i{
    font-size:55px;
    color:#0B3D91;
    margin-bottom:15px;
}

.card h3{
    margin-bottom:10px;
}

/* GALLERY */

.gallery{
    padding:80px 8%;
    background:#f8f9fb;
    text-align:center;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    transition:.3s;
}

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.gallery-grid img:hover{
    transform:scale(1.05);
}
}

/* VIDEO */

.video-section{
    padding:80px 8%;
    text-align:center;
}

.video-section video{
    width:100%;
    max-width:850px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* CONTACT */

.contact{
    .call-btn,
.whatsapp-btn{
    text-decoration:none;
    padding:18px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}
}

.contact p{
    margin:15px 0;
    font-size:18px;
}

.map-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 30px;
    background:#FFD700;
    color:#000;
    text-decoration:none;
    border-radius:35px;
    font-weight:bold;
}

/* FLOATING WHATSAPP */

.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* FOOTER */

footer{
    background:#071f4d;
    color:#fff;
    text-align:center;
    padding:18px;
}

/* MOBILE */

@media(max-width:768px){

header{
    flex-direction:column;
    padding:15px;
}

nav{
    margin-top:10px;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.overlay h1{
    font-size:36px;
}

.overlay p{
    font-size:18px;
}

.buttons{
    flex-direction:column;
}

.about{
    flex-direction:column;
}

.facilities h2,
.gallery h2,
.video-section h2,
.contact h2{
    font-size:30px;
}

}footer p{
    margin:8px 0;
}

footer strong{
    color:#FFD700;
    font-weight:700;
/* Admission Form */

.admission-section{
    padding:70px 8%;
    background:#f8f9fc;
}

.admission-section .container{
    max-width:700px;
    margin:auto;
}

.admission-section h2{
    text-align:center;
    color:#0B3D91;
    margin-bottom:10px;
}

.admission-section p{
    text-align:center;
    margin-bottom:30px;
    color:#666;
}

#admissionForm{
    display:flex;
    flex-direction:column;
    gap:18px;
}

#admissionForm input,
#admissionForm select,
#admissionForm textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    outline:none;
    box-sizing:border-box;
}

#admissionForm input:focus,
#admissionForm select:focus,
#admissionForm textarea:focus{
    border-color:#0B3D91;
}

#admissionForm button{
    background:#25D366;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:10px;
    font-size:17px;
    cursor:pointer;
    transition:.3s;
}

#admissionForm button:hover{
    background:#1ebc57;
}