/* Services Section */
.services-section {
  background: #181c2f;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}
.services-title {
  font-size: 2.5rem;
  color: #ff9500;
  margin-bottom: 10px;
}
.services-subtitle {
  font-size: 1.2rem;
  color: #8e9bb5;
  margin-bottom: 40px;
}
.services-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: #23263a;
  border-radius: 16px;
  padding: 32px 24px;
  min-width: 240px;
  flex: 1 1 280px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.2s, transform 0.2s;
}
.service-card:hover {
  background: #ff9500;
  color: #181c2f;
  transform: translateY(-6px) scale(1.04);
}

.service-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  object-fit: contain;
  padding: 6px;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #ff9500;
}



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

/* Responsive */
@media (max-width: 900px) {
  .services-categories {
    flex-direction: column;
    gap: 24px;
  }
  .service-card {
    min-width: 0;
  }
}