#whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7); /* ⬅️ More intense shadow */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#whatsapp-float:hover {
    transform: translateY(-6px) scale(1.07);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6); /* ⬅️ Even stronger on hover */
}

#whatsapp-float img {
    width: 60px;
    height: 60px;
}
