.testimonial-section{
    padding:80px 0;
    background:#f8fafc;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.testimonial-card{
    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-image{
    width:70px;
    height:70px;
    border-radius:50%;
    overflow:hidden;
    margin-bottom:15px;
}

.testimonial-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.testimonial-card h4{
    color:#0f172a;
    margin-bottom:5px;
}

.testimonial-card span{
    color:#f59e0b;
    font-size:14px;
}

.testimonial-card p{
    margin-top:15px;
    color:#64748b;
    line-height:1.7;
}

.testimonial-stars{
    margin-top:15px;
    color:#f59e0b;
}