.services-hero {
  padding: 200px 20px;
  text-align: center;

  color: #fff;
}

.services-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.services-hero p {
  max-width: 700px;
  margin: auto;
  opacity: 0.85;
}

/* SERVICES GRID */
.services-section {
  padding: 60px 20px;
  background: #02000a;
}

.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 30px 25px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card i {
  font-size: 2.4rem;
  color: #4da3ff;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(77,163,255,0.25);
}

/* CTA */
.services-cta {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0b0f2f, #02000a);
  color: #fff;
}

.services-cta h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.services-cta p {
  opacity: 0.9;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #4da3ff;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #6bb6ff;
}

/* MOBILE */
@media (max-width: 600px) {
  .services-hero h1 {
    font-size: 2rem;
  }
}
