/*==========================================================
                    WHO WE ARE
==========================================================*/

.who-we-are{

    position: relative;

    padding: 120px 0;

    background: #F8FAFC;

    overflow: hidden;

}


/*==========================================================
                SECTION HEADER
==========================================================*/

.section-header{

    max-width: 800px;

    margin: 0 auto 70px;

    text-align: center;

}


.section-tag{

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background: rgba(29,78,216,.08);

    color: #1D4ED8;

    font-size: .9rem;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 18px;

}


.section-title{

    font-size: clamp(2.2rem,4vw,3.4rem);

    font-weight: 800;

    color: #0B132B;

    line-height: 1.2;

    margin-bottom: 20px;

}


.section-title span{

    background: linear-gradient(
    90deg,
    #1D4ED8,
    #00C2FF);

    /* Standard */
    background-clip: text;
    color: transparent;

    /* Chrome, Edge, Safari */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}


.section-description{

    color: #64748B;

    font-size: 1.05rem;

    line-height: 1.8;

}

/*==========================================================
                    WHO WRAPPER
==========================================================*/

.who-wrapper{

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;

}


.who-image{

    flex: 1;

    position: relative;

}


.who-content{

    flex: 1;

}

/*==========================================================
                    COMPANY IMAGE
==========================================================*/

.who-image img{

    width: 100%;

    border-radius: 28px;

    display: block;

    box-shadow:

    0 25px 60px rgba(0,0,0,.12);

    transition: .5s ease;

}


.who-image:hover img{

    transform: scale(1.03);

}


/*==========================================================
                EXPERIENCE BOX
==========================================================*/

.experience-box{

    position: absolute;

    right: 25px;

    bottom: 25px;

    width: 180px;

    padding: 24px;

    border-radius: 20px;

    background: rgba(255,255,255,.85);

    box-shadow:

    0 20px 40px rgba(0,0,0,.12);

    text-align: center;

    transition: .4s ease;

}


.experience-box:hover{

    transform: translateY(-8px);

}


.experience-box h3{

    font-size: 2.2rem;

    color: #1D4ED8;

    margin-bottom: 8px;

}


.experience-box span{

    color: #64748B;

    line-height: 1.5;

    font-size: .95rem;

}

/*==========================================================
                CONTENT
==========================================================*/

.who-content h3{

    font-size: 2rem;

    color: #0B132B;

    margin-bottom: 22px;

    line-height: 1.3;

}


.who-content p{

    color: #64748B;

    line-height: 1.9;

    margin-bottom: 35px;

}

/*==========================================================
                FEATURES
==========================================================*/

.feature-list{

    display: grid;

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

    gap: 20px;

    margin-bottom: 40px;

}


.feature-item{

    display: flex;

    align-items: center;

    gap: 12px;

    transition: .3s ease;

}


.feature-item:hover{

    transform: translateX(8px);

}


.feature-item i{

    color: #00C2FF;

    font-size: 1.1rem;

}


.feature-item span{

    color: #334155;

    font-weight: 500;

}

/*==========================================================
                RESPONSIVE
==========================================================*/

@media(max-width:991px){

    .who-wrapper{

        flex-direction: column;

    }

    .who-content{

        text-align: center;

    }

    .feature-list{

        grid-template-columns: 1fr;

    }

    .experience-box{

        right: 20px;

    }

}

@media(max-width:768px){

    .who-we-are{

        padding: 80px 0;

    }

    .section-title{

        font-size: 2rem;

    }

    .who-content h3{

        font-size: 1.7rem;

    }

}