/* Service Cards Base */
.service-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 2px dashed #d1d5db;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Icon Groups */
.icons-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Icon Animations on Card Hover */
.group:hover .left-icon {
  transform: translateX(-20px) rotate(-10deg);
}

.group:hover .center-icon {
  transform: translateY(-10px) scale(1.15);
}

.group:hover .right-icon {
  transform: translateX(20px) rotate(10deg);
}

/* Primary Button */
.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #d1d5db;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  background: white;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.primary-btn:hover {
  background: #f3f4f6;
  transform: scale(1.03);
  border-color: #9ca3af;
}