/* Deep Chat Widget - Initially Hidden */
deep-chat {
  border-radius: 10px;
  bottom: 30px;
  right: 20px;
  display: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

deep-chat.active {
  display: block;
}

/* Floating Chatbot Icon */
#chatbot-icon {
  position: fixed;
  bottom: 20px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #003366;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

#chatbot-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

#chatbot-icon img {
  width: 80px;
  height: 80px;
}

#chatbot-icon.hidden {
  display: none;
}


