.about-section{
    padding:150px 6%;
    background:var(--bg-light);
}

.about-header{
    max-width:850px;
    text-align:center;
    margin:0 auto 80px;
    margin-top: 50px;
}

.section-subtitle{
    display:inline-block;
    color:var(--accent);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.about-header h2{
    font-size:3.5rem;
    line-height:1.2;
    color:var(--text-dark);
    margin-bottom:20px;
}

.about-header p{
    color:var(--text-gray);
    line-height:1.9;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/* Images */

.about-images{
    position:relative;
}

.image-large img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:28px;
}

.image-small{
    position:absolute;
    right:-40px;
    bottom:50px;
}

.image-small img{
    width:260px;
    height:260px;
    object-fit:cover;
    border-radius:24px;
    border:8px solid #fff;
}

.experience-box{
    position:absolute;
    top:40px;
    left:-30px;
    background:var(--bg-dark);
    color:#fff;
    padding:25px 35px;
    border-radius:20px;
}

.experience-box h3{
    color:var(--primary);
    font-size:2rem;
}

/* Content */

.content-tag{
    color:var(--accent);
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.about-content h3{
    font-size:3rem;
    color:var(--text-dark);
    margin:20px 0;
    line-height:1.2;
}

.about-content p{
    color:var(--text-gray);
    line-height:1.9;
    margin-bottom:25px;
}

.about-features{
    display:grid;
    gap:25px;
    margin-top:40px;
}

.feature-item{
    display:flex;
    gap:20px;
}

.feature-item span{
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--primary);
    color:var(--bg-dark);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.feature-item h4{
    margin-bottom:5px;
    color:var(--text-dark);
}

.feature-item p{
    margin:0;
}

/* Stats */

.about-stats{
    margin-top:100px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:20px;
    border:1px solid var(--border-color);
    transition:.4s;
}

.stat-card:hover{
    transform:translateY(-10px);
}

.stat-card h3{
    font-size:2.5rem;
    color:var(--primary);
    margin-bottom:10px;
}

.stat-card p{
    color:var(--text-gray);
}

/* Responsive */

@media(max-width:991px){

    .about-wrapper{
        grid-template-columns:1fr;
    }

    .about-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .image-small,
    .experience-box{
        display:none;
    }

    .about-header h2,
    .about-content h3{
        font-size:2.3rem;
    }
}

@media(max-width:576px){

    .about-stats{
        grid-template-columns:1fr;
    }

    .image-large img{
        height:400px;
    }
}