/*=====================================
Testimonials Grid
=====================================*/

.st-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin:40px 0;
}

.st-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.st-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,.18);
}

.st-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.st-content{
    padding:25px;
    text-align:center;
}

.st-content h3{
    font-size:24px;
    margin:10px 0;
    color:#222;
}

.st-review{
    margin:20px 0;
    color:#555;
    line-height:1.7;
}

.st-name{
    font-size:18px;
    font-weight:700;
    margin-top:20px;
}

.st-stars{
    margin:12px 0;
    font-size:22px;
}

.st-stars span{
    color:#ccc;
}

.st-stars .filled{
    color:#FFC107;
}


/*=====================================
Single Testimonial
=====================================*/

.st-single-wrapper{
    max-width:900px;
    margin:60px auto;
    padding:20px;
}

.st-single-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,.10);
}

.st-single-image img{
    width:100%;
    height:auto;
    display:block;
}

.st-single-content{
    padding:40px;
}

.st-headline{
    text-align:center;
    font-size:34px;
    margin-bottom:15px;
}

.st-review-content{
    margin-top:30px;
    line-height:1.9;
    color:#555;
    font-size:17px;
}

.st-reviewer{
    margin-top:30px;
    font-weight:700;
    text-align:right;
    font-size:18px;
}


/*=====================================
Swiper
=====================================*/

/* ===========================
   TESTIMONIALS
=========================== */

.st-swiper{
    padding:20px 10px 70px;
}

.st-card{

    background:#fff;

    border-radius:16px;

    padding:35px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    border-top:5px solid #0A6DB7;

}

.st-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.14);

}

.st-content{

    text-align:center;

}

.st-content h3{

    font-size:30px;

    line-height:1.3;

    margin-bottom:18px;

    color:#14213d;

    font-weight:700;

}

.st-review{

    font-size:17px;

    color:#555;

    line-height:1.9;

    margin:25px 0;

}

.st-stars{

    font-size:24px;

    margin-bottom:20px;

}

.st-stars .filled{

    color:#FDBA12;

}

.st-name{

    font-size:22px;

    font-weight:700;

    color:#14213d;

    margin-top:25px;

}

.st-city{

    font-size:15px;

    color:#777;

    margin-top:6px;

    letter-spacing:.5px;

}

.st-city:before{

    content:"📍 ";

}

.swiper-button-next,
.swiper-button-prev{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#0A6DB7;

    color:#fff;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

    transition:.3s;

}

.swiper-button-next:hover,
.swiper-button-prev:hover{

    background:#084d82;

    transform:scale(1.08);

}

.swiper-button-next:after,
.swiper-button-prev:after{

    font-size:18px;

    font-weight:bold;

}


.swiper-pagination{

    bottom:10px !important;

}

.swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#cbd5e1;

    opacity:1;

}

.swiper-pagination-bullet-active{

    width:34px;

    border-radius:20px;

    background:#0A6DB7;

}

.st-quote{

    font-size:60px;

    color:#0A6DB7;

    line-height:1;

    opacity:.15;

    margin-bottom:10px;

}
.testimonial-section{

    background:#f7fbff;

    padding:80px 0;

}

/*=====================================
Responsive
=====================================*/

@media(max-width:1024px){

.st-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.st-grid{
grid-template-columns:1fr;
}

.st-content{
padding:20px;
}

.st-single-content{
padding:25px;
}

.st-headline{
font-size:28px;
}

.st-image img{
height:220px;
}

}