.services {
  padding: 50px 0;
  color: white;
}

.services__card {
  position: relative;
  border-radius: 30px;
  padding: 30px;
  background: #151126;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 6px;
  background: linear-gradient(135deg, #00c6ff, #ff00ff);
  border-radius: 30px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

.services__card:hover::before {
  opacity: 1;
}

.services__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
}

/* .services__card--active {
    border: 2px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, #00c6ff, #ff00ff);
  } */

.services__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1f1f2e;
  z-index: 2;
}

.services__icon img {
  max-width: 100%;
  height: auto;
}

.services__title {
  font-size: 22px;
  line-height: 34px;
  font-family: "Recoleta_Bold";
  margin-top: 20px;
}