.services {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 5rem 2rem;
  font-family: 'Poppins', sans-serif;
}

#particlesCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

.services h2, .services-content {
  position: relative;
  z-index: 2;
}



.services-image img {

  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}


.card {
  background: rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-5px); }

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge {
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  font-size: 0.8rem;
}
.badge.available { background: #4caf50; }
.badge.offline { background: #f44336; }
.badge.coming-soon { background: #ff9800; }

@media (max-width: 900px) {
  .services-content { flex-direction: column; align-items: center; }
  .services-image img { width: 80%; margin-bottom: 2rem; }
}