.floating-chat {
    position: fixed;
    bottom: 20px;
    left: 20px; /* left side fixed */
    z-index: 1000;
}

.chat-icon {
    background-color: #c9efff;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.chat-icon:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.chat-options {
    position: absolute;
    bottom: 75px;
    left: 0;
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    width: 160px;
}

.chat-option {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
    margin-bottom: 5px;
}

.chat-option img {
    margin-right: 10px;
}

.chat-option:hover {
    background-color: #f1f1f1;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .floating-chat {
        bottom: 70px;
        left: 10px;
    }
    .chat-options {
        width: 180px;
    }
}