.chatbot-container {
            position: fixed;
            bottom:100px;
            right: 10px;
            z-index: 1000;
            width: 380px;
            max-width: 90vw;
        }
        
        .chatbot-toggle {
            background: linear-gradient(135deg, #1a365d 0%, #f59e0b 100%);
            color: white;
            border: none;
            border-radius: 50%;
            width: 70px;
            height: 70px;
            font-size: 28px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            float: right;
            transition: all 0.3s ease;
        }
        
        .chatbot-toggle:hover {
            transform: scale(1.1);
        }
        
        .chatbot-window {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            overflow: hidden;
            display: none;
            margin-bottom: 20px;
            height: 500px;
            flex-direction: column;
            border: 1px solid #e2e8f0;
        }
        
        .chatbot-header {
            background: linear-gradient(135deg, #1a365d 0%, #f59e0b 100%);
            color: white;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .chatbot-header h3 {
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
        }
        
        .close-chatbot {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }
        
        .chatbot-messages {
            flex-grow: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            background-color: #f8f9fa;
        }
        
        .message {
            margin-bottom: 15px;
            max-width: 80%;
            padding: 12px 18px;
            border-radius: 18px;
            line-height: 1.4;
            font-size: 15px;
        }
        
        .bot-message {
            background-color: white;
            border: 1px solid #e2e8f0;
            align-self: flex-start;
            color: #2d3748;
        }
        
        .user-message {
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
            color: white;
            align-self: flex-end;
        }
        
        .quick-options {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }
        
        .quick-option {
            background-color: #edf2f7;
            border: 1px solid #cbd5e0;
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .quick-option:hover {
            background-color: #1a365d;
            color: white;
            border-color: #1a365d;
        }
        
        .chatbot-input {
            padding: 20px;
            border-top: 1px solid #e2e8f0;
            display: flex;
            background-color: white;
        }
        
        .chatbot-input input {
            flex-grow: 1;
            padding: 12px 20px;
            border: 1px solid #cbd5e0;
            border-radius: 25px;
            font-size: 1rem;
            outline: none;
        }
        
        .chatbot-input input:focus {
            border-color: #1a365d;
        }
        
        .chatbot-input button {
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            margin-left: 10px;
            cursor: pointer;
            font-size: 20px;
        }
        
        .typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
}

.typing-indicator span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4a5568;
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-bounce {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    30% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

/* Message Transitions */
.message {
    animation: message-appear 0.3s ease-out;
}

@keyframes message-appear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar Styling */
.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* Responsive Design */
@media (max-width: 368px) {
    .footer-cont-btn i{
        display: none;
    }
    
}
@media (max-width: 480px) {
    .chatbot-container {
        width: 95vw;
        right: 2.5vw;
    }
    
    .chatbot-window {
        height: 450px;
    }
    
    .quick-options {
        flex-direction: column;
    }
    
    .quick-option {
        width: 100%;
        text-align: center;
    }
}

/* Minimal styling for easy integration */
        
        .gtb-popup-btn:hover {
            background-color: #0d264c;
        }
        
        .gtb-popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }
        
        .gtb-popup-container {
            background-color: white;
            width: 90%;
            max-width: 500px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            animation: gtbPopupSlide 0.3s ease;
        }
        
        .gtb-popup-header {
            background-color: #6e5029;
            color: white;
            padding: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 8px 8px 0 0;
        }
        
        .gtb-popup-title {
            font-size: 20px;
            font-weight: 600;
            margin: 0;
            color: #fff;
        }
        
        .gtb-popup-close {
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            line-height: 1;
            padding: 0;
        }
        
        .gtb-popup-content {
            padding: 25px;
        }
        
        .gtb-form-group {
            margin-bottom: 18px;
        }
        
        .gtb-form-label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: #333;
            font-size: 14px;
        }
        
        .gtb-form-input {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 15px;
        }
        
        .gtb-form-input:focus {
            outline: none;
            border-color: #1a3a6c;
        }
        
        .gtb-form-textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        .gtb-form-submit {
            background-color: #6e5029;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            width: 100%;
            transition: background-color 0.3s;
        }
        
        .gtb-form-submit:hover {
            background-color: #0d264c;
        }
        
        .gtb-required {
            color: #e53935;
        }
        
        .gtb-success-message {
            display: none;
            text-align: center;
            padding: 30px;
        }
        
        .gtb-success-icon {
            font-size: 40px;
            color: #4caf50;
            margin-bottom: 15px;
        }
        
        .gtb-success-text {
            font-size: 16px;
            color: #333;
            margin-bottom: 20px;
        }
        
        @keyframes gtbPopupSlide {
            from {
                opacity: 0;
                transform: translateY(-15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 600px) {
            .gtb-popup-container {
                width: 95%;
            }
            
            .gtb-popup-content {
                padding: 20px;
            }
            .cus-btn.sec {
    background-color: #6e5029 !important;
    padding: 8px !important;
}
        }

