.services-section {
  background: #0c0c0c;
  color: #fff;
  padding: 90px 0;
  font-family: 'Poppins', sans-serif;
}

.services-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.services-title span {
  color: #e6b65c;
}

.services-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
}

.services-desc {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.8;
}

/* Service container */
.services-box {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  background: linear-gradient(135deg, #1a1a1a, #2b1d26);
  padding: 35px;
  border-radius: 18px;
}

/* Individual service */
.service-item {
  text-align: center;
  padding: 30px 10px;
  border-radius: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.service-item h5 {
  font-size: 1rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .services-box {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .services-title {
    font-size: 2.2rem;
  }

  .services-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
