.hide-scrollbar::-webkit-scrollbar,
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar,
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Service cards */
.service-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 36px 28px;
  width: 100%;
  max-width: 360px;
  flex-shrink: 0;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@media (max-width: 767px) {
  .service-card {
    min-width: 280px;
    max-width: 320px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .service-card {
    width: 45%;
    min-width: 300px;
  }
}

@media (min-width: 1024px) {
  .service-card {
    width: 32%;
    min-width: 320px;
  }
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.service-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #5e6282;
  margin-bottom: 20px;
}

.read-btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 24px;
  background: #3a0ca3;
  color: #fff;
  font-size: 14px;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.read-btn:hover {
  background: #2d0980;
  transform: translateY(-2px);
}

/* Destination cards */
.destination-img {
  transform: scale(1.1);
  animation: slowFloat 14s ease-in-out infinite;
  transition: transform 0.8s ease;
}

@keyframes slowFloat {
  0% {
    transform: scale(1.1) translateY(0);
  }
  50% {
    transform: scale(1.15) translateY(-10px);
  }
  100% {
    transform: scale(1.1) translateY(0);
  }
}

.destination-card:hover .destination-img {
  transform: scale(1.25);
}

.destination-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.479), rgba(0, 0, 0, 0.25));
}

.destination-card .content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #fff;
  max-width: 80%;
  transition: transform 0.4s ease;
}

.destination-card:hover .content {
  transform: translateY(-6px);
}

.destination-card .content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.destination-card .content p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 12px;
}

.destination-card .content .btn {
  display: inline-block;
  padding: 10px 22px;
  background: #e41f24;
  color: #fff;
  border-radius: 24px;
  font-size: 14px;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.destination-card .content .btn:hover {
  background: #c81b1f;
  transform: translateY(-2px);
}
