.testimonial-container {
    width: 100%;
    overflow: hidden;
    background-color: #002366; /* Dark blue background */
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 40px 0; /* Increased padding to double the height */
    position: relative;
    text-align: center;
}

.testimonial-wrapper {
    display: flex;
    white-space: nowrap;
    animation: scroll 120s linear infinite; /* Adjust the total duration as needed */
}

.testimonial {
    display: inline-block;
    min-width: 100%;
    padding: 0 40px; /* Increased padding for more space between reviews */
    margin: 0 20px;  /* Added margin to create extra space between testimonials */
    font-size: 1em;
    text-align: center;
    flex-shrink: 0;
    color: #ffffff; /* White text */
}

.testimonial-wrapper:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); } 
    10% { transform: translateX(0); } /* First testimonial visible */
    20% { transform: translateX(-100%); } /* Transition to second testimonial */
    30% { transform: translateX(-200%); } /* Transition to third testimonial */
    40% { transform: translateX(-300%); } /* Transition to fourth testimonial */
    50% { transform: translateX(-400%); } /* Transition to fifth testimonial */
    60% { transform: translateX(-500%); } /* Transition to sixth testimonial */
    70% { transform: translateX(-600%); } /* Transition to seventh testimonial */
    80% { transform: translateX(-700%); } /* Transition to eighth testimonial */
    90% { transform: translateX(-800%); } /* Transition to ninth testimonial */
    100% { transform: translateX(-900%); } /* Transition to tenth testimonial */
}