/* ------------------------------------------------------------------------------------- */
 /* body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
} */



body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* .body-bg-img{
    background-image: url('https://www.nmttechnologies.com/uploads/images/orginal-logo2.png');
    background-size: contain;   
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    
} */



/* .body-bg-img {
    background-image: url('https://www.nmttechnologies.com/uploads/images/orginal-logo2.png');
    background-size: 70%; 
    background-position: center; 
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
} */



.body-bg-img {
    background-image: url('https://www.nmttechnologies.com/uploads/images/orginal-logo2.png');
    
    /* Adjust size to your liking */
    background-size: 50%; 
    
    /* Move it to the left: 20% from left, 50% from top (center) */
    background-position: 40% 50%; 
    
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}




.chatbot-container {
    width: 320px; 
    height: 450px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* background: white; */
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth minimize */;
}

/* Minimize State */
.chatbot-container.minimized {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
}
/* Floating Open Button */
.open-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4a90e2;
    color: white;
    font-size: 24px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: none; /* Shown via JS */
}


.chat-header {
    background: #4a90e2;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.chat-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    
}

.chat-input {
    padding: 10px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around; 
    align-items: center;
}

#mic-btn {
    font-size: 14px; 
    cursor: pointer;
    border: none;
    background: #4a90e2;
    color: white;
    width: 90px;
    height: 60px;
    border-radius: 15px;
}

#red_button {
    background-color: red;
    border-radius: 15px;
    width: 70px;
    height: 60px;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

#chat-trigger-btn {
    background-color: rgb(176, 44, 148);
    border-radius: 15px;
    width: 70px;
    height: 60px;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
}


#mic-btn { background: #4a90e2; width: 110px; }
#red_button { background-color: red; width: 90px; }
#chat-trigger-btn { background-color: rgb(176, 44, 148); width: 80px; }


.welcome-text {
    font-size: 16px; 
    color: #555;
    text-align: center;
    padding: 20px;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}