/* Testimonials Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    /* Adjust as needed */
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

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

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    /* Distribute the 3 items */
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens if needed */
    padding: 0 10px;
}

/* Individual testimonial card styling - reusing existing logic but ensuring layout */
.carousel-slide>div {
    flex: 1;
    min-width: 300px;
    /* Prevent squishing */
    max-width: 33%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

/* Dots navigation */
.carousel-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active,
.dot:hover {
    background-color: #717171;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-slide {
        flex-direction: column;
        align-items: center;
    }

    .carousel-slide>div {
        max-width: 100%;
        margin-bottom: 20px;
    }
}