.testimonials{
    padding:100px 0;
    background:#ffffff;
}

.testimonials .section-tag{
    display:block;
    text-align:center;
    color:#D4AF37;
    font-weight:600;
    letter-spacing:3px;
    margin-bottom:15px;
}

.testimonials h2{
    text-align:center;
    font-size:48px;
    margin-bottom:20px;
    color:#0A2540;
}

.testimonials .section-text{
    max-width:700px;
    margin:0 auto 60px;
    text-align:center;
    color:#666;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.stars{
    color:#D4AF37;
    font-size:22px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.testimonial-card h4{
    color:#0A2540;
    margin-bottom:5px;
}

.testimonial-card span{
    color:#999;
    font-size:14px;
}

@media(max-width:991px){
    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .testimonials h2{
        font-size:34px;
    }
}