/* Live Chat Button Styling */
.rh-live-chat {
    position: fixed;
    bottom: 90px;
    right: 20px; /* <--- Ekhane 'left' er poriborte 'right' kora holo */
    background: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    z-index: 999999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    
    /* Lighting Animation */
    animation: pulse-glow 2s infinite;
}

/* Pulsing Lighting Effect */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.rh-live-chat:hover {
    transform: scale(1.1);
    background: #128c7e;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .rh-live-chat { bottom: 95px; right: 15px; } /* Ekhane 'left' er poriborte 'right' kora holo */
}
