/* Custom Animations & Styles */

/* Mobile menu slide-in animation */
@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in {
  animation: slideIn 0.3s ease-out;
}

/* Service card hover effect */
.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Hero overlay */
.hero-overlay {
  background: linear-gradient(135deg, rgba(31, 33, 36, 0.8) 0%, rgba(63, 68, 75, 0.6) 100%);
}

/* Swiper custom styles */
.swiper-button-next,
.swiper-button-prev {
  color: #3f444b !important;
}

.swiper-pagination-bullet-active {
  background-color: #3f444b !important;
}

/* Form input focus states */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #3f444b;
  box-shadow: 0 0 0 3px rgba(63, 68, 75, 0.1);
}

/* Smooth transitions for all interactive elements */
a, button, .card {
  transition: all 0.3s ease-in-out;
}
