 
.testimonial-card{
    display:flex;
    align-items:flex-start;
    gap:30px;
    background:#fff;
    padding: 20px;
    border: 2px solid #666;
    border-radius:10px;
    /*box-shadow:0 12px 35px rgba(0,0,0,.08);*/
    transition:.4s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.client-image{
    flex-shrink:0;
}

.client-image img{
    width:110px;
    height:110px;
    border-radius:50%;
    object-fit:cover;
}

.rating{
    margin-bottom:18px;
}

.rating i{
    color:#FFC107;
    font-size:18px;
    margin-right:4px;
}

.testimonial-content p{
    color: black;
    line-height:1.9;
    font-size:16px;
    margin-bottom:25px;
}

.testimonial-content h5{
    font-size: 20px;
    font-weight:700;
    color:black;
    margin-bottom:5px;
}

.testimonial-content span{
    color:#17bdf5;
    font-size:16px;
    font-weight:500;
}

@media(max-width:991px){

.testimonial-section{
    padding:70px 0;
}

.section-title{
    font-size:38px;
}

.testimonial-card{
    flex-direction:column;
    text-align:center;
    align-items:center;
}

}

@media(max-width:576px){

.section-title{
    font-size:30px;
}

.testimonial-card{
    padding: 15px;
}

.client-image img{
    width:90px;
    height:90px;
}

.testimonial-content h5{
    font-size: 18px;
}

.testimonial-content p{
    font-size:15px;
}

}