/* ==== Services Section ==== */

.service-card {
  background-color: #1e1e1e;
  border: 1px solid #2a2a2a;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  background-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 0 10px #BCFB6C55;
}

.service-card:hover .card-number {
  background-color: #1e1e1e;
  color: #BCFB6C;
}

.card-number {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: #BCFB6C;
  color: #27272F;
  font-weight: bold;
  padding: 10px;
  border-radius: 12px;
  font-size: 1.1rem;
  transition: 0.3s ease;
}

