
.testimonials-container {
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.testimonials-header {
    text-align: center;
    font-size: 38px;
    font-weight: 400;
    color: white;
    margin-bottom: 50px;
    line-height: normal;
    font-family: Metropolis, Sans-serif, Helvetica, Arial;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.testimonials-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    min-width: 100%;
    padding: 0px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.avatar {
    width: 150px !important;
    height: 150px !important;
    border-radius: 50% !important;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.avatar:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.testimonial-text {
    font-size: 18px;
    font-family: Metropolis, Sans-serif, Helvetica, Arial;
    line-height: 1.6;
    color: white;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.testimonial-text::before {
    content: '"';
    font-size: 60px;
    position: absolute;
    top: -20px;
    left: -30px;
    color: rgba(255, 255, 255, 0.3);
    font-family: serif;
}

.testimonial-text::after {
    content: '"';
    font-size: 60px;
    position: absolute;
    bottom: -40px;
    right: -30px;
    color: rgba(255, 255, 255, 0.3);
    font-family: serif;
}

.author-info {
    position: relative;
    z-index: 1;
}

.author-name {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
    font-family: Metropolis, Sans-serif, Helvetica, Arial;
}

.author-job {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-family: Metropolis, Sans-serif, Helvetica, Arial;
}

.author-slogan {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-family: Metropolis, Sans-serif, Helvetica, Arial;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.541) !important;
    border-radius: 50% !important;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial {
        padding: 40px 40px;
    }

    .testimonials-header {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 40px;
    }
    
    .testimonial-text::before {
        top: -15px;
        left: -20px;
    }
    
    .testimonial-text::after {
        bottom: -30px;
        right: -20px;
    }
    
    .author-name {
        font-size: 18px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}