.why-choose-us{
    padding:70px 7%;
    background:#f7f8f9;
    overflow:hidden;
}

.why-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    margin-bottom:40px;
}

.why-title span{
    color:#D4AF37;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
}

.why-title h2{
    font-size:48px;
    line-height:1.1;
    color:#062f27;
    margin-top:12px;
    max-width:600px;
}

.why-text{
    max-width:450px;
}

.why-text p{
    font-size:17px;
    line-height:1.8;
    color:#666;
}

.why-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    background:#fff;
    border-radius:30px;
    padding:30px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.why-left{
    display:flex;
    flex-direction:column;
}

.image-box{
    height:380px;
    overflow:hidden;
    border-radius:25px;
}

.image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.8s;
}

.image-box:hover img{
    transform:scale(1.08) rotate(2deg);
}

.why-features{
    display:flex;
    gap:20px;
    margin-top:22px;
}

.feature-box{
    flex:1;
    display:flex;
    align-items:center;
    gap:12px;
}

.feature-box i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#D4AF37;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    transition:.4s;
    flex-shrink:0;
}

.feature-box h4{
    font-size:18px;
    line-height:1.3;
    color:#062f27;
}

.feature-box:hover i{
    transform:rotateY(360deg);
}

.why-right{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.stats-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:28px;
}

.stat-card{
    text-align:center;
    padding:25px 20px;
    border:2px solid #D4AF37;
    border-radius:25px;
    min-height:220px;
    transition:.4s;
    transform-style:preserve-3d;
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.stat-card i{
    font-size:38px;
    color:#D4AF37;
    margin-bottom:10px;
}

.stat-card h3{
    font-size:54px;
    color:#062f27;
    line-height:1;
    margin-bottom:5px;
}

.stat-card span{
    font-size:28px;
    font-weight:700;
    color:#000;
}

.stat-card p{
    margin-top:10px;
    font-size:16px;
    line-height:1.4;
}

.skill{
    margin-bottom:22px;
}

.skill:last-child{
    margin-bottom:0;
}

.skill-head{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    font-weight:600;
    font-size:16px;
    color:#000;
}

.bar{
    height:10px;
    background:#eee;
    border-radius:30px;
    overflow:hidden;
}

.progress{
    width:0;
    height:100%;
    background:#D4AF37;
    border-radius:30px;
    transition:2s ease;
}

/* ANIMATIONS */

.reveal-left{
    opacity:0;
    transform:translateX(-80px);
    transition:1s;
}

.reveal-right{
    opacity:0;
    transform:translateX(80px);
    transition:1s;
}

.reveal-up{
    opacity:0;
    transform:translateY(80px);
    transition:1s;
}

.reveal-active{
    opacity:1 !important;
    visibility:visible !important;
    transform:translate(0,0) !important;
}

.stat-card,
.feature-box,
.image-box{
    opacity:1;
    visibility:visible;
}

/* TABLET */

@media(max-width:991px){

    .why-top{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
        margin-bottom:30px;
    }

    .why-title h2{
        font-size:40px;
    }

    .why-content{
        grid-template-columns:1fr;
        gap:30px;
        padding:25px;
    }

    .image-box{
        height:320px;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }
}

/* MOBILE */

@media(max-width:576px){

    .why-choose-us{
        padding:60px 20px;
    }

    .why-title h2{
        font-size:34px;
    }

    .why-text p{
        font-size:16px;
    }

    .why-content{
        padding:20px;
        border-radius:20px;
    }

    .image-box{
        height:240px;
        border-radius:18px;
    }

    .stats-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .stat-card{
        min-height:auto;
        padding:22px;
    }

    .stat-card h3{
        font-size:42px;
    }

    .why-features{
        flex-direction:column;
        gap:15px;
    }

    .feature-box{
        align-items:center;
    }

    .feature-box h4{
        font-size:16px;
    }
}