/* ==========================================
   ABOUT PAGE
========================================== */

.about-header{
    background:linear-gradient(
        135deg,
        #0b2c6a,
        #1d56c2
    );

    color:white;
    padding:120px 0;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.about-header::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.section-tag{
    display:inline-block;
    background:#f4a000;
    color:white;
    padding:8px 20px;
    border-radius:30px;
    margin-bottom:15px;
    font-weight:600;
}

.about-company h2{
    color:#0b2c6a;
    margin-bottom:20px;
}

.about-card{
    background:white;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:100%;
    transition:.3s;
}

.about-card:hover{
    transform:translateY(-8px);
}

.about-card i{
    font-size:50px;
    color:#f4a000;
    margin-bottom:15px;
}

.mission-section{
    background:#f8f9fa;
}

.feature-box{
    background:white;
    text-align:center;
    padding:30px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    height:100%;
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box i{
    font-size:50px;
    color:#0b2c6a;
    margin-bottom:15px;
}