/* Services Card Block Styles */

.services-card-section {
  position: relative;
}

.services-card-item {
  animation-fill-mode: both;
}

.services-card-item .services-card-item {
  /* Nested card styles if needed */
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.services-card-item:hover {
  transform: translateY(-8px);
}

/* Ensure animations work properly */
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
