.industry-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50vh;
    background-color: var(--background-color);
    text-align: center;
}

.industry-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    padding-bottom: 10px;
}

.industry-subheading {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: var(--primary-color);
    padding-bottom: 4rem;
}

.custom-marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: inline-flex;
    gap: 50px;
    animation: scroll-marquee 30s linear infinite;
}

/* Animation for infinite scroll */
@keyframes scroll-marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    padding-left: 50px;
    padding-right: 50px;
}
