/* ================= ABOUT SECTION ================= */

.about-section{
    background:#fffbe9;
    padding:80px 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    overflow:hidden;
}

.about-left{
    flex:1.1;
    animation:slideLeft 1s ease;
}

.about-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:30px;
    background:#f7f1e2;
    color:#d7a84f;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:25px;
}

.about-left h2{
    font-size:58px;
    line-height:1.15;
    color:#123327;
    margin-bottom:30px;
}

.about-left h2 span{
    color:#d7a84f;
}

.about-intro{
    font-size:22px;
    line-height:1.8;
    color:#444;
    margin-bottom:20px;
}

.about-left p{
    font-size:18px;
    line-height:1.9;
    color:#666;
}

.about-stats{
    display:flex;
    gap:25px;
    margin-top:40px;
    margin-bottom:40px;
}

.stat-box{
    min-width:170px;
    padding:28px;
    background:#fff;
    border-radius:20px;
    border:1px solid #eee;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    text-align:center;
    transition:.4s;
}

.stat-box:hover{
    transform:translateY(-10px);
}

.stat-box h3{
    font-size:42px;
    color:#d7a84f;
    margin-bottom:8px;
}

.stat-box span{
    color:#555;
    font-weight:700;
}

.about-btn{
    display:inline-block;
    padding:16px 34px;
    background:#123327;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:800;
    transition:.4s;
}

.about-btn:hover{
    background:#d7a84f;
    color:#123327;
    transform:translateY(-5px);
}

.about-right{
    flex:0.9;
    position:relative;
    animation:slideRight 1s ease;
}

.image-frame{
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.image-frame img{
    width:100%;
    display:block;
    transition:.6s;
}

.image-frame:hover img{
    transform:scale(1.08);
}

.experience-badge{
    position:absolute;
    bottom:-30px;
    left:-30px;
    background:#123327;
    color:#fff;
    width:170px;
    height:170px;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.experience-badge h3{
    font-size:46px;
    color:#d7a84f;
}

.experience-badge span{
    font-size:15px;
    font-weight:700;
}

/*==============RESPONSIVENESS==============*/

@media(max-width:991px){

    .about-section{
        flex-direction:column;
        gap:50px;
    }

    .about-left h2{
        font-size:42px;
    }

    .about-stats{
        flex-wrap:wrap;
    }

    .experience-badge{
        width:130px;
        height:130px;
        left:10px;
        bottom:-20px;
    }
}

