/*==============================
GOOGLE FONT
==============================*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#fff;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*==============================
SECTION TITLE
==============================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h5{
    color:#0B4F8A;
    font-size:16px;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:10px;
}

.section-title h2{
    font-size:40px;
    color:#05264D;
    margin-bottom:15px;
    font-weight:700;
}

.section-title p{
    max-width:750px;
    margin:auto;
    color:#666;
}

/*==============================
HEADER
==============================*/

/* Header */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    background:#fff;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

header .container{
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-img{
    height:75px;
}

nav ul{
    display:flex;
    gap:35px;
}

nav ul li{
    list-style:none;
}

nav ul li a{
    color:#222;
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover{
    color:#0B4F8A;
}

/* Hamburger */

.menu-toggle{
    display:none;
    font-size:28px;
    color:#0B4F8A;
    cursor:pointer;
}
/*==============================
HERO
==============================*/

.hero{
    margin-top:85px;
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    background:url("images/hero.png") center center/cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(4,31,61,.82);
}

.hero-content{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:70px;
    align-items:center;
}

.hero-left h5{
    color:#3EC6FF;
    font-size:18px;
    margin-bottom:15px;
    text-transform:uppercase;
}

.hero-left h1{
    color:#fff;
    font-size:58px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-left p{
    color:#ddd;
    font-size:18px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.btn-primary{
    background:#0B4F8A;
    color:#fff;
    padding:16px 36px;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.btn-primary:hover{
    background:#083B67;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
    padding:16px 36px;
    border-radius:50px;
    transition:.3s;
}

.btn-secondary:hover{
    background:#fff;
    color:#05264D;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.hero-features div{
    color:#fff;
    font-weight:500;
}

.hero-features i{
    color:#3EC6FF;
    margin-right:8px;
}

.hero-right{
    display:flex;
    justify-content:center;
}

.info-card{
    width:100%;
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.info-card h3{
    color:#05264D;
    font-size:30px;
    margin-bottom:25px;
}

.info-card p{
    margin-bottom:12px;
    color:#555;
}

.info-card hr{
    margin:25px 0;
}

.info-card h4{
    color:#0B4F8A;
    font-size:24px;
}

.info-card span{
    color:#666;
}

/*==============================
COMMON SECTION SPACING
==============================*/

section{
    padding:100px 0;
}
/*==================================================
SERVICES
==================================================*/

.services{
    background:#f8fbff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.service-box{
    background:#fff;
    padding:40px 30px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid #0B4F8A;
}

.service-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.service-icon{
    width:75px;
    height:75px;
    background:#0B4F8A;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:25px;
}

.service-box h3{
    color:#05264D;
    margin-bottom:15px;
    font-size:24px;
}

.service-box p{
    color:#666;
    margin-bottom:20px;
}

.service-box ul{
    list-style:none;
    padding:0;
}

.service-box ul li{
    margin-bottom:12px;
    color:#444;
}

.service-box ul li::before{
    content:"✔";
    color:#0B4F8A;
    margin-right:10px;
    font-weight:bold;
}

.service-tags{
    margin-top:20px;
}

.service-tags span{
    display:inline-block;
    margin:6px;
    padding:8px 16px;
    background:#eef6ff;
    color:#0B4F8A;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/*==================================================
ABOUT
==================================================*/

.about{
    background:#fff;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    margin-bottom:70px;
}

.about-image{
    min-height:550px;
    background:url("images/about.png") center center/cover;
    border-radius:20px;
    position:relative;
}

.experience-box{
    position:absolute;
    bottom:30px;
    right:-30px;
    background:#0B4F8A;
    color:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.experience-box h2{
    font-size:34px;
    margin-bottom:10px;
}

.about-content p{
    margin-bottom:20px;
    color:#555;
}

.about-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.about-points div{
    font-weight:600;
    color:#05264D;
}

.about-points i{
    color:#0B4F8A;
    margin-right:10px;
}

/*==================================================
MISSION
==================================================*/

.mission-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
    margin:70px 0;
}

.mission-box{
    background:#05264D;
    color:#fff;
    padding:45px;
    border-radius:18px;
    text-align:center;
}

.mission-box i{
    font-size:55px;
    margin-bottom:25px;
    color:#3EC6FF;
}

.mission-box h3{
    margin-bottom:20px;
    font-size:30px;
}

.mission-box p{
    color:#ddd;
}

/*==================================================
VALUES
==================================================*/

.values-title{
    margin-top:30px;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:40px;
}

.value-card{
    background:#fff;
    border-radius:18px;
    text-align:center;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

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

.value-card i{
    font-size:45px;
    color:#0B4F8A;
    margin-bottom:20px;
}

.value-card h4{
    color:#05264D;
}

/*==================================================
WHY US
==================================================*/

.why-us{
    margin-top:100px;
}

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

.why-box{
    background:#f8fbff;
    padding:35px;
    text-align:center;
    border-radius:18px;
    transition:.35s;
}

.why-box:hover{
    background:#0B4F8A;
    color:#fff;
}

.why-box:hover h4,
.why-box:hover p,
.why-box:hover i{
    color:#fff;
}

.why-box i{
    font-size:45px;
    color:#0B4F8A;
    margin-bottom:20px;
    transition:.3s;
}

.why-box h4{
    color:#05264D;
    margin-bottom:15px;
    transition:.3s;
}

.why-box p{
    color:#666;
    transition:.3s;
}

/*==================================================
COUNTERS
==================================================*/

.counter-section{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.counter-box{
    background:#0B4F8A;
    color:#fff;
    padding:45px 20px;
    text-align:center;
    border-radius:18px;
}

.counter-box h2{
    font-size:42px;
    margin-bottom:10px;
}

.counter-box p{
    font-size:18px;
    letter-spacing:.5px;
}
/*=========================================
CONTACT
=========================================*/

.contact{
    background:#f8fbff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:40px;
    align-items:start;
}

/* Contact Cards */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

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

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

.contact-card i{
    width:60px;
    height:60px;
    background:#0B4F8A;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    margin-bottom:20px;
}

.contact-card h3{
    color:#05264D;
    margin-bottom:10px;
}

.contact-card p,
.contact-card a{
    color:#666;
    line-height:1.8;
}

/* Contact Form */

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form .row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    margin-bottom:20px;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    font-family:'Poppins',sans-serif;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#0B4F8A;
}

.contact-form textarea{
    resize:vertical;
}

.contact-form button{
    background:#0B4F8A;
    color:#fff;
    border:none;
    padding:16px 40px;
    border-radius:40px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#083B67;
}

/*=========================================
GOOGLE MAP
=========================================*/

.map{
    margin-top:60px;
}

.map iframe{
    width:100%;
    height:420px;
    border:0;
    border-radius:20px;
}

/*=========================================
FOOTER
=========================================*/

/*=================================
FOOTER
=================================*/

footer{
    background:#05264D;
    color:#fff;
    padding:80px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
    align-items:flex-start;
}

.footer-grid > div{
    min-width:0;
}

.footer-grid h2{
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.3;
}

.footer-grid h3{
    font-size:22px;
    color:#3EC6FF;
    margin-bottom:20px;
}

.footer-grid p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:15px;
}

.footer-grid ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-grid ul li{
    margin-bottom:12px;
}

.footer-grid a{
    color:#ddd;
    transition:.3s;
}

.footer-grid a:hover{
    color:#3EC6FF;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    transition:.3s;
}

.footer-social a:hover{
    background:#0B4F8A;
}

.footer-social i{
    font-size:18px;
    color:#fff;
}

.copyright{
    margin-top:60px;
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
    padding:20px 0;
}

.copyright p{
    color:#bbb;
    margin:0;
}

/*=========================================
SMOOTH ANIMATION
=========================================*/

.service-box,
.value-card,
.why-box,
.contact-card,
.counter-box,
.mission-box{
    transition:all .35s ease;
}

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

@media(max-width:1100px){

.hero-content,
.about-wrapper{
    grid-template-columns:1fr;
}

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

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

.hero{
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

.hero-features{
    justify-content:center;
}

.info-card{
    margin-top:40px;
}

.about-image{
    min-height:420px;
}

}


@media(max-width:768px){

    header .container{
        height:75px;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:75px;
        left:-100%;
        width:100%;
        background:#05264D;
        transition:.4s;
    }

    nav.active{
        left:0;
    }

    nav ul{
        display:flex;
        flex-direction:column;
        padding:20px 0;
    }

    nav ul li{
        text-align:center;
        margin:15px 0;
    }

    nav ul li a{
        color:#fff;
        font-size:18px;
    }

    .logo-img{
        height:50px;
    }

    .header-btn{
        display:none;
    }

    .hero{
        margin-top:75px;
    }

    .hero-left h1{
        font-size:38px;
    }

    .section-title h2{
        font-size:30px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-features{
        grid-template-columns:1fr;
        text-align:left;
    }

    .about-points{
        grid-template-columns:1fr;
    }

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

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

    .experience-box{
        left:20px;
        right:20px;
    }
}

@media(max-width:480px){

    .hero-left h1{
        font-size:32px;
    }

    .section-title h2{
        font-size:26px;
    }

    .service-box,
    .contact-form,
    .mission-box,
    .contact-card{
        padding:25px;
    }

    .btn-primary,
    .btn-secondary{
        display:block;
        text-align:center;
    }
}
