
/*Vsiting Place*/

.places-showcase {
  padding: 70px 0;
  background: #fff;
}

/* Same base slider reused */
.place-card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* DIFFERENT hover effect */
.place-card:hover {
  transform: scale(1.08) rotate(0.3deg);
  box-shadow: 0 25px 60px rgba(255, 152, 0, 0.45);
  z-index: 5;
}

.place-card .overlay h3 {
  font-size: 21px;
}

.place-card .overlay p {
  font-size: 14px;
  opacity: 0.95;
}
