.testimonials-section {
    padding: 0px 0 35px 0px;
    /* background-color: #f8f9fa; */
    border-radius: 10px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin: 10px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.client-image img {
    border: 5px solid #f8f9fa;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.client-name {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.client-designation {
    font-size: 0.9rem;
}

.testimonials-carousel__prev,
.testimonials-carousel__next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-carousel__prev {
    left: 20px;
}

.testimonials-carousel__next {
    right: 20px;
}

.testimonials-carousel__prev:hover,
.testimonials-carousel__next:hover {
    background: #f8f9fa;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: #38518f;
}