
        :root {
            --primary: #6C5CE7;
            --primary-light: #efeeff;
            --bg-light: #f8fafc;
            --text-main: #2d3436;
            --text-sub: #636e72;
            --white: #ffffff;
            --shadow: 0 20px 40px rgba(108, 92, 231, 0.15);
        }


        #ai-chatbot-wrapper {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 99999;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .bot-launcher {
            width: 65px;
            height: 65px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            outline: none;
                box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
        }


@keyframes pulse {
    0% { 
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.7); 
    }
    70% { 
        box-shadow: 0 0 0 15px rgba(108, 92, 231, 0); 
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0); 
    }
}     .bot-launcher:hover {
            transform: scale(1.1) rotate(5deg);
        }

        .bot-launcher i {
            color: var(--white);
            font-size: 28px;
        }

        .chat-main-window {
            width: 400px;
            height: 650px;
            max-height: calc(100vh - 120px);
            background: var(--white);
            border-radius: 30px;
            margin-bottom: 20px;
            display: none;
            flex-direction: column;
            box-shadow: var(--shadow);
            border: 1px solid rgba(108, 92, 231, 0.1);
            overflow: hidden;
            animation: openAnim 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        @keyframes openAnim {
            from { opacity: 0; transform: translateY(50px) scale(0.9); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .chat-top-bar {
            padding: 25px;
            background: var(--primary);
            color: var(--white);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .bot-brand {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .brand-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .brand-details h3 {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin: 0;
        }

        .brand-details span {
            font-size: 12px;
            opacity: 0.8;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .close-chat {
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.3s;
        }

        .close-chat:hover { background: rgba(0,0,0,0.1); }

        .chat-scroller {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: #fdfdff;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .chat-scroller::-webkit-scrollbar { width: 4px; }
        .chat-scroller::-webkit-scrollbar-thumb { background: #eee; border-radius: 10px; }

        .bubble {
            max-width: 85%;
            padding: 14px 18px;
            font-size: 14px;
            line-height: 1.6;
            border-radius: 20px;
        }

        .bot-bubble {
            background: var(--primary-light);
            color: var(--primary);
            align-self: flex-start;
            border-bottom-left-radius: 5px;
        }

        .user-bubble {
            background: var(--primary);
            color: var(--white);
            align-self: flex-end;
            border-bottom-right-radius: 5px;
        }

        .action-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 15px;
        }

        .action-item {
            text-decoration: none;
            background: var(--white);
            border: 1px solid var(--primary-light);
            padding: 12px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-main);
            transition: 0.3s;
        }

        .action-item:hover {
            border-color: var(--primary);
            background: var(--primary-light);
            transform: translateY(-2px);
        }

        .typing-box {
            padding: 20px;
            background: var(--white);
            border-top: 1px solid #f0f0f0;
        }

        .input-group {
            background: #f4f4f9;
            border-radius: 18px;
            padding: 8px 8px 8px 18px;
            display: flex;
            align-items: center;
            transition: 0.3s;
            border: 1px solid transparent;
        }

        .input-group:focus-within {
            background: var(--white);
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(108, 92, 231, 0.05);
        }

        .input-group input {
            flex: 1;
            border: none;
            background: transparent;
            outline: none;
            font-size: 14px;
            color: var(--text-main);
        }

        .submit-btn {
            width: 42px;
            height: 42px;
            background: var(--primary);
            border-radius: 14px;
            border: none;
            color: var(--white);
            cursor: pointer;
            transition: 0.3s;
        }

        .submit-btn:hover { background: #5b4bc4; }

        .loading-text {
            font-size: 11px;
            color: var(--text-sub);
            margin: 0 25px 10px;
            display: none;
        }

        @media (max-width: 480px) {
            .chat-main-window {
                width: calc(100vw - 40px);
                right: 0;
            }
        }
