/* Health Testimonials - Frontend Swiper */
.swiper {
    width: 100%;
    padding-bottom: 40px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background: #f1f1f1;
    border-radius: 30px;
    padding: 30px;
    max-width: 320px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
}

.testimonial-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f2e35;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #0f2e35;
    margin-bottom: 25px;
    font-weight:500;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.client-name {
    font-weight: 600;
    font-size: 18px;
    color: #0f2e35;
}

.client-country {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ht-flag {
    width: 30px!important;
    height: 30px!important;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .testimonial-card {
        max-width: 100%;
    }
}