body {
  font-family: "Segoe UI", system-ui, sans-serif;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.animate-slide {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: slide 105s linear infinite;
  will-change: transform;
}

/* Gallery */

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery-item {
  position: relative;
  flex: 1 0 calc(25% - 10px);
  max-width: calc(25% - 10px);
}

.gallery img {
  width: 100%;
  height: 200px !important;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

/* .carousel-item img {
          height: 600px !important;
      } */

@media (max-width: 768px) {
  .gallery-item {
    flex: 1 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

/* /Gallery */

a {
  text-decoration: none !important;
}

.discover-btn:hover {
  background-color: #8356f1 !important;
}

.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
}

.review-btn {
  background: #8356f1;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.review-btn:hover {
  background: #8153f3;
}
