/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    left: 20px;  /* Distance from the left */
    width: 60px;
    height: 60px;
    background-color: #25d366; /* WhatsApp green */
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    /* Using flexbox for perfect vertical and horizontal centering */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999; /* Ensure it's above most content, but below accessibility widget (z-index: 1000) */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none; /* Remove underline from the link */
}

.whatsapp-float:hover {
    background-color: #1da851; /* Darker green on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

.whatsapp-float i {
    /* Font Awesome icon styling */
    font-size: 30px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        left: 15px;
    }
    .whatsapp-float i {
        font-size: 25px;
    }
}