.services-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #0a0a23, #1f1f3d);
  color: #fff;
}
.services-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.services-hero p {
  font-size: 1.2rem;
  color: #ccc;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.service-card {
  background: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card h3 {
  color: #ff6b00;
  margin-bottom: 15px;
}
.service-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}
