/* ===================================
   MODERN TESTIMONIAL SECTION (S7)
   =================================== */

.modern-testimonial-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f5 100%);
    padding: 80px 0 !important;
}

.modern-testimonial-section .common-heading {
    margin-bottom: 0;
}

.modern-testimonial-section .common-heading h2 {
    color: #1f2937;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.modern-testimonial-section .common-heading h2 span {
    color: #008060;
}

.modern-testimonial-section .common-heading p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    padding: 0;
    margin-top: 0;
}

/* Testimonial Slider Wrapper */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 60px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

/* Testimonial Slide */
.testimonial-slide {
    display: none;
    text-align: center;
    padding: 50px 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quote Icon */
.quote-icon {
    margin-bottom: 20px;
}

.quote-icon svg {
    color: rgba(0, 128, 96, 0.2);
}

/* Stars */
.stars {
    margin-bottom: 25px;
}

.stars i {
    color: #fbbf24;
    font-size: 20px;
    margin: 0 3px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 20px;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
    margin: 0 0 30px 0;
    font-weight: 400;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #008060;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 5px 0;
}

.author-info p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Testimonial Navigation */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-nav:hover {
    background: linear-gradient(135deg, #008060 0%, #00a078 100%);
    border-color: #008060;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 128, 96, 0.3);
}

.testimonial-nav svg {
    width: 24px;
    height: 24px;
    color: #374151;
    transition: color 0.3s ease-in-out;
}

.testimonial-nav:hover svg {
    color: #ffffff;
}

.prev-testimonial {
    left: 0;
}

.next-testimonial {
    right: 0;
}

/* Stats Section */
.stats-section {
    margin-top: 60px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #008060;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-testimonial-section {
        padding: 60px 0 !important;
    }

    .modern-testimonial-section .common-heading {
        margin-bottom: 50px;
    }

    .testimonial-slider-wrapper {
        padding: 0 0px;
        margin-bottom: 60px;
    }

    .testimonial-slide {
        padding: 40px 30px;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .stat-number {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .modern-testimonial-section {
        padding: 50px 0 !important;
    }

    .modern-testimonial-section .common-heading {
        margin-bottom: 40px;
    }

    .modern-testimonial-section .common-heading h2 {
        font-size: 28px;
    }

    .testimonial-slider-wrapper {
        padding: 0 0px;
        margin-bottom: 50px;
    }

    .testimonial-slide {
        padding: 30px 25px;
    }

    .quote-icon svg {
        width: 50px;
        height: 50px;
    }

    .stars i {
        font-size: 16px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 15px;
    }

    .author-info {
        text-align: center;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .author-info h5 {
        font-size: 16px;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
    }

    .testimonial-nav svg {
        width: 20px;
        height: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }
}