.testimonial-carousel-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.sectionTitle {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    line-height: 1.3;
}

.highlight-text {
    color: #e87817;
}

/* Carousel Container */
.testimonial-carousel-container {
    position: relative;
    overflow: hidden; 
    margin: 0 auto;
    max-width: 1200px; 
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.7s ease-in-out;
    transform: translateX(0);
}

.testimonial-slide {
    flex: 0 0 100%; 
    min-width: 100%; 
    display: flex; 
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    box-sizing: border-box;
    flex-wrap: wrap; 
}

/* Video Wrapper for Responsiveness */
.video-wrapper {
    position: relative;
    width: 50%; 
    padding-bottom: 28.125%;
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Quote Content */
.quote-content {
    width: 45%;
    text-align: left;
}

.quote-text {
    font-size: 1.4em;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.quote-author {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.quote-company {
    font-size: 1em;
    color: #777;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.5em; 
    color: #e87817;
    cursor: pointer;
    user-select: none;
    {# padding: 0 15px;#}
    z-index: 10;
    transition: color 0.3s ease;
}

.carousel-arrow:hover {
    color: #d16b14;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .sectionTitle {
        font-size: 2em;
    }
    .testimonial-slide {
        flex-direction: column; 
        gap: 20px;
    }
    .video-wrapper,
    .quote-content {
        width: 100%; 
        max-width: 600px; 
    }
    .video-wrapper {
        padding-bottom: 56.25%; 
    }
    .carousel-arrow {
        font-size: 3em;
        padding: 0 10px;
    }
    .quote-text {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .sectionTitle {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .carousel-arrow {
        font-size: 2.5em;
        padding: 0 5px;
    }
    .quote-text {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .sectionTitle {
        font-size: 1.5em;
        padding: 0 10px;
    }
    .quote-text {
        font-size: 1em;
    }
    .quote-author, .quote-company {
        font-size: 0.9em;
    }
    .carousel-arrow {
        font-size: 2em;
    }
}