/*.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    white-space: nowrap;
}

.marquee {
    display: inline-flex;
    animation: marquee-animation 10s linear infinite;
}

.marquee-item {
    margin-right: 30px;
    
    font-weight: bold;
    display: flex;
    align-items: center;
}

.marquee-icon {
    margin-right: 10px;
}

@keyframes marquee-animation {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}*/


.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    white-space: nowrap;
}

.marquee-wrapper {
    display: flex;
    width: 100%;
}

.marquee {
    display: flex;
    gap: 50px; /* Adjust spacing */
    animation: marquee-animation 10s linear infinite;
}

.marquee-item {
    font-weight: bold;
    display: flex;
    align-items: center;
    padding-right: 50px; /* Space between items */
}

.marquee-icon {
    margin-right: 10px;
}

@keyframes marquee-animation {
    from { transform: translateX(0%); }
    to { transform: translateX(-50%); } /* Move only half since we duplicated */
}


.marquee, .marquee-item {background: linear-gradient(to right, #019297 0%, #73ed7c 50%, #019297 100%); -webkit-background-clip: text; -webkit-text-stroke: 4px transparent;display: inline-flex; align-items: center; padding-bottom: 10px;}