/* Chatbot Icon */
.chatbot-icon {
    position: fixed;
    bottom: 30px;
    right: 20px;
    /* background: #0d6efd; */
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    font-size: 28px;
  }
  
  /* Chatbot Window */
  .chatbot-window {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;   /* fixed width */
    max-width: 27%; /* mobile responsive */
    height: 450px;
    display: none;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    z-index: 102 !important;
  }

  @media (max-width: 767px) {
    .chatbot-window {
      position: fixed;
      bottom: 80px;
      right: 20px;
      max-width: 73%; /* mobile responsive */
      height: 450px;
      display: none;
      flex-direction: column;
      border-radius: 12px;
      overflow: hidden;
      z-index: 102 !important;
    }
    
    .bot-message {
    text-align: left;
    margin: 5px 0;
    padding: 6px 10px;
    background: #eeeeee;
    color: black;
    display: inline-block;
    border-radius: 12px;
    max-width: 90%;
  }
    
  }
  
  /* Messages */
  .chatbot-messages {
    height: 330px;
    overflow-y: auto;
    font-size: 14px;
  }
  
  /* User & Bot Messages */
  .user-message {
    text-align: right;
    margin: 5px 0;
    padding: 6px 10px;
    background: #e9ecef;
    display: inline-block;
    border-radius: 12px;
    max-width: 75%;
  }
  
  .bot-message {
    text-align: left;
    margin: 5px 0;
    padding: 6px 10px;
    background: #eeeeee;
    color: black;
    display: inline-block;
    border-radius: 12px;
    width: 300px;
  }
  
  .bot-message .quick-btn {
    display: inline-block;
    margin: 4px 4px 0 0;
  }

  /* Scrollbar Styling */
  .chatbot-messages::-webkit-scrollbar {
    width: 6px;
  }
  .chatbot-messages::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }
  

  .quick-btn {
    margin-top: 5px;
    font-size: 12px;
    padding: 4px 8px;
    /*border-radius: 20px;*/
    transition: font-weight 0.1s ease-in-out;
  }
  

  .icon-sm {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain; /* image ko distort hone se bachata hai */
}

.self-border:hover{
  font-weight: 600;
  color:red;
 }

.btn-gradient {
            background: linear-gradient(45deg, #ff5b81, #ff6b51);
            color: white;
            border: none;
            transition: 0.3s;
        }

        .btn-gradient:hover {
            background: linear-gradient(45deg, #f03e1e, #e2305a);
            color: white;
        }
 