*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f5f5f5;
    color:#222;
}

/* HEADER */

header{
    position: fixed;
    top: 0;
    width: 100%;
    background: #ff6600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 30px;
    z-index: 999;
    box-sizing: border-box;
}

.logo{
    height: 55px;
    width: auto;
    display: block;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:10px;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

.menu-toggle{
    display:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

/* SLIDER ARROWS */

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:35px;
    color:white;
    font-weight:bold;
    z-index:5;
    cursor:pointer;
    user-select:none;
    padding:10px;
    transition:0.3s;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

.prev:hover,
.next:hover{
    color:#ff6600;
}

/* HERO SLIDER */

.hero{
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider{
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active{
    opacity: 1;
}

.slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay */

.hero::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    top: 0;
    left: 0;
}

.hero-content{
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1{
    font-size: 60px;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 22px;
    margin-bottom: 25px;
}

.btn{
    background: #ff6600;
    color: white;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

/* POPUP FORM */

.popup-form{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);

    justify-content:center;
    align-items:center;
}

.popup-content{
    background:white;
    width:90%;
    max-width:500px;
    padding:40px;
    border-radius:15px;
    position:relative;
    animation:popup 0.3s ease;
}

@keyframes popup{

    from{
        transform:scale(0.8);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }
}

.close-btn{
    position:absolute;
    right:20px;
    top:15px;
    font-size:30px;
    cursor:pointer;
    color:#333;
}

.popup-content h2{
    text-align:center;
    margin-bottom:25px;
    color:#ff6600;
}

.popup-content form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.popup-content input,
.popup-content select,
.popup-content textarea{
    width:100%;
    padding:14px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

.popup-content textarea{
    height:100px;
    resize:none;
}

.popup-content button{
    background:#ff6600;
    color:white;
    border:none;
    padding:15px;
    border-radius:8px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
}

.popup-content button:hover{
    background:#e65c00;
}

/* ADMISSION BUTTON */

.admission-btn{
    margin-top:20px;
    background:#ff6600;
    color:white;
    border:none;
    padding:12px 28px;
    border-radius:8px;
    font-size:15px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.admission-btn:hover{
    background:#e65c00;
    transform:translateY(-2px);
}

/* SECTIONS */

.section{
    padding:80px 10%;
    background:white;
}

.alt-section{
    background:#fff3eb;
}

.section h2{
    text-align:center;
    margin-bottom:50px;
    color:#ff6600;
    font-size:40px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    padding:20px;
    text-align:center;
}

.card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    display: block;
}

.card h3{
    margin-bottom:10px;
}

.about-text{
    max-width:900px;
    margin:auto;
    text-align:center;
    font-size:20px;
    line-height:1.8;
}

/* FOUNDER SECTION */

.founder-section{
    padding:60px 8%;
    background:#f8f5ef;
}

.founder-container{
    display:flex;
    align-items:flex-start;
    gap:50px;
}

/* LEFT CARD */

.founder-image{
    width:220px;
    min-width:220px;
    background:#fff;
    padding:15px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

/* IMAGE */

.founder-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    object-position:center top;
    border-radius:12px;
    display:block;
}

/* NAME */

.founder-image h3{
    margin-top:14px;
    font-size:18px;
    color:#111;
}

/* DESIGNATION */

.founder-image h4{
    margin-top:5px;
    font-size:15px;
    color:#666;
    font-weight:600;
}

/* RIGHT CONTENT */

.founder-content{
    flex:1;
    padding-top:10px;
}

.founder-content h2{
    font-size:34px;
    color:#ff6600;
    margin-bottom:25px;
}

.founder-content p{
    font-size:16px;
    line-height:1.6;
    color:#333;
    margin-bottom:20px;
}

/* MOBILE */

@media(max-width:768px){
    
    .mission-grid{
        grid-template-columns:1fr;
    }

    .founder-container{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .founder-content{
        padding-top:0;
    }

}

/* MISSION & VISION */

/* MISSION GRID */

.mission-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:30px;
}

.mission-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-top:0px;
    background:white;
    padding:18px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.mission-icon{
    width:40px;
    height:40px;
    min-width:40px;
    background:#ff6600;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
}

.mission-text h3{
    color:#ff6600;
    margin-bottom:8px;
    font-size:20px;
}

.mission-text p{
    font-size:15px;
    line-height:1.7;
    color:#333;
    margin:0;
}

/* CONTACT SECTION */

.contact-section{
    background:#fff7f0;
    padding:100px 8%;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.contact-map{
    height:450px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-area h2{
    font-size:34px;
    color:#ff6600;
    margin-bottom:30px;
}

.contact-form-area form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form-area input,
.contact-form-area textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    background:white;
}

.contact-form-area textarea{
    height:150px;
    resize:none;
}

.contact-form-area button{
    background:#ff6600;
    color:white;
    border:none;
    padding:18px;
    border-radius:10px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.contact-form-area button:hover{
    background:#e65c00;
}


/* MOBILE */

@media(max-width:768px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-map{
        height:300px;
    }

    .contact-form-area h3{
        font-size:36px;
    }

}

/* FOOTER */

footer{
    font-size:15px;
    line-height:1.7;
    background:#ff6600;
    color:white;
    padding:60px 10% 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

footer h3{
    font-size:22px;
    margin-bottom:18px;
    margin-bottom:20px;
}

footer p{
    font-size:15px;
}

footer a{
    font-size:15px;
}

footer ul{
    font-size:15px;
    list-style:none;
}

footer li{
    margin-bottom:10px;
}

.copyright{
    font-size:14px;
    text-align:center;
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,0.3);
    padding-top:20px;
}

/* FLOATING BUTTONS */

.floating-buttons{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:999;
}

.floating-buttons a{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:28px;
    text-decoration:none;
}

.whatsapp{
    background:#25D366;
}

.call{
    background:#ff6600;
}

/* MOBILE */

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:80px;
        right:0;
        background:#ff6600;
        flex-direction:column;
        width:220px;
        display:none;
    }

    nav.show{
        display:flex;
    }

    nav a{
        padding:15px;
        font-size:16px;
        border-top:1px solid rgba(255,255,255,0.2);
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:18px;
    }

    .logo-area h2{
        font-size:22px;
    }
}