.tour-card img {
  height: 200px;
  object-fit: cover;
}

.tour-card .btn-outline-danger {
  border-width: 2px;
}

/* Add this to your style.css */
.bg-orange {
  background-color: #ff6b00 !important;
  /* Choose your desired orange shade */
  color: white;
}

.btn-orange {
  background-color: #ff6b00 !important;
  border-color: #ff6b00 !important;
  color: white;
}

.btn-orange:hover,
.btn-outline-orange:hover {
  background-color: #e55d00 !important;
  color: white !important;
}

.btn-outline-orange {
  color: #ff6b00;
  border-color: #ff6b00;
  background-color: transparent;
}

.btn-outline-orange:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.5);
}

/* WhatsApp Button Styles */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: bounce 2s infinite;
  transition: transform 0.3s;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

/* Bounce Animation */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}