/**
 * Testimonials Slider
 */

.testimonials-section {
    padding: 80px 0;
    background: #0F172A;
    overflow: hidden;
}

.testimonials-label {
    text-align: center;
    color: #ffc107;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonials-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}

.testimonials-rating {
    text-align: center;
    color: #ffc107;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 50px;
}

.testimonials-rating i {
    margin-right: 5px;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-slider {
    display: flex;
    animation: slide-testimonials 30s linear infinite;
    width: fit-content;
    gap: 15px;
}

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

.testimonials-slider:hover {
    animation-play-state: paused;
}

.testimonial-item {
    flex: 0 0 auto;
    width: 280px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #161b22;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ffc107;
}

.testimonial-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #0b0e14;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
}

@media (max-width: 768px) {
    .testimonial-item {
        width: 220px;
        height: 400px;
    }
}
