/* Add this CSS to your style section or CSS file */

.uniqueCard:hover .service {
  background: linear-gradient(to right, #4E73DF, #1cc88a) !important;
}

.uniqueCard:hover .service-icon {
  color: white !important;
}

.specialLink {
  text-decoration: none;
}

.uniqueCard:hover {
  border-color: #4e73df;
  box-shadow: 0 0 10px rgba(78, 115, 223, 0.5);
}

.uniqueCard {
  border: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.specialImage {
  filter: invert(0);
  transition: filter 0.1s ease;
}

.specialLink:hover .specialImage {
  filter: invert(1);
}

