/* Floating WhatsApp Button */
#whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px; /* Opposite to chatbot on the right */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 9998; /* Just below chatbot if they overlap */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: float-wa 3s ease-in-out infinite;
}

#whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 20px rgba(18, 140, 126, 0.5);
    animation-play-state: paused;
}

@keyframes float-wa {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Adjust dark mode toggle position so it doesn't overlap WhatsApp */
#dark-mode-toggle {
    bottom: 105px !important; /* Move above WhatsApp button */
}
