
        /* General Reset */
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #e5ddd5;
        }

        /* Chat Icon */
        .chat-icon {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #eabe28;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s, transform 0.3s, opacity 0.3s;
            z-index: 1000;
        }

        .chat-icon:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }

        .chat-icon i {
            color: white;
            font-size: 28px;
            line-height: 1;
        }

        /* Chat Popup Message */
        .chat-popup {
            position: fixed;
            bottom: 90px; /* Above the chat icon */
            right: 25px;
            background-color: #eabe28;
            color: black;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s, transform 0.3s;
            z-index: 1001;
            pointer-events: none; /* Prevents interaction */
        }

        .chat-popup.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Chat Widget */
        .chat-widget {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 360px;
            height: 500px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease-in-out;
            visibility: hidden;
            z-index: 999;
        }

        .chat-widget.show {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }

        /* Chat Header */
        .chat-header {
            background-color: #075E54;
            color: #ffffff;
            padding: 10px 15px;
            font-size: 16px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .chat-header .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .chat-header .logo i {
            font-size: 20px;
        }

        .chat-header .logo span {
            font-size: 18px;
        }

        .chat-header button {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 24px;
            cursor: pointer;
            padding: 0;
        }

        /* Chat Body */
        .chat-body {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            background-color: #e5ddd5;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Messages */
        .message {
            padding: 10px 15px;
            border-radius: 8px;
            max-width: 70%;
            font-size: 14px;
            line-height: 1.4;
            word-wrap: break-word;
            position: relative;
            margin-bottom: 5px;
        }

        .message.bot {
            background-color: #ffffff;
            color: #333;
            align-self: flex-start;
            border-bottom-left-radius: 2px;
        }

        .message.user {
            background-color: #DCF8C6;
            color: #333;
            align-self: flex-end;
            border-bottom-right-radius: 2px;
        }

        /* Typing Animation */
        .typing-animation {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .typing-animation span {
            width: 8px;
            height: 8px;
            background-color: #999;
            border-radius: 50%;
            animation: blink 1.4s infinite;
        }

        .typing-animation span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-animation span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes blink {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 1; }
        }

        /* Quick Replies */
        .quick-replies {
            display: flex;
            gap: 8px;
            margin-top: 5px;
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        .quick-replies button {
            background-color: #25D366;
            color: white;
            border: none;
            border-radius: 20px;
            padding: 6px 14px;
            font-size: 13px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .quick-replies button:hover {
            background-color: #128C7E;
        }

        /* Chat Footer */
        .chat-footer {
            display: flex;
            padding: 10px;
            background-color: #F0F0F0;
            border-top: 1px solid #d9d9d9;
        }

        #user-input {
            flex: 1;
            border: none;
            border-radius: 20px;
            padding: 10px 15px;
            outline: none;
            font-size: 14px;
            background-color: #ffffff;
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        #send-btn {
            background-color: #25D366;
            color: #ffffff;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            margin-left: 10px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 0.3s;
        }

        #send-btn:hover {
            background-color: #128C7E;
        }

        #send-btn i {
            font-size: 18px;
        }

        /* Hide Chat Icon on Mobile When Widget is Open */
        @media (max-width: 480px) {
            .chat-widget.show + .chat-icon {
                opacity: 0;
                visibility: hidden;
            }

            .chat-widget {
                width: 100%;
                height: 100%;
                bottom: 0;
                right: 0;
                border-radius: 0;
            }

            .chat-header {
                border-radius: 0;
            }

            .chat-popup {
                right: 10px; /* Adjust for full-width mobile */
            }
        }

.chat-widget, .chat-icon {
  z-index: 10 !important;
}



