/* Marquee Section */
.marquee-section {
    padding: 120px 0;
    background: var(--pure-white);
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 60px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.marquee-item:hover {
    opacity: 1;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =====================================================
MARQUEE SECTION
===================================================== */
/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    .marquee-section {
    padding: 80px 0;
    }
    .marquee-item {
        font-size: 50px;
        padding: 0 30px;
    }
    }