.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.testimonial-wrapper {
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
    /* Add initial clone at start for smooth infinite loop */
    transform: translateX(-100%);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

.testimonial-card img {
    height: 150px;
    width: auto;
    border-radius: 2px;
    margin: 0 auto;
    display: block;
}

.testimonial-card h4 {
    color: #973C4D;
    margin: 15px 0;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #973C4D;
    color:white ;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 10;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 767px) {
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
