/* Service Cards Hover Effect */
#our-services-section .eyebrow {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}

/* Desktop hover effect */
#our-services-section .card-link:hover .eyebrow {
  opacity: 1;
  max-height: 500px;
  margin-top: 0.5rem;
}

/* Mobile/Touch active state */
#our-services-section .card-link.active .eyebrow {
  opacity: 1;
  max-height: 500px;
  margin-top: 0.5rem;
}

/* Smooth transition for the entire card */
#our-services-section .card-link {
  transition: transform 0.3s ease;
}

#our-services-section .card-link:hover,
#our-services-section .card-link.active {
  transform: translateY(-5px);
}

/* Ensure smooth experience on touch devices */
@media (hover: none) and (pointer: coarse) {
  #our-services-section .card-link:hover .eyebrow {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
  }
}
