#scrolling-text {
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    opacity: 0;               /* Initially hidden */
    transition: opacity 0.5s ease-in-out; /* Smooth fade-in */
}

.scrolling-wrapper {
    display: flex;
    gap: 100px; /* Adjust as needed */
    animation: scroll-text 50s linear infinite;
    width: max-content;
	max-width: 100%;
}

.scroll-item {
    flex: 0 0 auto;
    min-width: 200px; /* Adjust as needed */
    text-align: center;
}

@keyframes scroll-text {
    0% { transform: translateX(100%); }  /* Start off-screen */
    100% { transform: translateX(-50%); } /* Scroll left */
}
