*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#f4f7fb;
    color:#333;

    min-height:100vh;
    display:flex;
    flex-direction:column;
}

/* =========================================
   MODERN NAVBAR
========================================= */

.navbar{
    width:100%;

    background:rgba(0,74,173,.96);

    backdrop-filter:blur(10px);

    position:sticky;
    top:0;
    z-index:999;

    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.nav-container{
    width:92%;
    max-width:1400px;

    margin:auto;
    padding:14px 0;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* BRAND */

.brand{
    display:flex;
    align-items:center;
    gap:14px;

    text-decoration:none;
}

.nav-logo{
    width:55px;
    height:55px;

    object-fit:cover;

    border-radius:50%;

    background:white;
    padding:4px;

    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.brand-text h2{
    color:white;
    font-size:24px;
    line-height:1.1;
    margin:0;
}

.brand-text span{
    color:#dbe8ff;
    font-size:14px;
    letter-spacing:1px;
}

/* NAV LINKS */

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;

    list-style:none;
}

.nav-links li a{
    color:white;
    text-decoration:none;

    font-size:16px;
    font-weight:500;

    position:relative;

    transition:.3s;
}

.nav-links li a::after{
    content:'';

    width:0;
    height:3px;

    background:#ffc107;

    position:absolute;
    left:0;
    bottom:-8px;

    border-radius:10px;

    transition:.3s;
}

.nav-links li a:hover::after{
    width:100%;
}

.nav-links li a:hover{
    color:#ffc107;
}

.nav-links li{
    position:relative;
}

/* Dropdown Arrow */
.dropdown > a{
    display:flex;
    align-items:center;
    gap:6px;
}

/* Dropdown Menu */

.dropdown-menu{
    position:absolute;

    top:42px;
    left:0;

    width:260px;

    background:white;

    border-radius:16px;

    padding:12px 0;

    list-style:none;

    box-shadow:
        0 10px 30px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    transition:.35s ease;

    z-index:999;
}

/* Show Dropdown */

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;

    transform:translateY(0);
}

/* Dropdown Items */

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;

    padding:14px 22px;

    color:#222 !important;

    font-size:15px;

    transition:.3s;
}

/* Remove underline effect inside dropdown */

.dropdown-menu li a::after{
    display:none;
}

/* Hover */

.dropdown-menu li a:hover{
    background:#f4f7fb;

    color:#004aad !important;

    padding-left:28px;
}

/* FEEDBACK BUTTON */

.feedback-btn{
    background:#ffc107;

    color:#000 !important;

    padding:12px 22px;
    border-radius:50px;

    font-weight:600;
}

.feedback-btn:hover{
    background:#ffcd39;
    transform:translateY(-2px);
}

.feedback-btn::after{
    display:none;
}

/* =========================================
   MOBILE NAVBAR
========================================= */

@media(max-width:768px){

    .nav-container{
        flex-direction:column;
        align-items:flex-start;

        gap:18px;

        padding:18px 0;
    }

    .brand{
        width:100%;
    }

    .nav-logo{
        width:50px;
        height:50px;
    }

    .brand-text h2{
        font-size:20px;
    }

    .brand-text span{
        font-size:12px;
    }

    .nav-links{
        width:100%;

        flex-wrap:wrap;

        gap:15px;
    }

    .nav-links li a{
        font-size:15px;
    }

    .feedback-btn{
        padding:10px 18px;
    }
}

/* HERO */

.hero{
    height:550px;

    background:
        linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
        url('../img/school-bg.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;
}

.overlay{
    width:100%;
    padding:20px;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:50px;
    flex-wrap:wrap;
}

.school-logo{
    width:220px;
    height:220px;
    object-fit:contain;

    background:white;
    padding:12px;
    border-radius:50%;

    box-shadow:0 10px 30px rgba(0,0,0,.4);
}

.hero-text{
    color:white;
}

.hero-text h1{
    font-size:60px;
    margin-bottom:15px;
    font-weight:700;
}

.hero-text p{
    font-size:22px;
    margin-bottom:25px;
    color:#f1f1f1;
}

.hero-btn{
    display:inline-block;
    padding:14px 30px;
    background:#ffc107;
    color:black;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.hero-btn:hover{
    transform:translateY(-3px);
}

/* CONTENT */

.container{
    width:90%;
    margin:auto;
    padding:50px 0;
}

.card{
    background:white;
    padding:45px;
    border-radius:20px;
    margin-bottom:35px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    line-height:1.9;
}

/* ABOUT PAGE CONTENT */

.card h2{
    color:#004aad;
    font-size:40px;
    margin-bottom:25px;

    position:relative;
}

.card h2::after{
    content:'';
    width:80px;
    height:5px;

    background:#ffc107;

    position:absolute;
    left:0;
    bottom:-10px;

    border-radius:10px;
}

.card p{
    font-size:18px;
    color:#444;

    text-align:justify;

    margin-bottom:22px;

    line-height:2;
}

/* BETTER SPACING */

.container{
    width:90%;
    max-width:1400px;

    margin:auto;
    padding:60px 0;
}

/* =======================================
   MOBILE RESPONSIVE
======================================= */

@media(max-width:768px){

    /* NAVBAR */

    nav{
        flex-direction:column;
        align-items:flex-start;

        padding:20px;
    }

    .logo{
        font-size:18px;
        line-height:1.4;

        margin-bottom:15px;
    }

    nav ul{
        width:100%;

        display:flex;
        flex-wrap:wrap;

        gap:12px;
    }

    nav ul li a{
        font-size:15px;
    }

    /* HERO */

    .hero{
        height:auto;
        padding:80px 20px;
    }

    .hero-content{
        flex-direction:column;
        text-align:center;

        gap:25px;
    }

    .school-logo{
        width:140px;
        height:140px;
    }

    .hero-text{
        text-align:center;
    }

    .hero-text h1{
        font-size:42px;
        line-height:1.2;

        margin-bottom:15px;
    }

    .hero-text p{
        font-size:18px;
        line-height:1.6;
    }

    .hero-btn{
        padding:12px 28px;
        font-size:16px;
    }

    /* CONTAINER */

    .container{
        width:92%;
        padding:40px 0;
    }

    /* CARDS */

    .card{
        padding:25px;
        border-radius:18px;
    }

    .card h2{
        font-size:34px;
        line-height:1.2;
    }

    .card p{
        font-size:16px;
        line-height:1.9;

        text-align:left;
    }

    /* PAGE BANNER */

    .page-banner{
        height:220px;
        padding:20px;
    }

    .banner-content h1{
        font-size:38px;
        line-height:1.2;
    }

    .banner-content p{
        font-size:16px;
    }

    /* GALLERY */

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:240px;
    }

    /* CONTACT */

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    /* FEEDBACK */

    .feedback-wrapper{
        grid-template-columns:1fr;
    }

    /* FORMS */

    .form-group input,
    .form-group textarea,
    select{
        font-size:16px;
        padding:14px;
    }

    /* FOOTER */

    footer{
        font-size:14px;
        padding:18px;
    }
}

/* FOOTER */

footer{
    background:#002147;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:30px;
}

/* =======================================
   MOBILE RESPONSIVE
======================================= */

@media(max-width:768px){

    /* NAVBAR */

    nav{
        flex-direction:column;
        align-items:flex-start;

        padding:20px;
    }

    .logo{
        font-size:18px;
        line-height:1.4;

        margin-bottom:15px;
    }

    nav ul{
        width:100%;

        display:flex;
        flex-wrap:wrap;

        gap:12px;
    }

    nav ul li a{
        font-size:15px;
    }

    /* HERO */

    .hero{
        height:auto;
        padding:80px 20px;
    }

    .hero-content{
        flex-direction:column;
        text-align:center;

        gap:25px;
    }

    .school-logo{
        width:140px;
        height:140px;
    }

    .hero-text{
        text-align:center;
    }

    .hero-text h1{
        font-size:42px;
        line-height:1.2;

        margin-bottom:15px;
    }

    .hero-text p{
        font-size:18px;
        line-height:1.6;
    }

    .hero-btn{
        padding:12px 28px;
        font-size:16px;
    }

    /* CONTAINER */

    .container{
        width:92%;
        padding:40px 0;
    }

    /* CARDS */

    .card{
        padding:25px;
        border-radius:18px;
    }

    .card h2{
        font-size:34px;
        line-height:1.2;
    }

    .card p{
        font-size:16px;
        line-height:1.9;

        text-align:left;
    }

    /* PAGE BANNER */

    .page-banner{
        height:220px;
        padding:20px;
    }

    .banner-content h1{
        font-size:38px;
        line-height:1.2;
    }

    .banner-content p{
        font-size:16px;
    }

    /* GALLERY */

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:240px;
    }

    /* CONTACT */

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    /* FEEDBACK */

    .feedback-wrapper{
        grid-template-columns:1fr;
    }

    /* FORMS */

    .form-group input,
    .form-group textarea,
    select{
        font-size:16px;
        padding:14px;
    }

    /* FOOTER */

    footer{
        font-size:14px;
        padding:18px;
    }
}

/* PAGE BANNER */

.page-banner{
    height:300px;

    background:
        linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
        url('../img/school-bg.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.banner-content h1{
    color:white;
    font-size:55px;
    margin-bottom:10px;
}

.banner-content p{
    color:#f1f1f1;
    font-size:20px;
}

/* GALLERY */

.gallery-grid{
    display:grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px,1fr));

    gap:30px;
}

.gallery-item{
    position:relative;

    overflow:hidden;
    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,.1);

    background:white;
}

.gallery-item img{
    width:100%;
    height:280px;

    object-fit:cover;

    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-content{
    padding:20px;
}

.gallery-content h3{
    font-size:22px;
    color:#004aad;
}

/* CONTACT PAGE */

.contact-wrapper{
    display:grid;

    grid-template-columns:
        repeat(auto-fit, minmax(400px,1fr));

    gap:30px;
}

.contact-info h2,
.contact-form h2{
    margin-bottom:30px;
}

.info-item{
    margin-bottom:25px;
}

.info-item h3{
    color:#004aad;
    margin-bottom:10px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}

.form-group input,
.form-group textarea{
    width:100%;

    padding:15px;

    border:1px solid #ddd;
    border-radius:10px;

    font-size:16px;

    outline:none;

    transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#004aad;
    box-shadow:0 0 10px rgba(0,74,173,.15);
}

textarea{
    resize:none;
}

/* FEEDBACK */

.feedback-wrapper{
    display:grid;

    grid-template-columns:
        repeat(auto-fit, minmax(400px,1fr));

    gap:30px;

    margin-bottom:40px;
}

select{
    width:100%;

    padding:15px;

    border:1px solid #ddd;
    border-radius:10px;

    font-size:16px;

    outline:none;
}

.success-message{
    background:#d4edda;
    color:#155724;

    padding:15px;
    border-radius:10px;

    margin-bottom:20px;
}

/* =====================================
   DOWNLOADABLE FORMS
===================================== */

.forms-grid{
    display:grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px,1fr));

    gap:30px;
}

.form-card{
    background:#f9fbff;

    padding:35px;
    border-radius:20px;

    text-align:center;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;
}

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

.form-icon{
    font-size:55px;
    margin-bottom:20px;
}

.form-card h3{
    color:#004aad;
    margin-bottom:15px;
}

.download-btn{
    display:inline-block;

    margin-top:20px;

    background:#004aad;
    color:white;

    padding:12px 25px;

    border-radius:50px;

    text-decoration:none;
    font-weight:600;

    transition:.3s;
}

.download-btn:hover{
    background:#002147;
}

/* =====================================
   GUIDELINES
===================================== */

.guidelines{
    display:flex;
    flex-direction:column;

    gap:30px;
}

.step{
    display:flex;
    gap:25px;

    align-items:flex-start;

    background:#f9fbff;

    padding:30px;

    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.step-number{
    width:60px;
    height:60px;

    min-width:60px;

    background:#004aad;
    color:white;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
    font-weight:700;
}

.step-content h3{
    color:#004aad;
    margin-bottom:12px;
}

.step-content ul{
    margin-top:10px;
    padding-left:20px;
}

.step-content ul li{
    margin-bottom:8px;
}

/* MOBILE */

@media(max-width:768px){

    .step{
        flex-direction:column;
        align-items:flex-start;
    }

}

