/* Tawk Chatbot starts */
.tawk-btn-desktop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 12px 16px;
  background: #4c4cff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  z-index: 9999;
  display: inline-block;
}

.tawk-btn-mobile {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  background-color: #4c4cff;
  border: none;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  cursor: pointer;
}

.tawk-btn-mobile img {
  width: 24px;
  height: 24px;
}

.chat-whisper {
  position: fixed;
  bottom: 85px;
  right: 20px;
  background: #ffffff;
  color: #111;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9998;
  max-width: 200px;
  text-align: left;
  display: flex;
  align-items: center;
  visibility: hidden;
}

.chat-whisper.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

@media (max-width: 768px) {
  .tawk-btn-desktop {
    display: none;
  }

  .tawk-btn-mobile {
    display: flex;
  }
}
/* Tawk Chatbot ends */