/* Testimonials Complete Redesign */

.testimonials-section {
    padding: 100px 20px !important;
    background: var(--gradient-2) !important;
    overflow: hidden !important;
}

.testimonials-section .section-title {
    color: white !important;
}

.testimonials-section .section-description {
    color: #94a3b8 !important;
}

/* Carousel Container */
.testimonials-carousel {
    display: flex !important;
    gap: 30px !important;
    animation: scroll-testimonials 40s linear infinite !important;
    width: max-content !important;
    margin-top: 60px !important;
    padding: 0 20px !important;
}

.testimonials-carousel:hover {
    animation-play-state: paused !important;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0) !important;
    }
    100% {
        transform: translateX(-50%) !important;
    }
}

/* Testimonial Card */
.testimonial-card {
    flex: 0 0 400px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    transition: all 0.3s ease !important;
}

.testimonial-card:hover {
    transform: translateY(-10px) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #6366f1 !important;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3) !important;
}

/* Header with Avatar */
.testimonial-header {
    display: flex !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
    align-items: center !important;
}

.testimonial-avatar {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    border: 3px solid rgba(255, 255, 255, 0.2) !important;
    object-fit: cover !important;
    transition: all 0.3s ease !important;
}

.testimonial-card:hover .testimonial-avatar {
    border-color: #6366f1 !important;
    transform: scale(1.1) !important;
}

.testimonial-info {
    flex: 1 !important;
}

.testimonial-info h4 {
    color: white !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
}

.testimonial-role {
    color: #94a3b8 !important;
    font-size: 14px !important;
    margin-bottom: 3px !important;
}

.testimonial-location {
    color: #6366f1 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

/* Rating */
.testimonial-rating {
    font-size: 20px !important;
    margin-bottom: 15px !important;
}

/* Quote */
.testimonial-quote {
    color: #e2e8f0 !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    font-style: italic !important;
}

/* Arrow Controls */
.testimonials-arrows {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
    margin-top: 40px !important;
}

.testimonials-arrow {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    font-size: 20px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.testimonials-arrow:hover {
    background: #6366f1 !important;
    border-color: #6366f1 !important;
    transform: scale(1.1) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 320px !important;
        padding: 25px !important;
    }

    .testimonial-avatar {
        width: 60px !important;
        height: 60px !important;
    }

    .testimonial-info h4 {
        font-size: 16px !important;
    }

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