/* style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    width:100%;
    display:block;
    object-fit:cover;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:100px 0;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header h2{
    font-size:46px;
    color:#222;
}

.section-tag{
    color:#17338d;
    font-weight:600;
    display:inline-block;
    margin-bottom:12px;
}

.section-tag.light{
    color:#fff;
}

.btn{
    background:#102b86;
    color:#fff;
    padding:12px 22px;
    border-radius:6px;
    transition:0.3s;
    display:inline-block;
}

.btn:hover{
    background:#0b1e5f;
}

/* =========================
HEADER
========================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.nav-wrapper{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo i{
    color:#1a3fb4;
    font-size:28px;
}

.logo h2{
    font-size:24px;
    color:#1a3fb4;
    line-height:1;
}

.logo span{
    font-size:12px;
    color:#777;
}

.navbar{
    display:flex;
    gap:30px;
}

.navbar a{
    color:#222;
    font-weight:500;
    transition:0.3s;
}

.navbar a:hover{
    color:#1a3fb4;
}

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* =========================
HERO
========================= */

.hero{
    min-height:100vh;
    background:
    linear-gradient(
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.35)
    ),
    url('./images/hero.jpg');
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
    padding-top:100px;
}
.hero-overlay{
    opacity: .5;
}
.hero-content{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:60px;
    align-items:center;
}

.hero-left h1{
    font-size:68px;
    line-height:1.1;
    color:#1d2f73;
    margin-bottom:25px;
    font-weight:700;
}

.hero-left p{
    max-width:600px;
    color:#000;
    font-size:16px;
}

.info-card{
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    margin-bottom:30px;
}

.info-card h3{
    font-size:38px;
    margin-bottom:15px;
    color:#1d2f73;
}

.info-card p{
    color:#444;
    margin-bottom:8px;
}

.info-card a{
    color:#000;
    font-weight:600;
}

.feature-boxes{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.feature-card{
    background:#102b86;
    color:#fff;
    padding:35px;
}

.feature-card.dark{
    background:#17338d;
}

.feature-card h4{
    font-size:28px;
    margin-bottom:15px;
}

/* =========================
ABOUT
========================= */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-images{
    display:flex;
    gap:20px;
}

.small-images{
    display:flex;
    flex-direction:column;
    gap:20px;
    width:40%;
}

.large-image{
    width:60%;
}

.about-images img{
    border-radius:12px;
    height:100%;
}

.about-content h2{
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
}

.about-content p{
    margin-bottom:20px;
    color:#666;
}

/* =========================
WHY US
========================= */

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.why-left{
    background:#102b86;
    padding:60px;
    border-radius:0 0 60px 0;
    color:#fff;
}

.why-left h2{
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
}

.why-right{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.why-item{
    display:flex;
    align-items:center;
    gap:18px;
    font-size:22px;
    font-weight:500;
}

.why-item i{
    width:52px;
    height:52px;
    background:#222;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}

/* =========================
SERVICES
========================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    text-align:center;
    padding:40px 25px;
    border:1px solid #eee;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.service-card i{
    width:80px;
    height:80px;
    background:#102b86;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
    font-size:28px;
}

.service-card h3{
    margin-bottom:15px;
    font-size:26px;
}

.service-card p{
    color:#666;
}

/* =========================
CONTACT
========================= */

.contact{
    background:#18368e;
}

.contact-wrapper{
    background:#fff;
    display:grid;
    grid-template-columns:1fr 1fr;
    overflow:hidden;
    border-radius:12px;
}

.contact-left{
    padding:80px 60px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-left h2{
    font-size:54px;
    color:#102b86;
}

.contact-right{
    background:#000;
    color:#fff;
    padding:60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:40px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:20px;
}

.contact-item i{
    width:60px;
    height:60px;
    background:#fff;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* =========================
FOOTER
========================= */

.footer{
    text-align:center;
    padding:50px 20px;
    background:#f5f5f5;
}

.socials{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:25px;
}

.socials a{
    width:45px;
    height:45px;
    background:#102b86;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .hero-content,
    .about-grid,
    .why-grid,
    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-left h1{
        font-size:52px;
    }

    .about-content h2,
    .why-left h2{
        font-size:40px;
    }

    .navbar{
        position:absolute;
        top:90px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        padding:30px;
        display:none;
        box-shadow:0 10px 30px rgba(0,0,0,0.08);
    }

    .navbar.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }

    .enquiry-btn{
        display:none;
    }

}

@media(max-width:768px){

    .hero-left h1{
        font-size:42px;
    }

    .feature-boxes{
        grid-template-columns:1fr;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .about-images{
        flex-direction:column;
    }

    .small-images,
    .large-image{
        width:100%;
    }

    .contact-left h2{
        font-size:40px;
    }

    .section{
        padding:70px 0;
    }

}

@media(max-width:500px){

    .hero-left h1{
        font-size:34px;
    }

    .info-card h3{
        font-size:30px;
    }

    .why-item{
        font-size:18px;
    }

}