.testimonials-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    text-align: center;
    width: 100%;
    max-width: 100%;
}
.swiper-wrapper {
    padding-bottom: 10px;
    padding-top: 10px;
}
.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #222;
}

.testimonials-section p {
    font-size: 1rem;
    margin-bottom: 50px;
    color: #555;
}

/* Swiper Slides */
.testimonial-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-card span {
    font-size: 0.9rem;
    color: #777;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #0073AA;
}

.swiper-pagination-bullet {
    background: #0073AA;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonials-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section h2 {
        font-size: 1.75rem;
    }

    .testimonial-card {
        padding: 20px 15px;
    }
}
