/* GLOBAL */
body {
  font-family: 'Inter', sans-serif;
  background: black;
}

/* HEADING ANIMATION */
@keyframes glowMove {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

#services h2 span:last-child span {
  animation: glowMove 2s ease-in-out infinite;
}

/* ================= SERVICES CARD ================= */
.service-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.25s ease;
}

/* GOLDEN GLOW BORDER */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;

  background: linear-gradient(
    120deg,
    rgba(251,146,60,0.6),
    rgba(253,224,71,0.3),
    transparent,
    rgba(251,146,60,0.6)
  );

  background-size: 200% 200%;
  animation: borderMove 4s linear infinite;

  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* BORDER ANIMATION */
@keyframes borderMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* HOVER (NO SCALE) */
.service-card:hover {
  box-shadow: 0 0 22px rgba(251,146,60,0.25);
  border-color: rgba(251,146,60,0.4);
}

/* TYPOGRAPHY */
.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;

  background: linear-gradient(to right, #fb923c, #facc15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.5;
}

/* ================= ICON ================= */
.service-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;

  background: rgba(251,146,60,0.1);
  margin-bottom: 12px;

  box-shadow: 0 0 12px rgba(251,146,60,0.25);
}