/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 95px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 3px 3px 5px #666;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* Adjust clients swiper pagination to sit a bit lower (provide extra space and nudge bullets) */
.clients-swiper {
    position: relative;
    padding-bottom: 28px; 
}
.clients-swiper .swiper-pagination {
    position: absolute; 
    left: 50%;
    bottom: 6px !important; 
    transform: translate(-50%, 6px); 
    z-index: 10;
    width: auto;
    text-align: center;
}

/* ensure bullets are inline and centered */
.clients-swiper .swiper-pagination .swiper-pagination-bullets {
    display: inline-block;
}

