.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;  /* Adjusted size */
    height: 50px;
    z-index: 1000;
    display: none; /* Initially hidden */
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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