 
	
	    :root {
        --primary-color: #c0932e;
        --secondary-color: #1E282C;
        --light-bg: #F9F9F9;
        --text-color: #FFFFFF;
        --input-bg: #2B3E47;
        --border-radius: 15px;
    }

    .chatbot-container {
        display: block;
        width: 400px;
        background: var(--secondary-color);
        border-radius: var(--border-radius);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin: 20px auto;
        font-family: 'Tajawal', sans-serif;
        color: var(--text-color);
        position: relative;
    }

    .chatbot-header {
     background: rgba(255, 255, 255, 0.46);
        padding: 15px 20px;
        text-align: center;
        color: var(--text-color);
        font-weight: bold;
        border-top-left-radius: var(--border-radius);
        border-top-right-radius: var(--border-radius);
    }

 
.chatbot-input-container input {
    flex-grow: 1;
    border: none;
    border-radius: 20px;
    padding: 10px;
    outline: none;
    font-family: 'Tajawal';
    text-align: right;
    direction: rtl;
}
    .chatbot-conversation-container {
        height: 450px;
        background: var(--light-bg);
        padding: 10px 15px;
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .chatbot-conversation-container::-webkit-scrollbar {
        width: 6px;
    }

    .chatbot-conversation-container::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 3px;
    }

    .speech {
        padding: 10px 15px;
        margin: 10px 0;
        max-width: 80%;
        font-size: 14px;
        border-radius: var(--border-radius);
        line-height: 1.5;
    }

    .speech-human {
        background: var(--primary-color);
        color: var(--text-color);
        margin-left: auto;
        border-top-right-radius: 0;
    }

    .speech-ai {
        background: var(--input-bg);
        color: var(--text-color);
        margin-right: auto;
        border-top-left-radius: 0;
    }

    .chatbot-input-container {
        display: flex;
        align-items: center;
        background: var(--input-bg);
        padding: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .chatbot-input-container input {
        flex: 1;
        padding: 10px 15px;
        border: none;
        border-radius: var(--border-radius);
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-color);
        font-size: 14px;
        outline: none;
    }

    .chatbot-input-container input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .chatbot-input-container button {
        margin-left: 10px;
        background: var(--primary-color);
        border: none;
        padding: 10px;
        border-radius: var(--border-radius);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
        transition: background 0.3s;
    }

    .chatbot-input-container button:hover {
        background: darken(var(--primary-color), 10%);
    }

    .chatbot-input-container button svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: var(--text-color);
        stroke-width: 2;
    }
	
        :root {
            --border-rad-lg: 15px;
            --light-text: #fefefe;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        html, body {
            margin: 0;
            padding: 0;
            font-family: 'Tajawal', sans-serif;
        }

        /* Floating Icon */
        .chatbot-float-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #e1e1e1;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            z-index: 99999;
			 transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
   .chatbot-float-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    }
        .chatbot-float-btn img {
         
            height: 60px;
        }
    /* Tooltip Styling */
    .chatbot-float-btn:hover::after {
        content: "اسأل سؤالك";
        position: absolute;
        bottom: 50%; /* Vertically center relative to the button */
        right: 75px; /* Position to the left of the button */
        transform: translateY(50%);
        background: var(--tooltip-bg);
        color: var(--tooltip-text);
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
        white-space: nowrap;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        z-index: 99999;
    }
        /* Chatbot Container */
        .chatbot-container {
		transition: bottom 0.5s ease;
            display: none; /* Initially hidden */
            position: fixed;
            bottom: 75px;
            right: 20px;
            width: 400px;
            background-color: #171f26;
            border-radius: var(--border-rad-lg);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            z-index: 99999;
			 transition: opacity 0.5s ease, height 0.5s ease;
        }

        .chatbot-header {
            text-align: center;
        
            padding: 10px;
            color: white;
        }

        .chatbot-header .logo {
         
            height: auto;
        }

        .chatbot-conversation-container {
            padding: 10px;
            height: 450px;
            overflow-y: auto;
            background-color: #1E282C;
            color: white;
        }

        .speech-human {
            text-align: right;
      
        }

        .speech-ai {
            text-align: right;
          
        }

        .chatbot-input-container {
            display: flex;
            padding: 10px;
            background-color: #2B3E47;
        }

        .chatbot-input-container input {
            flex-grow: 1;
            border: none;
            border-radius: 20px;
            padding: 10px;
            outline: none;
			    margin-left: 5px;
        }

        .chatbot-input-container button {
            background-color: #c0932e;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 5px;
            cursor: pointer;
        }

        .chatbot-input-container button svg {
         
            width: 20px;
            height: 20px;
        }
 