.whatsapp-float {
    /* Critical: Fixed makes it stay on screen while scrolling */
    position: fixed !important; 
    
    /* Coordinates */
    bottom: 100px !important; 
    right: 20px !important;
    
    /* Layering: 9.9 million ensures it's above everything */
    z-index: 9999999 !important; 
    
    /* Size and Look */
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.3);
    
    /* Animation from before */
    animation: pulse-green 2s infinite;
}

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

/* Mobile Overrides */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px !important;
        right: 15px !important;
        width: 50px;
        height: 50px;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Add this to your existing .whatsapp-float class */
.whatsapp-float {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media screen and (max-width: 768px) {
    
    
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}
