.testimonial-slider-wrapper-215 {
    width: 100%;
}

.testimonial-slider-title-215 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    font-weight: bold;
}

.testimonial-slider-inner-215 {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    width: 100%;
}

.testimonial-arrow-215 {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
    flex-shrink: 0;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-arrow-215:hover {
    background: #f5f5f5;
    transform: scale(1.05);
}

.testimonial-arrow-215 svg {
    width: 16px;
    height: 16px;
    fill: #333;
}

.testimonial-arrow-215 i {
    font-size: 16px;
    color: #333;
}

.testimonial-slider-container-215 {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Optional fade edges */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    scroll-behavior: auto; /* Handled by JS smoothly */
}

/* Hide scrollbar for container */
.testimonial-slider-container-215::-webkit-scrollbar {
    display: none;
}
.testimonial-slider-container-215 {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-track-215 {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-215 var(--scroll-speed, 20s) linear infinite;
}

.testimonial-card-215 {
    width: 350px; /* Fixed width */
    flex-shrink: 0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-rating-215 {
    margin-bottom: 15px;
    display: flex;
    gap: 5px;
}

.testimonial-rating-215 svg {
    width: 16px;
    height: 16px;
}

.testimonial-text-215 {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author-215 {
    margin: 0;
    font-weight: bold;
    font-size: 18px;
    text-align: right;
}

@keyframes scroll-215 {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move left by exactly half the track width */
        transform: translateX(calc(-50% - 15px)); 
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-card-215 {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .testimonial-slider-inner-215 {
        position: relative;
    }
    .testimonial-arrow-215 {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .testimonial-arrow-prev-215 {
        left: 0;
    }
    .testimonial-arrow-next-215 {
        right: 0;
    }
    .testimonial-arrow-215:hover {
        transform: translateY(-50%) scale(1.05);
    }
    .testimonial-card-215 {
        width: 280px;
        padding: 20px;
    }
    .testimonial-slider-title-215 {
        font-size: 1.5em;
    }
}