
    .floating-whatsapp {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #25D366;
        /* WhatsApp Green */
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        z-index: 1000;
        /* Keeps it on top */
    }

    .floating-whatsapp:hover {
        transform: scale(1.1);
    }

    .whatsapp-icon {
        width: 35px;
        height: 35px;
    }
