
        /* Chatbot Container */
        #mysurebiz-chatbot {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 350px;
            height: 500px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow: hidden;
            display: none;
            flex-direction: column;
            z-index: 9999;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        #mysurebiz-chatbot.active {
            display: flex;
            transform: translateY(0);
            opacity: 1;
        }
        
        /* Chatbot Header */
        .chatbot-header {
            background: linear-gradient(135deg, #0d47a1, #1976d2);
            color: white;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }

        .chatbot-header h3{
            color: tomato;
        }
        
        .chatbot-header img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            border: 2px solid white;
        }
        
        .header-text {
            flex: 1;
        }
        
        .header-text h3 {
            margin: 0;
            font-size: 16px;
        }
        
        .header-text p {
            margin: 3px 0 0;
            font-size: 12px;
            opacity: 0.9;
        }
        
        .chatbot-close {
            background: none;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
        }
        
        /* Chatbot Body */
        .chatbot-body {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            background: #f9f9f9;
        }
        
        .message {
            margin-bottom: 15px;
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 18px;
            line-height: 1.4;
            font-size: 14px;
            position: relative;
        }
        
        .bot-message {
            background: #e3f2fd;
            color: #0d47a1;
            border-top-left-radius: 5px;
            align-self: flex-start;
        }
        
        .user-message {
            background: #0d47a1;
            color: white;
            border-top-right-radius: 5px;
            align-self: flex-end;
            margin-left: auto;
        }
        
        /* Chatbot Footer */
        .chatbot-footer {
            padding: 15px;
            border-top: 1px solid #eee;
            display: flex;
            background: white;
        }
        
        .chatbot-input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 25px;
            outline: none;
            font-size: 14px;
        }
        
        .chatbot-send {
            background: #0d47a1;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-left: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .chatbot-send:hover {
            background: #1565c0;
        }
        
        /* Quick Replies */
        .quick-replies {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }
        
        .quick-reply {
            background: #e3f2fd;
            color: #0d47a1;
            border: none;
            padding: 8px 12px;
            border-radius: 15px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .quick-reply:hover {
            background: #bbdefb;
        }
        
        /* Chatbot Button */
        #mysurebiz-chatbot-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0d47a1, #1976d2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(13, 71, 161, 0.3);
            z-index: 9998;
            animation: pulse 2s infinite;
        }
        
        #mysurebiz-chatbot-button i {
            font-size: 24px;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        /* WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
            z-index: 9998;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .whatsapp-button:hover {
            background: #128C7E;
            transform: translateY(-3px);
        }
        
        .whatsapp-button i {
            font-size: 30px;
        }
        
        /* Typing Indicator */
        .typing-indicator {
            display: inline-flex;
            padding: 10px 15px;
            background: #e3f2fd;
            border-radius: 18px;
            border-top-left-radius: 5px;
            margin-bottom: 15px;
        }
        
        .typing-dot {
            width: 8px;
            height: 8px;
            background: #0d47a1;
            border-radius: 50%;
            margin: 0 2px;
            animation: typingAnimation 1.4s infinite ease-in-out;
        }
        
        .typing-dot:nth-child(1) { animation-delay: 0s; }
        .typing-dot:nth-child(2) { animation-delay: 0.2s; }
        .typing-dot:nth-child(3) { animation-delay: 0.4s; }
        
        @keyframes typingAnimation {
            0%, 60%, 100% { transform: translateY(0); opacity: 0.6; }
            30% { transform: translateY(-5px); opacity: 1; }
        }
        
        /* Chatbot Options */
        .chatbot-options {
            margin-top: 15px;
        }
        
        .option-button {
            display: block;
            width: 100%;
            padding: 12px;
            margin-bottom: 8px;
            background: white;
            border: 1px solid #0d47a1;
            color: #0d47a1;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
        }
        
        .option-button:hover {
            background: #0d47a1;
            color: white;
        }
        
        /* Welcome Animation */
        @keyframes slideIn {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .welcome-message {
            animation: slideIn 0.5s ease-out;
        }
