/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    background:#fff;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 5%;
}

.logo{
    font-size:1.5rem;
    font-weight:800;
    color:#0B3D91;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#0B3D91;
}

.menu-btn{
    display:none;
    font-size:30px;
    cursor:pointer;
}

/* HERO */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:100px 20px;

    background:
    linear-gradient(
   rgba(0,0,0,0.68),
    rgba(0,0,0,0.68)),

    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width:850px;
    color:#fff;
}

.hero h1{
    font-size:3.5rem;
    line-height:1.2;
    margin-bottom:20px;
}

.hero p{
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:14px 32px;
    background:#FFC107;
    color:#111;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.btn:hover{
    transform:translateY(-4px);
}

.btn-outline{
    background:transparent;
    border:2px solid #fff;
    color:#fff;
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.5rem;
    color:#0B3D91;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* ABOUT */

.about{
    padding:100px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.about-content h3{
    font-size:2rem;
    margin-bottom:20px;
    color:#0B3D91;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:15px;
}

/* SERVICES */

.services{
    padding:100px 0;
    background:#f8fafc;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(11,61,145,.15);
}

.service-card i{
    font-size:55px;
    color:#0B3D91;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:12px;
    color:#111;
}

.service-card p{
    color:#666;
    line-height:1.7;
}

/* WHY US */

.why-us{
    padding:100px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    text-align:center;
    padding:35px 25px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.why-card i{
    font-size:50px;
    color:#FFC107;
    margin-bottom:15px;
}

.why-card h3{
    margin-bottom:10px;
}

.why-card p{
    color:#666;
    line-height:1.7;
}

/* CONTACT */

.contact{
    padding:100px 0;
    background:#f8fafc;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1.3fr;
    gap:40px;
}

.contact-info{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-info h3{
    color:#0B3D91;
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:20px;
    line-height:1.8;
    color:#555;
}

.contact-info a{
    text-decoration:none;
    color:#0B3D91;
    font-weight:600;
}

.map iframe{
    width:100%;
    height:100%;
    min-height:350px;
    border:none;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* FOOTER */

footer{
    background:#0A192F;
    color:#fff;
    text-align:center;
    padding:50px 20px;
}

footer h3{
    margin-bottom:15px;
}

footer p{
    margin-bottom:10px;
    color:#d6d6d6;
}

footer a{
    color:#d6d6d6;
    text-decoration:none;
}

/* MOBILE */

@media(max-width:992px){

    .hero h1{
        font-size:2.7rem;
    }

    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .menu-btn{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:80px;
        left:-100%;
        width:100%;
        background:#fff;
        flex-direction:column;
        text-align:center;
        padding:25px 0;
        transition:.4s;
        box-shadow:0 10px 20px rgba(0,0,0,.1);
    }

    .nav-links.active{
        left:0;
    }

    .hero h1{
        font-size:2.2rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }
}

@media(max-width:576px){

    .hero h1{
        font-size:1.9rem;
    }

    .hero p{
        font-size:.95rem;
    }

    .logo{
        font-size:1.2rem;
    }

    .service-card,
    .why-card{
        padding:30px 20px;
    }
}