/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f4f7fb;
    overflow-x:hidden;
}

/* ================= HEADER ================= */

.header{
    background:linear-gradient(135deg,#0056b3,#0077ff);
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 60px;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 4px 20px rgba(0,0,0,.15);
}

/* LOGO */
.logo h2{
    font-size:28px;
    font-weight:700;
    color:#fff;
}

/* NAVBAR */
.navbar ul{
    display:flex;
    list-style:none;
    align-items:center;
    gap:10px;
}

.navbar ul li a{
    text-decoration:none;
    color:white;
    font-weight:600;
    font-size:15px;
    padding:12px 18px;
    border-radius:30px;
    transition:all .3s ease;
}

/* Attractive Hover */
.navbar ul li a:hover{
    background:white;
    color:#0056b3;
    transform:translateY(-2px);
    box-shadow:0 5px 15px rgba(255,255,255,.25);
}

/* Active Home Button */
.navbar ul li:first-child a{
    background:white;
    color:#0056b3;
}

/* Mobile menu */
.menu-toggle{
    display:none;
    font-size:30px;
    color:white;
    cursor:pointer;
}

/* ================= HERO SLIDER ================= */

/* ================= HERO SLIDER ================= */

/* ================= HERO SLIDER ================= */

.hero-slider{
    position:relative;
    width:100%;
    height:90vh;
    overflow:hidden;
}

.slider{
    position:relative;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
    z-index:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
}

/* Dark Overlay */

.hero-slider::after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.35);
    z-index:2;
}

/* ================= VIEW BUTTON ================= */

.view-btn{
    position:fixed;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    background:linear-gradient(135deg,#28a745,#45d96f);
    color:white;
    padding:18px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
    transition:.3s;
    z-index:999;
}

.view-btn:hover{
    transform:translateY(-50%) scale(1.08);
}

/* ================= SERVICES ================= */

.services{
    padding:80px 8%;
    text-align:center;
}

.services h2{
    font-size:40px;
    color:#003366;
    margin-bottom:40px;
}

.service-grid,
.branch-grid{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

/* Card Design */
.card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    flex:1;
    min-width:250px;
    transition:.3s ease;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

/* ================= PAGE SECTION ================= */

.page-section{
    padding:80px 10%;
}

.page-section h1{
    font-size:42px;
    color:#003366;
    margin-bottom:20px;
}

/* ================= CONTACT FORM ================= */

.contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
    width:100%;
    max-width:600px;
}

.contact-form input,
.contact-form textarea{
    padding:16px;
    border:1px solid #ddd;
    border-radius:12px;
    outline:none;
    font-size:16px;
}

.contact-form textarea{
    min-height:150px;
}

/* Button */
button{
    background:linear-gradient(135deg,#0056b3,#0077ff);
    color:white;
    border:none;
    padding:16px;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    transform:translateY(-2px);
}

/* ================= FOOTER ================= */

footer{
    background:#001d3d;
    color:white;
    text-align:center;
    padding:25px;
    margin-top:60px;
}

/* ================= MOBILE RESPONSIVE ================= */

@media(max-width:991px){

    .header{
        padding:15px 20px;
    }

    .logo h2{
        font-size:18px;
        width:220px;
        line-height:1.4;
    }

    .menu-toggle{
        display:block;
    }

    .navbar{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:white;
        display:none;
        border-radius:0 0 20px 20px;
        box-shadow:0 10px 25px rgba(0,0,0,.15);
    }

    .navbar.active{
        display:block;
    }

    .navbar ul{
        flex-direction:column;
        padding:20px;
        gap:10px;
    }

    .navbar ul li{
        width:100%;
    }

    .navbar ul li a{
        display:block;
        text-align:center;
        background:#f4f7fb;
        color:#222;
        border-radius:12px;
        padding:14px;
    }

    .navbar ul li:first-child a{
        background:#0056b3;
        color:white;
    }

    .hero-slider{
        height:60vh;
    }

    .slide img{
        height:60vh;
    }

   .hero-text{

    position:absolute;

    top:55%;
    left:8%;

    transform:translateY(-50%);

    width:650px;
    max-width:90%;

    padding:45px;

    background:rgba(20,20,20,.55);

    backdrop-filter:blur(8px);

    border-radius:20px;

    color:#fff;

    z-index:10;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}

.hero-text h1{

    font-size:58px;

    line-height:1.15;

    margin-bottom:20px;

}

.hero-text p{

    font-size:24px;

    line-height:1.7;

    margin-bottom:30px;

}

    .view-btn{
        padding:14px 18px;
        font-size:14px;
    }
}
.hero-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 32px;
    background:linear-gradient(135deg,#ff9800,#ffb300);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:all .3s ease;
    box-shadow:0 8px 20px rgba(255,152,0,.3);
}

.hero-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(255,152,0,.4);
}

/* ABOUT SECTION TEXT */

.section-text{
    max-width:1000px;
    margin:0 auto;
    line-height:1.9;
    color:#555;
    font-size:18px;
}

/* SERVICE ICONS */

.card h3{
    color:#0056b3;
    margin-bottom:15px;
    font-size:22px;
}

.card p{
    color:#666;
    line-height:1.7;
}

/* STATISTICS CARDS */

.card h1{
    font-size:50px;
    color:#0056b3;
    margin-bottom:10px;
}

/* SECTION DIVIDER */

.services{
    position:relative;
}

.services::after{
    content:'';
    display:block;
    width:80px;
    height:4px;
    background:#0077ff;
    margin:30px auto 0;
    border-radius:20px;
}

/* GOVERNMENT STYLE NOTICE BAR */

.notice-bar{
    background:#003366;
    color:#fff;
    padding:12px;
    text-align:center;
    font-weight:500;
}

.notice-bar span{
    color:#ffd54f;
}

/* FOOTER IMPROVEMENT */

footer{
    background:#001d3d;
    color:white;
    text-align:center;
    padding:30px 20px;
    margin-top:60px;
}

footer p{
    line-height:1.8;
    font-size:15px;
}

/* MOBILE IMPROVEMENTS */

@media(max-width:768px){

    .services h2{
        font-size:30px;
    }

    .section-text{
        font-size:16px;
    }

    .card{
        min-width:100%;
    }

    .card h1{
        font-size:36px;
    }
}
/* ABOUT PAGE */

.page-banner{
    background:linear-gradient(rgba(0,51,102,.75),
               rgba(0,51,102,.75)),
               url('../images/slider1.jpg');
    background-size:cover;
    background-position:center;
    height:300px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.banner-content h1{
    font-size:48px;
    margin-bottom:10px;
}

.banner-content p{
    font-size:18px;
}

.about-container{
    display:flex;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.about-content{
    flex:1;
}

.about-content h2{
    color:#0056b3;
    margin-bottom:20px;
    font-size:36px;
}

.about-content p{
    line-height:1.9;
    color:#555;
    margin-bottom:15px;
}

@media(max-width:768px){

    .banner-content h1{
        font-size:32px;
    }

    .about-container{
        flex-direction:column;
    }
}
.policy-list{
    margin:20px 0 20px 30px;
    line-height:1.9;
    color:#555;
}

.policy-list li{
    margin-bottom:8px;
}

.page-section h2{
    color:#0056b3;
    margin-bottom:20px;
}

.page-section h3{
    color:#003366;
    margin-top:30px;
    margin-bottom:15px;
}

.page-section p{
    line-height:1.9;
    color:#555;
    margin-bottom:15px;
}
.policy-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

.policy-table th{
    background:#0056b3;
    color:#fff;
    padding:15px;
    text-align:left;
}

.policy-table td{
    padding:15px;
    border:1px solid #ddd;
}

.policy-table tr:nth-child(even){
    background:#f8f9fa;
}

@media(max-width:768px){

    .policy-table{
        display:block;
        overflow-x:auto;
        white-space:nowrap;
    }

}
.contact-wrapper{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.contact-info{
    flex:1;
    min-width:320px;
}

.contact-form-box{
    flex:1;
    min-width:320px;
}

.contact-form-box h2,
.contact-info h2{
    margin-bottom:20px;
    color:#0056b3;
}

.contact-form{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
}

.contact-form textarea{
    min-height:150px;
}

@media(max-width:768px){

    .contact-wrapper{
        flex-direction:column;
    }

}
