/* Style for the chat icon */
.chat-icon {
    position: fixed;
    bottom: 20px; /* Adjust the distance from the bottom */
    right: 20px;  /* Adjust the distance from the left */
    z-index: 1000;
    border-radius: 40%;
    background-color: #25D366; /* WhatsApp orange color */
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

/* Add a hover effect to scale the icon */
.chat-icon:hover {
    transform: scale(1.1);
}

/* Style for the image inside the chat icon */
.chat-icon img {
    width: 40px;
    height: 40px;
    border-radius: 40%;
}

/* Optional: Add animation */
@keyframes chat-bubble {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-icon {
    animation: chat-bubble 0.5s ease-out;
}