.elementor-123 .elementor-element.elementor-element-4aca2e1{--display:flex;--margin-top:-30px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-123 .elementor-element.elementor-element-f3118eb{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-3a195ea *//* =============================================
   BTLK AI CHATBOT - FINAL PROFESSIONAL CSS
   Optimized for Mobile, Keyboard & Speed
============================================== */

/* --- 1. Base Colors & Variables --- */
:root {
    --navy: #0A2342;
    --black: #000000;
    --gold: #F4D35E;
    --white: #F7F7FF;
    --glass: rgba(10, 35, 66, 0.85); /* Thora dark glass behtar visibility ke liye */
    --gold-glow: rgba(244, 211, 94, 0.35);
    --btlk-muted-white: rgba(247, 247, 255, 0.88);
}

/* --- 2. Widget Reset --- */
#btlk-chat-widget * {    
    box-sizing: border-box; 
}
#btlk-chat-widget {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    z-index: 99999; /* Sabse oopar rakhne ke liye */
}

/* --- 3. Toggle Button (Bubble) --- */
#btlk-chat-widget #btlk-chat-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
#btlk-chat-widget #btlk-chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px var(--gold-glow);
}
#btlk-chat-widget #btlk-chat-toggle .open-icon { display: block; }
#btlk-chat-widget #btlk-chat-toggle .close-icon { display: none; }

#btlk-chat-widget.open #btlk-chat-toggle .open-icon { display: none; }
#btlk-chat-widget.open #btlk-chat-toggle .close-icon { display: block; }

/* --- 4. Chat Window (Main Container) --- */
#btlk-chat-widget #btlk-chat-window {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 380px; /* Thora standard width */
    max-width: 90%;
    height: 600px; /* Default desktop height */
    max-height: 80vh;
    background: var(--glass);
    border: 1px solid rgba(244, 211, 94, .2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .4);
    z-index: 9999;
    
    display: flex;
    flex-direction: column;
    
    /* Animation States */
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

#btlk-chat-widget.open #btlk-chat-window {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

/* --- 5. Header Section --- */
#btlk-chat-widget .chat-header {
    flex-shrink: 0; 
    padding: 18px 20px;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(244, 211, 94, .15);
    border-radius: 18px 18px 0 0;
    display: flex;
    align-items: center;
    gap: 15px;
}
#btlk-chat-widget .header-icon { font-size: 1.6rem; color: var(--gold); }
#btlk-chat-widget .header-title h3 { color: var(--white); font-size: 1.2rem; font-weight: 700; margin: 0; }
#btlk-chat-widget .header-title .gold { color: var(--gold); }
#btlk-chat-widget .header-title p { color: var(--btlk-muted-white); font-size: 0.8rem; margin: 0; opacity: 0.8; }

/* --- 6. Messages Area --- */
#btlk-chat-widget #chat-messages {
    flex-grow: 1; 
    overflow-y: auto; 
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
}

/* Scrollbar Styling */
#btlk-chat-widget #chat-messages::-webkit-scrollbar { width: 6px; }
#btlk-chat-widget #chat-messages::-webkit-scrollbar-track { background: transparent; }
#btlk-chat-widget #chat-messages::-webkit-scrollbar-thumb { background: rgba(244, 211, 94, 0.3); border-radius: 10px; }

/* Message Bubbles */
#btlk-chat-widget .chat-message {
    padding: 12px 16px;
    border-radius: 12px;
    line-height: 1.5;
    font-size: 0.95rem;
    max-width: 85%;
    word-wrap: break-word;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
#btlk-chat-widget .chat-message.user {
    background: var(--gold);
    color: var(--navy);
    border-radius: 12px 12px 0 12px;
    align-self: flex-end;
    font-weight: 600;
}
#btlk-chat-widget .chat-message.bot {
    background: rgba(255,255,255,0.95);
    color: #333;
    border-radius: 12px 12px 12px 0;
    align-self: flex-start;
}

/* Bot Message Formatting */
#btlk-chat-widget .chat-message.bot strong { color: var(--navy); font-weight: 700; }
#btlk-chat-widget .chat-message.bot a { color: var(--navy); font-weight: 700; text-decoration: underline; }
#btlk-chat-widget .chat-message.bot ul { margin: 8px 0 0 20px; padding: 0; }
#btlk-chat-widget .chat-message.bot li { margin-bottom: 4px; }

/* WhatsApp Button */
#btlk-chat-widget .chat-message.bot a.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 16px;
    background: #25D366;
    color: white !important;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s;
}
#btlk-chat-widget .chat-message.bot a.whatsapp-btn:hover {
    transform: translateY(-2px);
    background: #1ebc57;
}

/* Typing Indicator */
#btlk-chat-widget .chat-message.typing {
    background: rgba(255,255,255,0.5);
    padding: 12px 16px;
    width: fit-content;
}
#btlk-chat-widget .typing-dot {
    display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    background: var(--navy); margin: 0 2px;
    animation: typing 1.4s infinite ease-in-out both;
}
#btlk-chat-widget .typing-dot:nth-child(1) { animation-delay: -0.32s; }
#btlk-chat-widget .typing-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes typing { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }

/* --- 7. Input Area --- */
#btlk-chat-widget .chat-input-area {
    flex-shrink: 0; 
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0,0,0,0.4);
    border-radius: 0 0 18px 18px;
    display: flex;
    gap: 10px;
    align-items: flex-end; 
}

#btlk-chat-widget #chat-input {
    flex-grow: 1;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255,255,255,0.1);
    border-radius: 24px; 
    padding: 12px 18px;
    font-size: 0.95rem;
    color: var(--white);
    resize: none;
    max-height: 120px; 
    outline: none;
}
#btlk-chat-widget #chat-input::placeholder { color: rgba(255,255,255,0.6); }
#btlk-chat-widget #chat-input:focus { border-color: var(--gold); background: rgba(0,0,0,0.6); }

#btlk-chat-widget #chat-send-btn {
    flex-shrink: 0;
    width: 45px; height: 45px;
    border: none; border-radius: 50%;
    background: var(--gold); color: var(--navy);
    font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
#btlk-chat-widget #chat-send-btn:hover { transform: scale(1.05); background: #fff; }
#btlk-chat-widget #chat-send-btn:disabled { background: #666; cursor: not-allowed; }

/* ===============================
   MOBILE & KEYBOARD FIXES
================================*/
@media (max-width: 600px) {
    /* 1. Make Window Full Screen */
    #btlk-chat-widget #btlk-chat-window {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0; /* Full Screen Anchor */
        width: 100% !important;
        max-width: 100% !important;
        height: 100dvh !important; /* Dynamic Height for Mobile Browsers */
        max-height: 100dvh !important;
        border-radius: 0;
        margin: 0;
    }

    /* 2. Remove Border Radius on Header/Footer for seamless look */
    #btlk-chat-widget .chat-header {
        border-radius: 0;
        padding-top: max(15px, env(safe-area-inset-top)); /* Notch Support */
    }
    #btlk-chat-widget .chat-input-area {
        border-radius: 0;
        padding-bottom: max(15px, env(safe-area-inset-bottom)); /* Home Bar Support */
    }

    /* 3. Adjust Toggle Button Position */
    #btlk-chat-widget #btlk-chat-toggle {
        bottom: 20px;
        right: 20px;
        width: 55px; height: 55px;
    }

    /* 4. Font Sizing for Mobile */
    #btlk-chat-widget .header-title h3 { font-size: 1.1rem; }
    #btlk-chat-widget .chat-message { font-size: 0.9rem; padding: 10px 14px; }
}

/* 1. Toggle Button with "ALIVE" Animation */
        #btlk-chat-toggle { 
            width: 60px; height: 60px; 
            border-radius: 50%; 
            background: linear-gradient(135deg, #0A2342 0%, #1a3c6e 100%); 
            border: 2px solid #F4D35E;
            color: #F4D35E; 
            font-size: 26px; 
            cursor: pointer; 
            /* Shadow Pulse Animation added */
            box-shadow: 0 0 0 0 rgba(244, 211, 94, 0.7);
            animation: pulse-gold 2s infinite;
            
            display: flex; align-items: center; justify-content: center; 
            position: relative;
            z-index: 10000;
        }

        /* Robot Icon Floating Animation */
        #btlk-chat-toggle .fa-robot {
            animation: robot-float 3s ease-in-out infinite;
        }

        #btlk-chat-toggle:hover { 
            transform: scale(1.1); 
            animation: none; /* Hover par animation ruk jaye */
        }
        
        #btlk-chat-toggle .close-icon { display: none; }
        #btlk-chat-widget.open #btlk-chat-toggle .open-icon { display: none; }
        #btlk-chat-widget.open #btlk-chat-toggle .close-icon { display: block; transform: rotate(90deg); transition: transform 0.3s; }

        /* --- ANIMATIONS (KEYFRAMES) --- */
        
        /* 1. Gold Pulse (Dhadkan) */
        @keyframes pulse-gold {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(244, 211, 94, 0.7);
            }
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 15px rgba(244, 211, 94, 0);
            }
            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(244, 211, 94, 0);
            }
        }

        /* 2. Robot Float (Hawa mein teirna) */
        @keyframes robot-float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-3px) rotate(-5deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }/* End custom CSS */