/* ==========================================
ABOUT PAGE
========================================== */

.about-hero{
    padding:140px 0;
    background:linear-gradient(
        135deg,
        #0F3D5E,
        #102331
    );
    color:#fff;
    text-align:center;
}

.about-hero h1{
    font-size:64px;
    font-weight:800;
    margin-bottom:25px;
}

.about-hero p{
    max-width:900px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
}

.about-section{
    padding:100px 0;
}

.about-image{
    background:#dfe6eb;
    border-radius:20px;
    min-height:500px;
    overflow:hidden;
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.about-content h2{
    font-size:42px;
    font-weight:800;
    color:#0F3D5E;
    margin-bottom:25px;
}

.about-content p{
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

.values-section{
    background:#f8fafc;
    padding:100px 0;
}

.value-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-10px);
}

.value-card i{
    font-size:50px;
    color:#D4B15A;
    margin-bottom:20px;
}

.services-section{
    padding:100px 0;
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    height:100%;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-image{
    height:220px;
    background:#dfe6eb;
}

.service-content{
    padding:25px;
}

.service-content h4{
    margin-bottom:15px;
    color:#0F3D5E;
}

.btn-service{
    background:#0F3D5E;
    color:#fff;
    border-radius:10px;
    padding:10px 20px;
    text-decoration:none;
}

.stats-about{
    background:#102331;
    color:#fff;
    padding:90px 0;
}

.stat-box{
    text-align:center;
}

.stat-number{
    font-size:52px;
    font-weight:800;
    color:#D4B15A;
}

.team-section{
    padding:100px 0;
    background:#f8fafc;
}

.team-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.team-image{
    height:280px;
    background:#dfe6eb;
}

.team-content{
    padding:25px;
    text-align:center;
}

.cta-about{
    padding:120px 0;
    text-align:center;
    background:#102331;
    color:#fff;
}

.cta-about h2{
    font-size:48px;
    margin-bottom:20px;
}

@media(max-width:768px){

    .about-hero h1{
        font-size:42px;
    }

    .about-content h2{
        font-size:32px;
    }

}