
:root{
    --primary:#0b2c66;
    --secondary:#f4b400;
    --white:#ffffff;
    --light:#f8f9fa;
    --dark:#222222;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Segoe UI', sans-serif;
    line-height:1.7;
    overflow-x:hidden;
    background:#fff;
}

/* NAVBAR */

.navbar{
    background:var(--primary);
    padding:15px 0;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.navbar-brand{
    font-weight:700;
    color:white !important;
    display:flex;
    align-items:center;
    gap:10px;
}

.navbar-brand img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
}

.nav-link{
    color:white !important;
    font-weight:500;
    margin-left:15px;
    transition:.3s;
}

.nav-link:hover{
    color:var(--secondary) !important;
}

/* HERO SECTION */

.hero{
    background:
    linear-gradient(
        rgba(11,44,102,.85),
        rgba(11,44,102,.85)
    ),
    url("hero.jpeg");
    background-size:cover;
    background-position:center;
    min-height:85vh;
    display:flex;
    align-items:center;
    color:white;
}

.hero h1{
    font-size:3.5rem;
    font-weight:800;
}

.hero p{
    font-size:1.2rem;
    margin:20px 0;
}

.btn-gold{
    background:var(--secondary);
    color:var(--dark);
    font-weight:600;
    padding:12px 28px;
    border:none;
    margin:20px;
}

.btn-gold:hover{
    background:#d99f00;
}



.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    color:var(--primary);
    font-weight:700;
}

.section-title p{
    color:#666;
}



.feature-card{
    border:none;
    padding:30px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card i{
    font-size:40px;
    color:var(--secondary);
    margin-bottom:15px;
}

.feature-card h5{
    color:var(--primary);
    font-weight:700;
}



.stats{
    background:var(--primary);
    color:white;
    padding:80px 0;
}

.stat-box{
    text-align:center;
}

.stat-box h2{
    color:var(--secondary);
    font-weight:800;
}



.gallery img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:10px;
    transition:.3s;
}

.gallery img:hover{
    transform:scale(1.03);
}



.page-banner{
    background:var(--primary);
    color:white;
    padding:90px 0;
    text-align:center;
}

.about-card{
    background:white;
    padding:35px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.values li{
    margin-bottom:10px;
}


.feature-card{
    border:none;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
    border-top:4px solid var(--secondary);
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 25px rgba(0,0,0,.12);
}

.feature-card i{
    font-size:45px;
    color:var(--secondary);
    margin-bottom:20px;
}


.contact-box{
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    height:100%;
}

.contact-box h4{
    color:var(--primary);
    margin-bottom:20px;
}

.form-control{
    padding:12px;
}

.btn-submit{
    background:var(--primary);
    color:white;
    border:none;
    padding:12px 30px;
}

.btn-submit:hover{
    background:#081f49;
}


footer{
    background:var(--primary);
    color:white;
    padding:50px 0 20px;
}

footer h5{
    color:var(--secondary);
    margin-bottom:20px;
}

footer a{
    color:white;
    text-decoration:none;
}

footer a:hover{
    color:var(--secondary);
}

.copyright{
    border-top:1px solid rgba(255,255,255,.2);
    margin-top:30px;
    padding-top:20px;
    text-align:center;
}



@media(max-width:768px){

    .hero{
        min-height:70vh;
        text-align:center;
    }

    .hero h1{
        font-size:2.2rem;
    }

    .hero p{
        font-size:1rem;
    }

    .gallery img{
        height:220px;
    }
}