.new-footer-links {
    position: relative;
    overflow: hidden;
    background-color: #030c1000;
    padding: 10px 0;
    border-radius: 4px;
}

.slider-container1 {
    position: relative;
    overflow: hidden;
    background-color: #030c1000;
    padding: 10px 0;
    border-radius: 4px;

}
        
        /* Blue accent lines at top and bottom of slider */
        .slider-container1::before,
        .slider-container1::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
     background: linear-gradient(to right, #929292, rgb(225 182 32), transparent
); 

}
        
        .slider-container1::before {
            top: 0;
        }
        
        .slider-container1::after {
            bottom: 0;
        }
        
        .logo-slider1 {
            display: flex;
           animation: slideInfinite 40s linear infinite;
            width: fit-content;
        }
        
        .logo-slide1 {
            display: flex;
        }
        
        .logo-item1 {
            flex: 0 0 auto;
            padding: 0 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 10px;
            height: 80px;
        }
        
        .logo-item1 a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            text-decoration: none;
            position: relative;
        }
        
        .logo-item1 img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
            transition: all 0.3s ease;
            filter: brightness(0.9);
        }
        
        .logo-item1:hover img {
            transform: scale(1.1);
            filter: brightness(1.1) drop-shadow(0 0 8px rgb(225 32 32 / 60%)); /* Blue glow on hover */
        }
        
        /* Text logo styling */
        .logo-item1 a span {
            color: white;
            transition: all 0.3s ease;
        }
        
        .logo-item1:hover a span {
            color: #e12020; /* Blue color on hover */
            text-shadow: 0 0 8px rgb(225 184 32 / 60%);
        }
        
     @keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

        
        /* Edge fade gradients */
        .edge-fade-left1,
        .edge-fade-right1 {
            content: "";
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }
        
        .edge-fade-left1 {
    left: 0;
    background: transparent);

}
        
        .edge-fade-right1 {
    right: 0;
    background: transparent, 
transparent
);

}
        
        /* Blue accent on the edges */
        .blue-accent-left1,
        .blue-accent-right1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 40%;
    z-index: 3;
     background: linear-gradient(to bottom, 
                transparent, 
                rgb(249 210 0 / 70%), 
                transparent
            ); 
    border-radius: 3px;

}
        
        .blue-accent-left1 {
            left: 0;
        }
        
        .blue-accent-right1 {
            right: 0;
        }
        
        @media (max-width: 768px) {
            .logo-item1 {
                min-width: 140px;
            }
            
            .edge-fade-left1,
            .edge-fade-right1 {
                width: 50px;
            }
        }
button.header__signup.slider_btn1 {
    display: none;
}