/* ===============================
   TESTIMONIALS SECTION
================================ */
.rts-testimonials-area {
    background: #f9fafb;
    padding: 60px 0;
}

/* Section title */
.section-title-area.center-style {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.section-title-area .sub-title {
    color:var(--color-primary , #22706A);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title-area .section-title {
    font-size: 2.4rem;
    margin: 12px 0;
    font-weight: 700;
}

.section-title-area .desc {
    color: var(--color-primary ,#6b7280);
    font-size: 1rem;
}

/* ===============================
   TESTIMONIAL CARD
================================ */
.testimonials-wrapper {
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    gap: 24px;
    padding: 28px;
    box-shadow: 0 12px 30px var(--color-primary-light ,  rgba(0, 0, 0, 0.08));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-wrapper:hover {
    /*transform: translateY(-6px);*/
    box-shadow: 0 18px 45px var(--color-primary , rgba(0, 0, 0, 0.12));
    background: var(--color-primary-light ,#95adad);
}

/* Image */
.image-area img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
}

/* ===============================
   CONTENT AREA
================================ */
.content-area {
    flex: 1;
    position: relative;
}

.content-area .quote {
    position: absolute;
    top: -10px;
    right: 0;
    opacity: 0.1;
}

.content-area .text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-primary ,#374151);
    margin-bottom: 20px;
}

.author h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.author p {
    margin: 2px 0 0;
    font-size: 0.9rem;
    color: var(--color-primary ,#6b7280);
}

/* ===============================
   SWIPER STYLING
================================ */
.testimonials-slider {
    padding-bottom: 50px;
}

.swiper-slide {
    height: auto;
}

/* Navigation buttons */
.swiper-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.swiper-btn {
    width: 46px;
    height: 46px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

.swiper-btn i {
    color: var(--color-primary , #22706A);
    font-size: 1rem;
}

.swiper-btn:hover {
    background: var(--color-primary-hover , #22706A);
}

.swiper-btn:hover i {
    color: var(--color-primary-hover ,#ffffff);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .testimonials-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .image-area img {
        margin: 0 auto;
    }

    .content-area .quote {
        display: none;
    }
}
/* Limit height */
.testimonials-slider {
    max-height: 500px; /* controls how many appear */
    overflow-y: auto;
    padding-right: 10px;
}

/* Vertical spacing */
.testimonials-slider .swiper-slide {
    margin-bottom: 24px;
}

/* Scrollbar styling */
.testimonials-slider::-webkit-scrollbar {
    width: 6px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: var(--color-primary ,#22706A);
    border-radius: 10px;
}
/* Enable smooth trackpad scrolling */
.testimonials-slider {
    scroll-behavior: smooth;
    cursor: grab;
}

.testimonials-slider:active {
    cursor: grabbing;
}

/* Swiper scrollbar look */
.swiper-scrollbar {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.swiper-scrollbar-drag {
    background: var(--color-primary ,#22706A);
    border-radius: 10px;
}
.testimonials-slider {
    max-height: 500px;
    cursor: grab;
    user-select: none;
}

.testimonials-slider:active {
    cursor: grabbing;
}

/* Swiper scrollbar */
.swiper-scrollbar {
    width: 6px;
    right: 4px;
    background: rgba(0,0,0,0.08);
    border-radius: 10px;
}

.swiper-scrollbar-drag {
    background: var(--color-primary ,#22706A);
    border-radius: 10px;
}



