/*==================================================
 ABOUT SECTION
==================================================*/

.about-section{
    padding:120px 0;
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

.about-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:#00d4ff;
    opacity:.05;
    border-radius:50%;
    top:-180px;
    right:-180px;
}

.about-images{
    position:relative;
    padding:30px;
}

.about-main{
    width:100%;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
    transition:.5s;
}

.about-main:hover{
    transform:scale(1.02);
}

.about-small{
    position:absolute;
    width:260px;
    bottom:0;
    right:0;
    border-radius:20px;
    border:8px solid #fff;
    box-shadow:0 20px 50px rgba(0,0,0,.20);
}

.experience-box{
    position:absolute;
    top:40px;
    left:0;
    width:170px;
    background:#0056b3;
    color:#fff;
    text-align:center;
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,86,179,.35);
}

.experience-box h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:5px;
}

.experience-box p{
    margin:0;
    font-size:15px;
}

.section-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:30px;
    background:#0056b3;
    color:#fff;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
    letter-spacing:1px;
}

.section-title{
    font-size:46px;
    font-weight:800;
    line-height:1.2;
    color:#0f172a;
    margin-bottom:25px;
}

.section-text{
    color:#64748b;
    font-size:17px;
    line-height:32px;
    margin-bottom:18px;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    border-radius:15px;
    padding:16px 20px;
    margin-bottom:18px;
    font-weight:600;
    color:#0f172a;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.35s;
}

.feature-box:hover{
    background:#0056b3;
    color:#fff;
    transform:translateY(-5px);
}

.feature-box i{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#00d4ff;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    flex-shrink:0;
}

.about-section .btn-main{
    padding:16px 36px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.about-section .btn-main:hover{
    transform:translateY(-3px);
}

/*==================================================
 RESPONSIVE
==================================================*/

@media(max-width:991px){

.about-section{
    padding:80px 0;
}

.about-images{
    margin-bottom:60px;
}

.about-small{
    width:180px;
}

.section-title{
    font-size:36px;
}

}

@media(max-width:767px){

.about-images{
    padding:10px;
}

.about-small{
    position:relative;
    width:100%;
    right:auto;
    bottom:auto;
    margin-top:20px;
    border:0;
}

.experience-box{
    position:relative;
    top:auto;
    left:auto;
    margin-bottom:25px;
}

.section-title{
    font-size:30px;
}

.section-text{
    font-size:16px;
    line-height:28px;
}

.feature-box{
    font-size:15px;
}

}