.services-section {
  background: #0d1019;
  color: white;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.services-subtitle {
  text-align: center;
  color: #22c55e;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.services-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.services-divider {
  border-top: 2px solid #22c55e;
  width: 4rem;
  margin: 0 auto 2.5rem;
}

.services-desc {
  text-align: center;
  color: #d1d5db;
  max-width: 768px;
  margin: 0 auto 5rem;
  font-size: 1.125rem;
}

.center-glow-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 480px;
  background: linear-gradient(to bottom, #22c55e, transparent);
  border-radius: 9999px;
  filter: blur(20px);
  z-index: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  position: relative;
  background: #0d1019;
  border: 1px solid #22c55e;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
  border-radius: 0.75rem;
  padding: 1.5rem;
  max-width: 350px;
  min-height: 245px;
  margin: 0 auto;
  transition: 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 0 45px rgba(34, 197, 94, 0.6);
  transform: scale(1.03);
}

.service-card h3 {
  color: #22c55e;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #d4d4d8;
  font-size: 1rem;
}

.service-card img {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 100px;
  opacity: 0.6;
}
