
   .marquee-wrap {
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 70px;           /* Adjust spacing between items */
    padding-right: 70px;
}

.service-item {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-icon {
    width: 28px;          /* Size of your green icon */
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(0);   /* Keeps original green color */
}

/* Infinite scrolling animation */
@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.marquee-wrap:hover .marquee-track {
    animation-play-state: paused;
}
