/* WhatsApp floating button (scoped) */
/* Change the phone number in the HTML anchor href to your own in international format (no +). Example: 919876543210 */
.whatsapp-float {
    position: fixed !important;
    Right: 20px;
    bottom: 20px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    z-index: 99999;
    transition: transform .12s ease, box-shadow .12s ease;
    /* Promote to its own layer so transforms on ancestors don't affect it */
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    fill: #fff;
    display: block;
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-icon {
        width: 22px;
        height: 22px;
    }
}