.testimonials-section{
    background:#f8fbff;
}

.testimonial-slider{
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    gap:30px;
    animation:slideReviews 25s linear infinite;
}

.testimonial-card{
    min-width:350px;
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.testimonial-card:hover{
    transform:translateY(-10px);
    transition:.3s;
}

.stars{
    font-size:24px;
    color:#FFC107;
    margin-bottom:20px;
}

.client{
    display:flex;
    align-items:center;
    margin-top:25px;
}

.client img{
    width:60px;
    height:60px;
    border-radius:50%;
    margin-right:15px;
}

@keyframes slideReviews{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}