.skills-section {
    width: 100%;
    position: relative;
}

.dark-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.dark-marquee-track {
    padding-top: 1rem;
    display: flex;
    gap: 1rem;
    will-change: transform;
}

.dark-marquee-track-2 {
    padding-top: 1rem;
    display: flex;
    gap: 1rem;
    will-change: transform;
    justify-content: flex-end;
}

.dark-marquee-gradient {
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 2;
}

.dark-marquee-gradient-left {
    left: 0;
    background: linear-gradient(to right, #111, transparent);
}

.dark-marquee-gradient-right {
    right: 0;
    background: linear-gradient(to left, #111, transparent);
}

.tech-marquee-card {
    flex-shrink: 0;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.5rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s ease, border 0.3s ease;
}

.tech-marquee-card:hover {
    background-color: #212121;
    border: 1px solid rgba(255, 255, 255, 0.325);
}

.tech-marquee-card:hover .tech-marquee-icon {
    filter: grayscale(0);
}

.tech-marquee-icon {
    width: 32px;
    height: 32px;
    /* display: none;      */
    object-fit: contain;
    border-radius: 8px;
    border: 3px solid #1a1a1a;
    background-color: #1a1a1a;
    filter: grayscale(0.8);
    transition: filter 0.5s ease;
}

.tech-marquee-label {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
}