/*=========================================
TESTIMONIALS
=========================================*/

.testimonials-section{

    padding:120px 0;

    background:#ffffff;

}

.testimonial-card{

    max-width:850px;

    margin:auto;

    background:#fff;

    border-radius:30px;

    padding:60px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    position:relative;

}

.quote-icon{

    font-size:60px;

    color:#2563eb;

    opacity:.15;

    margin-bottom:25px;

}

.stars{

    color:#fbbf24;

    font-size:20px;

    margin-bottom:25px;

}

.testimonial-card p{

    font-size:22px;

    line-height:1.9;

    color:#4b5563;

}

.client{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin-top:35px;

}

.client img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

}

.client h5{

    margin:0;

    font-weight:700;

}

.client span{

    color:#6b7280;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    background-color:#2563eb;

    border-radius:50%;

    padding:22px;

}

@media(max-width:768px){

    .testimonial-card{

        padding:35px 25px;

    }

    .testimonial-card p{

        font-size:18px;

    }

    .client{

        flex-direction:column;

    }

}