/* Custom Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Smooth scrolling animations */
.benefit-item {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#main-header {
  letter-spacing: 0.5px;
}

.benefit-item.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* About section decorative boxes animation */
.about-deco-box {
  transition: transform 0.3s ease-out;
}

/* Card hover effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Header scroll effect */
#main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid #ffcc00;
}

/* Service carousel cards */
.service-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  transition: all 0.5s ease;
}

.service-card.side-card {
  opacity: 0.6;
  transform: scale(0.85);
}

.service-card.center-card {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .service-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}
