/* Simple Testimonial Carousel Styles */
.testimonial-carousel {
    padding: 5rem 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.testimonial-carousel h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    position: relative;
}

.testimonial-carousel h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

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

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0 10px;
}

.carousel-control {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background-color: rgba(123, 61, 144, 0.8);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
    .carousel-container {
        max-width: 90%;
        height: auto;
    }
}