/* Styles pour les cartes de services cliquables */
.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  color: #2c4964;
}

a.text-decoration-none {
  color: inherit;
  text-decoration: none;
}

a.text-decoration-none:hover .service-card {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(107, 0, 128, 0.15);
  border-color: #6b0080;
}

a.text-decoration-none:hover .service-icon {
  transform: scale(1.1);
}

a.text-decoration-none:hover .service-link {
  color: #6b0080;
}

.service-link {
  color: #6b0080;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-link i {
  transition: transform 0.3s ease;
}

a.text-decoration-none:hover .service-link i {
  transform: translateX(5px);
}

.service-title {
  color: #2c4964;
  transition: color 0.3s ease;
}

a.text-decoration-none:hover .service-title {
  color: #6b0080;
}
