.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    }

.whatsapp-float img {
width: 100%;
height: 100%;
}

/* ------------- Customer page -----------  */

.customer-card {
    border: 1px solid #C8CDD2;
    box-shadow: 0px 0px 15px rgba(38, 64, 234, 0.14);
    border-radius: 21px;
    padding: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.customer-card:hover {
    transform: translateY(-12px);
    box-shadow: -19px -16px 40px rgba(0, 0, 0, 0.15);
}

.cust-cont h3 {
    color: #232323;
    font-size: 18px;
    font-weight: 700;
}

.cust-card-img{
    img{
        width: 100%;
    }
}

.cust-cont {
    min-height: 150px;
    padding: 20px 10px 10px;
}

.cust-cont p {
    color: #5C5C5C;
    margin-bottom: 0;
}

.cust-para{
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #4F4F4F;
}

.cust-cream-bg{
    background-color: #FDF5E7;
}


/* LEFT → RIGHT */
.cust-slider-a .slick-track,
.cust-slider-c .slick-track {
    animation: scroll-right 40s linear infinite;
}

/* RIGHT → LEFT */
.cust-slider-b .slick-track {
    
    animation: scroll-left 40s linear infinite;
}

.cust-slider-a,
.cust-slider-b {
    margin-bottom: 40px;
}

/* Pause animation on hover */
.cust-slider-a:hover .slick-track,
.cust-slider-b:hover .slick-track,
.cust-slider-c:hover .slick-track {
    animation-play-state: paused;
}

/* animations */
@keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.cust-slider-img{
    filter: grayscale(100%);
}

.cust-slider-img:hover{
    filter: none;
}

.cust-industry-main {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.cust-industry-img {
    flex: 0 0 220px;
    max-width: 220px;
}

.cust-industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cust-industry-img img:hover {
    transform: translateY(-15px);
}

.cust-numb-div h4 {
    font-size: 56px;
    color: #370548;
    font-weight: 700;
}

.cust-numb-div p {
    color: #37475B;
    font-size: 26px;
}

.cust-icon-div {
    margin-bottom: 20px;
}

.cust-icon-numb-div {
    position: relative;
}

.cust-icon-numb-div:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    right: 0;
    top: 0px;
    background: linear-gradient(to bottom, rgba(219, 177, 241, 0.05) 0%, #DBB1F1 50%, rgba(219, 177, 241, 0.05) 100%);
}

.row .col-lg-4:last-child .cust-icon-numb-div::before {
    display: none;
}


@media (max-width:1400px){

    .cust-industry-img {
        flex: 0 0 180px;
        max-width: 180px;
    }

}

@media (max-width:991px){

    .cust-numb-div h4 {
        font-size: 40px;
    }

    .cust-numb-div p {
        font-size: 18px;
    }

    .cust-industry-img {
        flex: 0 0 120px;
        max-width: 120px;
    }

    .cust-icon-numb-div:before {
        display: none;
    }

    .customer-banner-img {
        display: none;
    }

    .cust-cont {
        min-height: auto;
    }

}

@media (max-width:575px){

    .cust-para {
        line-height: 1.5;
    }

    .cust-industry-img {
        flex: 0 0 100px;
        max-width: 100px;
    }
    
}