.transition-smooth {
  transition: all 0.3s ease-in-out;
}
.hover-lift:hover {
  transform: translateY(-5px);
}
/* Custom spacing to match 'breathable' luxury feel */
.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

/* Slider Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 5)); }
}
.logo-slider {
  display: flex;
  width: calc(250px * 10);
  animation: scroll 40s linear infinite;
}
.logo-slider:hover {
  animation-play-state: paused;
}
.slide {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
