/* ------------------------------------------
   Scrolling Text Section
------------------------------------------- */
.scrolling-text-container {
    overflow: hidden;
    white-space: nowrap;
    background-color: var(--gr-bg);
    padding: 29px 0;           /* vertical padding */
    height: 60px;              /* min-height for readability */
    display: flex;
    align-items: center;       /* vertically center text */
    margin-bottom: -24px;
}

/* Inner scrolling text */
.scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}

/* Individual review items */
.scrolling-text-item {
    display: inline-block;
    margin-right: 50px;
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 18px;
    color: #0a3d62; /* dark blue */
}

/* Animation for scrolling left */
@keyframes scroll-left {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Pause scrolling on hover */
.scrolling-text-container:hover .scrolling-text {
    animation-play-state: paused;
}
