/*** Floating Button ***/
#floating-button {
    position: fixed;
    bottom: 30px;
    left: 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    width: 100px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 18px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for floating button */
#floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.4);
}

/* Links inside floating button */
#floating-button a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/*** WhatsApp Floating Button ***/
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 20px; /* Moved to the right for a better placement */
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 100px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 18px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for WhatsApp button */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.4);
}

/* Links inside WhatsApp button */
.whatsapp-float a {
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: block;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    line-height: 60px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Optional: Add animation when the buttons come into view */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#floating-button, .whatsapp-float {
    animation: fadeInUp 1s ease-out;
}
