/* Clients Carousel Item Section */
.our-clients-carousel{
    height: 80px;
    width: auto;
}

/* Logo Image */
.our-clients-carousel img{
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 1024px){
    .our-clients-carousel{
        height: 70px;
    }

    .our-clients-carousel img{
        max-height: 50px;
    }
}

/* Mobile */
@media (max-width: 767px){
    .our-clients-carousel{
        height: 60px;
    }

    .our-clients-carousel img{
        max-height: 40px;
    }
}



/* ============= */
/* Liquid Buttons */
/* ============= */
  .glk-btn {
            position: relative;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            outline: none;
            border-radius: 50px;
            box-sizing: border-box;
            font-weight: 700;
            overflow: hidden;
            z-index: 1;
            transition: color 0.4s ease, border-color 0.4s ease, border-width 0.2s ease;
            
            /* Default Border (Agar class na di jaye) */
            border: 2px solid transparent;
            font-family: 'Segoe UI', sans-serif;
            padding: 10px 20px;
            font-size: 14px;
            color: #333;
        }

        /* --- Liquid Animation --- */
        .glk-btn__inner { position: absolute; inset: 0; z-index: -1; border-radius: inherit; }
        .glk-btn__blobs { position: relative; display: block; height: 100%; filter: url('#goo'); }
        .glk-btn__blob {
            position: absolute; top: 2px; width: 28%; height: 100%;
            background: var(--blob-color, #333); 
            border-radius: 100%;
            transform: translate3d(0, 150%, 0) scale(1.5);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .glk-btn:hover { color: var(--hover-text, #fff) !important; }
        .glk-btn:hover .glk-btn__blob { transform: translate3d(0, 0, 0) scale(1.7); }
        
        .glk-btn__blob:nth-child(1) { left: 0%; transition-delay: 0s; }
        .glk-btn__blob:nth-child(2) { left: 25%; transition-delay: 0.08s; }
        .glk-btn__blob:nth-child(3) { left: 50%; transition-delay: 0.16s; }
        .glk-btn__blob:nth-child(4) { left: 75%; transition-delay: 0.24s; }

