.bot-chat-bg{
	background: rgba(0, 0, 0, 0.70);
	backdrop-filter: blur(20px);
	position: fixed;
	z-index: 99;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: none;
}

    #chatbotToggle {
      position: fixed;
        bottom: 21px;
    right: 21px;
     background: linear-gradient(135deg, #ffc600, #f3c624);
      color: white;
      border: none;
      border-radius: 30px;
      padding: 12px 24px;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      z-index: 999;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
    }

    #chatbotToggle:hover {
      opacity: 0.9;
    }

    #chatPopup {
      position: fixed;
      bottom: 90px;
      right: 25px;
      width: 350px;
      max-height: 520px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      display: none;
      flex-direction: column;
      overflow: hidden;
      z-index: 1000;
      transition: all 0.3s ease-in-out;
    }

    #chatHeader {
  background: linear-gradient(135deg, #021d3a, #388ae1);
      color: white;
      padding: 16px;
      font-weight: bold;
      font-size: 18px;
      text-align: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    #chatMessages {
      flex: 1;
      padding: 12px;
      overflow-y: auto;
      background: #f9f9f9;
    }

    .user-msg, .bot-msg {
      margin: 8px 0;
      padding: 10px 14px;
      border-radius: 18px;
      max-width: 80%;
      font-size: 14px;
      line-height: 1.4;
      word-wrap: break-word;
    }

    .user-msg {
      background-color: #daf1ff;
      color: #000;
      align-self: flex-end;
      margin-left: auto;
    }

    .bot-msg {
      background-color: #eeeeee;
      color: #333;
      align-self: flex-start;
      margin-right: auto;
    }

  .bot-msg  p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
  .bot-msg ul{
list-style: circle;
    padding-left: 15px;
    margin: 15px 0px;
}
.bot-msg ol{
list-style: inherit;
    padding-left: 15px;
}

.bot-msg  li::marker {
  color: #ffc600; /* Blue marker */
  }

    .typing-indicator {
      color: #888;
      font-style: italic;
      padding-left: 6px;
      animation: blink 1s infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 0.2; }
      50% { opacity: 1; }
    }

    #chatInputArea {
      display: flex;
      border-top: 1px solid #ddd;
      padding: 10px;
      background: #fff;
    }

    #chatInput {
      flex: 1;
      border: 1px solid #ccc;
      border-radius: 20px;
      padding: 8px 14px;
      font-size: 14px;
      outline: none;
      transition: border 0.2s;
    }

    #chatInput:focus {
      border-color: #007bff;
    }

    #sendBtn {
      background: #07294d;
      color: white;
      border: none;
      padding: 8px 16px;
      margin-left: 8px;
      border-radius: 20px;
      cursor: pointer;
      transition: background 0.3s;
    }

    #sendBtn:hover {
      color: #07294d;
    background-color: #ffc600;
    }

    #chatMessages::-webkit-scrollbar {
      width: 5px;
    }

    #chatMessages::-webkit-scrollbar-thumb {
      background: #ccc;
      border-radius: 10px;
    }


@media only screen and (max-width: 650px) {
	.bot-chat-bg.show{
	display:block;
}
    #chatPopup { 
  right: 2%;
  width: 96%;
  bottom: 70px;
  height: 80vh;
  max-height: inherits;
}
#chatbotToggle {
  bottom: 15px;
  right: 15px;
 
  padding: 9px 20px;
  font-size: 13px;
}
}