/* WhatsApp Floating Chatbot */
.whatsapp-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px; 
    height: 60px;
    background-color: #25D366; /* WhatsApp Green */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

/* Target only the WhatsApp button image */
.whatsapp-chatbot img {
    width: 35px; 
    height: 35px;
}

.whatsapp-chatbot:hover {
    transform: scale(1.1);
}

/* Make it responsive */
@media (max-width: 768px) {
    .whatsapp-chatbot {
        width: 50px;
        height: 50px;
    }

    .whatsapp-chatbot img {
        width: 30px;
        height: 30px;
    }
}
