
.testimonials {
    background: #1a1a1a; 
    padding: 80px 0;
}

.google-review-card {
    background: #252525; 
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%; 
    transition: all 0.3s ease-in-out;
    border: 1px solid #444;
    box-shadow: none;
}

.google-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-img {
    width: 60px;  
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid #CE1212; 
}

.review-meta h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #ffffff; 
}

.review-meta span {
    font-size: 14px;
    color: #CE1212; 
    font-weight: 500;
}

.review-body p {
    font-style: normal;
    color: #dddddd;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    flex-grow: 1; 
    margin-bottom: 20px;
}

.review-meta .stars,
.google-review-card .stars {
    color: #CE1212; 
    font-size: 14px;
}

.google-icon {
    display: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #555;
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #CE1212;
}