.testimonials-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(108, 43, 217, 0.2);
}

.testimonials-image img {
    transition: transform 0.3s ease;
}

.testimonials-image img:hover {
    transform: scale(1.02);
}

.testimonial-nav-btn {
    background: rgba(108, 43, 217, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-nav-btn:hover {
    background: rgba(108, 43, 217, 1);
    transform: scale(1.1);
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #6c2bd9;
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: rgba(108, 43, 217, 0.7);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        min-height: 180px;
        padding: 1.5rem;
    }
    
    .testimonials-image {
        margin-bottom: 2rem;
    }
}