/* ===================================
   Testimonial Section Styles
   =================================== */

.montor-testimonial-section {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    padding: 100px 0;
}

/* Background Shape */
.testimonial-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.testimonial-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Container */
.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.testimonial-content {
    position: relative;
}

.testimonial-section-title {
    font-size: 48px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    min-height: 400px;
}

.testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

/* Testimonial Card */
.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.testimonial-title {
    font-size: 24px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    margin: 0;
}

/* Author Info */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: #6b7280;
}

/* Navigation Arrows */
.testimonial-navigation {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #17a2b8;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.25);
    position: relative;
}

.testimonial-nav-btn i {
    font-size: 16px;
    line-height: 1;
}

.testimonial-nav-btn:hover {
    background: #138496;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(23, 162, 184, 0.35);
}

.testimonial-nav-btn:active {
    transform: scale(0.98);
}

/* Right Image */
.testimonial-image {
    position: relative;
    z-index: 3;
}

.doctor-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-container {
        gap: 40px;
    }

    .testimonial-section-title {
        font-size: 40px;
    }

    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .montor-testimonial-section {
        padding: 60px 0;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-background {
        width: 100%;
        opacity: 0.3;
    }

    .testimonial-section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .testimonials-slider {
        min-height: auto;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-title {
        font-size: 20px;
    }

    .testimonial-quote {
        font-size: 15px;
    }

    .testimonial-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .montor-testimonial-section {
        padding: 40px 0;
    }

    .testimonial-section-title {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
    }

    .author-name {
        font-size: 16px;
    }

    .testimonial-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

