/* Floating Button */
.ai-assistant-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1f6fb2;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    text-decoration: none;
    z-index: 9999;
    transition: all 0.2s ease;
    cursor: pointer;
}

.ai-assistant-btn:hover {
    background: #154f85;
    transform: translateY(-2px);
    text-decoration: none;
    color: #ffffff;
}

.ai-assistant-btn img {
    width: 26px;
    height: 26px;
    background: #ffffff;
    border-radius: 50%;
    padding: 4px;
}

/* Chat Box */
.ai-chat-box {
padding:0px;margin-top: 13px;
}

/* Header */
.ai-chat-header {
    background: #0e1b30;
    color: #ffffff;
    padding: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 14px 14px 0 0;
}

.ai-chat-header span {
    cursor: pointer;
    font-size: 18px;
    opacity: 0.85;
}

.ai-chat-header span:hover {
    opacity: 1;
}

/* Body */
.ai-chat-body {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    background: #132044;
    height:70vh;
}

/* Messages */
.ai-msg {
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    max-width: 80%;
    font-size: 14px;
    line-height: 1.4;
}

.ai-msg.bot {
    background: #203263;
    color: #fff;
}

.ai-msg.bot p{color:#f1f1f1;font-size:14px}
.ai-msg.bot h6{color:#f1f1f1;font-size:16px}

.ai-msg.user {
    background: #d6ecff;
    color: #0e1b30;
    margin-left: auto;
}

/* Footer */
.ai-chat-footer {
    display: flex;
    padding: 10px;
    border-top: 1px solid #32468f;
    background: #243264;
}

.ai-chat-footer input {
    flex: 1;
    border: none;
    padding: 8px 10px;
    outline: none;
    font-size: 14px;
  background: #182553; color: #fff;
}

.ai-chat-footer a {
    background: #16c2c2;
    color: #ffffff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    margin-left: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ai-chat-footer button:hover {
    background: #129e9e;
}

/* Scrollbar (Optional – Nice touch) */
.ai-chat-body::-webkit-scrollbar {
    width: 6px;
}

.ai-chat-body::-webkit-scrollbar-track {
    background: #eaf0f7;
}

.ai-chat-body::-webkit-scrollbar-thumb {
    background: #b9cbe0;
    border-radius: 4px;
}

