.testimonial-section{
    max-width:1200px;
    margin:30px auto;
    padding:0 0px;
}

.slider-container{
    overflow:hidden;
    position:relative;
}

.slider-track{
    display:flex;
    transition:transform 0.6s ease-in-out;
}

.testimonial-card{
    flex:0 0 calc(33.333% - 20px);
    margin:0 10px;
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.stars{
    color:#f4b400;
    font-size:18px;
    margin-bottom:15px;
}

.testimonial-text{
    color:#555;
    line-height:1.6;
    margin-bottom:20px;
}

.client{
    display:flex;
    align-items:center;
    gap:12px;
}

.client img{
    width:60px;
    height:60px;
    border-radius:50%;
}

.client-name{
    font-weight:bold;
}

.client-role{
    color:#777;
    font-size:14px;
}

/* Tablet */
@media(max-width:992px){
    .testimonial-card{
        flex:0 0 calc(50% - 20px);
    }
}

/* Mobile */
@media(max-width:768px){
    .testimonial-card{
        flex:0 0 calc(100% - 20px);
    }

    .section-title{
        font-size:26px;
    }
}