/* === Chatbot Styles === */
#chatbot-toggle {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--primary-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: background 0.3s;
  z-index: 1000;
}

#chatbot-toggle:hover {
  background: var(--accent-orange);
}

#chatbot-container {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 320px;
  height: 420px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  overflow: hidden;
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
}

/* Header */
#chatbot-header {
  background: linear-gradient(90deg, #0f2385, #002104);
  color: #fff;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

#chatbot-header button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Messages area */
#chatbot-messages {
  padding: 10px;
  height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bot-message,
.user-message {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.bot-message {
  background: #343434;
  align-self: flex-start;
}

.user-message {
  background: var(--primary-blue);
  color: #fff;
  align-self: flex-end;
}

/* Input area */
#chatbot-input {
  display: flex;
  border-top: 1px solid #ddd;
}

#chatbot-input input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 0.9rem;
  outline: none;
}

#chatbot-input button {
  background: linear-gradient(90deg, #0f2385, #002104,);
  border: none;
  color: #101010;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 600;

}


/* === Chatbot Styles === */
#chatbot-toggle {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--primary-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: background 0.3s;
  z-index: 1000;
}

#chatbot-toggle:hover {
  background: linear-gradient(45deg, #0F2385 0%, #0b7c35 100%);
}

#chatbot-container {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 320px;
  height: 420px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  overflow: hidden;
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
}

/* Header */
#chatbot-header {
  background: linear-gradient(90deg, #0f2385, #002104);
  color: #fff;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

#chatbot-header button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Messages area */
#chatbot-messages {
  padding: 10px;
  height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bot-message,
.user-message {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.bot-message {
  background: #343434;
  align-self: flex-start;
}

.user-message {
  background: var(--primary-blue);
  color: #fff;
  align-self: flex-end;
}

/* Input area */
#chatbot-input {
  display: flex;
  border-top: 1px solid #ddd;
}

#chatbot-input input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 0.9rem;
  outline: none;
}

#chatbot-input button {
  background: linear-gradient(90deg, #0f2385, #002104,);
  border: none;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 600;
  margin-right:20px;

}






/* Chatbot */
#chatbot-toggle {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: linear-gradient(135deg, #0F2385, #002104);
  color: #fff;
  border: none;
  width: 60px;
  height: 60px;
  font-size: 26px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: 0.3s;
}

#chatbot-container {
  position: fixed;
  bottom: 90px;
  right: 18px;
  width: 340px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  z-index: 9999;
}

#chatbot-header {
  background: linear-gradient(135deg, #0F2385, #002104);
  color: #fff;
  padding: 12px 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

#chatbot-messages {
  max-height: 320px;
  overflow-y: auto;
  padding: 12px;
}

.bot-message, .user-message {
  padding: 10px 14px;
  margin-bottom: 8px;
  border-radius: 10px;
  max-width: 80%;
  font-size: 14px;
}

.bot-message {
  background: #e8edff;
  color: #0F2385;
  text-align: left;
}

.user-message {
  background: #0F2385;
  color: #fff;
  text-align: right;
  margin-left: auto;
}

#chatbot-input {
  display: flex;
  padding: 10px;
  border-top: 1px solid #eee;
}

#user-input {
  flex: 1;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 6px;
}

#send-btn {
  background: #0F2385;
  border: none;
  color: #fff;
  margin-left: 8px;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.quick-btn {
  padding: 6px 10px;
  background: #002104;
  color: #fff;
  font-size: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}