/* Section container */
/*.customer {*/
/*    width: 100%;*/
/*    position: relative;*/
/*    padding: 20px;*/
/*    box-sizing: border-box;*/
/*    overflow: hidden;*/
/*}*/

/* Testimonial slider container */
.testimonial-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Slide container */
.slide {
    width: 100%;
    /*padding: 20px;*/
    box-sizing: border-box;
    display: none;
    text-align: center;
}

/* Show the first slide by default */
.slide:first-child {
    display: block;
}

/* Testimonial image styling */
.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Blockquote styling */
blockquote {
    font-size: 1rem;
    margin: 0;
}

/* Testimonial footer styling */
.testimonial-footer {
    font-weight: bold;
    margin-top: 10px;
}

/* Navigation buttons */
.prev-button, .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10; /* Ensure the buttons appear above the slides */
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

/* Indicator container */
.indicator-container {
    text-align: center;
    margin-top: 10px; /* Space between slider and indicators */
}

/* Indicators (dots) */
.indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

/* Active indicator */
.indicator.active {
    background-color: #bc0a0f; /* Change the color of the active dot */
}

.testimonial-container{
    margin: 0px 3em;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 15px;
    padding: 14px;
    box-shadow: 0px 1px 10px #95000075;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    blockquote {
        font-size: 0.9rem;
    }
    .testimonial-image {
        width: 80px;
        height: 80px;
    }
    .prev-button, .next-button {
        padding: 8px;
    }
}
