/* ---------- testimonial ---------- */
  #trusted{ 
    padding:100px 8%;
    background:#0B1F3A;
}

.trusted-label{
    text-align:center;
    color:#f5f7fa;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:50px;
    font-weight:600;
}

.testimonial-row{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#fff;
    border:5px solid #C8A24D;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s ease;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.testimonial-text{
    color:#555;
    line-height:1.8;
    font-size:16px;
    font-style:italic;
    margin-bottom:30px;
}

.client-info h4{
    color:#0B1F3A;
    margin-bottom:5px;
    font-size:18px;
}

.client-info span{
    color:#C8A24D;
    font-size:14px;
    font-weight:600;
}

@media (max-width:768px){

    #testimonials{
        padding:70px 20px;
    }

    .testimonial-row{
        grid-template-columns:1fr;
    }

}