.section-title {
  color: #ff00ff;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif;
  margin-bottom: 50px;
}

.service-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  margin-bottom: 40px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #00c6ff, #ff00ff, #00c6ff);
  background-size: 200% auto;
  animation: gradientBorder 3s linear infinite;
}

@keyframes gradientBorder {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.service-icon-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-icon i {
  font-size: 36px;
  background: linear-gradient(45deg, #00c6ff, #ff00ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.4s ease;
}

.service-box:hover .service-icon i {
  transform: rotate(50deg) scale(1.5);
}

.service-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(to right, #00c6ff, #ff00ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}

.service-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.service-arrow i {
  font-size: 22px;
  color: #fff;
  transition: all 0.4s ease;
}

.service-box:hover .service-arrow i {
  color: #00c6ff;
  transform: translateX(5px) scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
  .service-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .service-arrow {
    align-self: flex-end;
  }
}
