.testimonial-section{
    width:90%;
    max-width:1400px;
    margin:80px auto;
    font-family:Arial,sans-serif;
}

.review-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
    flex-wrap:wrap;
}

.review-header .left{
    display:flex;
    align-items:center;
    gap:15px;
}

.google-logo{
    width:55px;
}

.review-header h2{
    margin:0;
    font-size:28px;
    color:#222;
}

.rating{
    margin-top:5px;
    display:flex;
    align-items:center;
    gap:10px;
}

.rating span{
    color:#fbbc05;
    font-size:18px;
}

.rating strong{
    font-size:20px;
}

.rating small{
    color:#777;
}

.review-btn{
    background:#4285F4;
    color:#fff;
    text-decoration:none;
    padding:12px 25px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.review-btn:hover{
    background:#3367d6;
}

.swiper{
    padding:20px 5px 50px;
}

.review-card{
    background:#f3f3f3;
    border-radius:18px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    min-height:260px;
}

.review-card:hover{
    transform:translateY(-8px);
}

.review-card .top{
    display:flex;
    align-items:center;
    margin-bottom:18px;
}

.review-card .top img:first-child{
    width:55px;
    height:55px;
    border-radius:50%;
    margin-right:12px;
}

.review-card h4{
    margin:0;
    font-size:17px;
    color:#222;
}

.review-card .top span{
    font-size:13px;
    color:#888;
}

.gicon{
    margin-left:auto;
    width:22px;
}

.stars{
    color:#fbbc05;
    font-size:18px;
    margin-bottom:15px;
}

.review-card p{
    color:#555;
    line-height:1.7;
    font-size:15px;
}

.swiper-button-next,
.swiper-button-prev{
    color:#4285F4;
    width:45px;
    height:45px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
}

.swiper-button-next:after,
.swiper-button-prev:after{
    font-size:18px;
    font-weight:bold;
}

@media(max-width:991px){

.review-header{
flex-direction:column;
align-items:flex-start;
gap:20px;
}

.review-header h2{
font-size:24px;
}

}

@media(max-width:768px){

.review-card{
min-height:auto;
}

.review-btn{
width:100%;
text-align:center;
}

}