.testimonials{
    padding:80px 20px;
    background:#f7fbff;
    font-family: 'Segoe UI', sans-serif;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h2{
    font-size:36px;
    color:#0a3d62;
}

.section-header p{
    color:#555;
    margin-top:10px;
}

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

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:all .3s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.testimonial-top{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

.testimonial-top img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-top h4{
    margin:0;
    color:#0a3d62;
}

.testimonial-top span{
    font-size:14px;
    color:#777;
}

.stars{
    color:#f5a623;
    font-size:14px;
}

.testimonial-card p{
    color:#444;
    line-height:1.6;
    font-size:15px;
}
