/* Chat button bottom-left */
  #chat-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
  }
  #chat-toggle img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  /* Chat box */
  #chat-box {
    position: fixed;
    bottom: 80px;
    left: 20px;
    width: 320px;
    height: 420px;
    display: none;
    flex-direction: column;
    z-index: 9999;
    animation: fadeInUp 0.3s ease-in-out;
  }

  /* Messages */
  #messages {
    overflow-y: auto;
    flex: 1;
  }

  /* Bot message with avatar */
  .bot-message {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    animation: slideIn 0.3s ease-in-out;
  }
  .bot-message img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
  }
  .bot-text {
    background: #f1f1f1;
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 75%;
    font-size: 14px;
  }

  /* User message bubble */
  .user-message {
    align-self: flex-end;
    background: #153a9d;
    color: white;
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 75%;
    font-size: 14px;
    animation: slideInRight 0.3s ease-in-out;
  }

  /* Animations */
  @keyframes slideIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes slideInRight {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }





  /* glance css */
    .glance-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
  }
  .transition {
    transition: all 0.3s ease;
  }