.reviews{
    padding:100px 20px;
    background:#f8fbff;
}

.container{
    max-width:1100px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h2{
    font-size:42px;
    font-family:'Poppins',sans-serif;
    font-weight:800;
}

.section-header h2 span{
    color:#1f5eff;
}

.section-header p{
    margin-top:10px;
    color:#666;
    font-size:18px;
}

.reviews-slider{
    position:relative;
    max-width:800px;
    margin:auto;
    overflow:hidden;
    min-height:180px;
}

.review-card{
    position:absolute;
    width:100%;
    left:0;
    top:0;

    opacity:0;
    transform:translateY(20px);

    transition:all .6s ease;
    text-align:center;
    padding:30px;

    background:#fff;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.review-card p{
    font-size:18px;
    color:#444;
    line-height:1.7;
}

.review-card h4{
    margin-top:15px;
    color:#1f5eff;
    font-weight:600;
}

.review-card.active{
    opacity:1;
    transform:translateY(0);
}

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.fade-up.active{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:768px){

    .section-header h2{
        font-size:30px;
    }

    .review-card p{
        font-size:16px;
    }

}