/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 23 2026 | 06:38:10 */
/* FINAL FIX: INFINITE SCROLL + LINK VISIBILITY */

/* 1. Siguraduhin na ang Swiper slide ay naka-center */
.client-logo-slider .swiper-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* 2. Targetin ang Link wrapper (ito ang nawawala pag nilagyan ng URL) */
.client-logo-slider .swiper-slide a {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    text-decoration: none !important;
}

/* 3. Core CSS para sa Logo Image */
.client-logo-slider .elementor-carousel-image {
    filter: grayscale(100%) opacity(0.6) !important;
    transition: all 0.4s ease-in-out !important;
    
    /* Gawing 100% ang width para sumunod sa 'Slides Per View' */
    width: 100% !important; 
    height: 65px !important; 
    
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    
    /* Padding para sa gap */
    padding: 0 10px !important; 
    display: block !important;
}

/* 4. Hover Effect - Updated para gumana kahit may link */
.client-logo-slider .swiper-slide:hover .elementor-carousel-image {
    filter: grayscale(0%) opacity(1) !important;
    transform: scale(1.1);
}

/* 5. Hide Arrows */
.client-logo-slider .elementor-swiper-button {
    display: none !important;
}

/* Extra: Cursor pointer para sa buong slide */
.client-logo-slider .swiper-slide {
    cursor: pointer;
}