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

body{
    font-family:'Poppins', sans-serif;
    overflow-x:hidden;
    background:#fff;
}

/* HERO SECTION */

.about-hero{
    position:relative;

    height:50vh;

    background-image:url('../assets/images/ca_1.png');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
}

.about-overlay{
    position:absolute;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.65);
}

.about-hero-content{
    position:relative;
    z-index:2;

    text-align:center;
    color:#fff;
}

.about-hero-content h1{
    font-size:70px;
    font-weight:600;

    margin-bottom:15px;
}

.about-hero-content p{
    font-size:20px;
    color:#ddd;
}

/* ABOUT COMPANY */

.about-company{
    padding:100px 120px;
}

.about-container{
    display:flex;
    align-items:center;
    gap:80px;
}

/* IMAGE FIX */

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    height:550px;

    object-fit:cover;

    border-radius:20px;

    display:block;
}

/* TEXT */

.about-text{
    flex:1;
}

.small-heading{
    color:#f4a100;

    font-size:15px;
    font-weight:600;

    letter-spacing:2px;
}

.about-text h2{
    font-size:52px;

    line-height:65px;

    color:#0b1f3a;

    margin:20px 0 30px;
}

.about-text p{
    font-size:18px;

    line-height:34px;

    color:#555;

    margin-bottom:25px;
}

/* POINTS */

.about-points{
    margin-top:35px;
}

.point{
    display:flex;
    align-items:center;

    gap:15px;

    margin-bottom:22px;
}

.point i{
    color:#f4a100;
    font-size:18px;
}

.point span{
    font-size:17px;
    color:#333;
}

/* DETAILS SECTION */

.firm-details-section{
    padding:100px 120px;

    background:#f8f9fc;
}

.details-heading{
    text-align:center;

    margin-bottom:60px;
}

.details-heading h2{
    font-size:50px;

    color:#0b1f3a;

    margin-top:20px;
}

.details-grid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.detail-card{
    background:#fff;

    padding:40px 30px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.detail-card h3{
    font-size:20px;

    color:#0b1f3a;

    margin-bottom:18px;
}

.detail-card p{
    color:#666;

    font-size:18px;
}

/* WHY SECTION */

.why-section{
    padding:100px 120px;

    display:flex;
    align-items:center;

    gap:80px;
}

.why-left{
    flex:1;
}

.why-left img{
    width:100%;
    height:550px;

    object-fit:cover;

    border-radius:20px;

    display:block;
}

.why-right{
    flex:1;
}

.why-right h2{
    font-size:50px;

    line-height:65px;

    color:#0b1f3a;

    margin:20px 0 30px;
}

.why-right p{
    font-size:18px;

    line-height:34px;

    color:#555;

    margin-bottom:35px;
}

.why-points{
    display:flex;
    flex-direction:column;

    gap:20px;
}

.why-box{
    background:#f8f9fc;

    padding:22px 25px;

    border-radius:12px;

    font-size:17px;

    color:#222;

    font-weight:500;
}

/* TEAM SECTION */

.team-section{
    padding:100px 120px;

    background:#fff;
}

.team-heading{
    text-align:center;

    margin-bottom:60px;
}

.team-heading h2{
    font-size:50px;

    color:#0b1f3a;

    margin-top:20px;
}

.team-grid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.team-card{
    background:#f8f9fc;

    padding:55px 30px;

    border-radius:15px;

    text-align:center;
}

.team-card h3{
    font-size:58px;

    color:#f4a100;

    margin-bottom:15px;
}

.team-card p{
    color:#444;

    font-size:18px;
}

/* FINAL IMAGE SECTION */

.final-image-section{
    padding:100px 120px;
}

.final-content{
    position:relative;

    overflow:hidden;

    border-radius:25px;
}

.final-content img{
    width:100%;
    height:500px;

    object-fit:cover;

    display:block;
}

.final-overlay{
    display:none;
}

.final-text{
    position:absolute;

    top:50%;
    left:80px;

    transform:translateY(-50%);

    color:#fff;

    max-width:650px;
}

.final-text h2{
    font-size:55px;

    line-height:70px;

    margin-bottom:25px;
}

.final-text p{
    font-size:20px;

    line-height:36px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .about-container,
    .why-section{
        flex-direction:column;
    }

    .details-grid,
    .team-grid{
        grid-template-columns:1fr 1fr;
    }

    .about-company,
    .firm-details-section,
    .why-section,
    .team-section,
    .final-image-section{
        padding:80px 40px;
    }

    .about-text h2,
    .why-right h2,
    .details-heading h2,
    .team-heading h2{
        font-size:40px;
        line-height:55px;
    }

}

@media(max-width:768px){

    .details-grid,
    .team-grid{
        grid-template-columns:1fr;
    }

    .about-hero-content h1{
        font-size:48px;
    }

    .final-text{
        left:30px;
        right:30px;
    }

    .final-text h2{
        font-size:38px;
        line-height:50px;
    }

}
/* FOOTER */

.footer{
    background:#02163a;

    padding:90px 120px 30px;

    color:#fff;
}

.footer-grid{
    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;
}

.footer h2{
    font-size:34px;

    margin-bottom:35px;

    font-weight:700;
}

.footer p,
.footer a{
    color:#d1d5db;

    font-size:18px;

    line-height:2;
}

.footer-links ul{
    list-style:none;
}

.footer-links a{
    text-decoration:none;

    transition:0.3s;
}

.footer-links a:hover{
    color:#f4a100;
}

.footer-contact i{
    color:#f4a100;

    margin-right:12px;
}

.footer-bottom{
    margin-top:70px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,0.1);

    text-align:center;
}

.footer-bottom p{
    color:#9ca3af;
}

/* RESPONSIVE */

@media(max-width:992px){

    .footer{
        padding:80px 40px 30px;
    }

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

        gap:40px;
    }

}