
/* Hero */
.service-hero {
  background: linear-gradient(to right, #001f3f, #0077ff);
  color: #fff;
  text-align: center;
  padding: 100px 20px 60px;
}

.service-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.service-hero p {
  color: #ddd;
}

/* Content */
.intro {
  text-align: center;
  max-width: 800px;
  margin: 40px auto 60px;
  color: #555;
  line-height: 1.6;
}

/* Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}


.card {
  background: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 119, 255, 0.2);
}

.card img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.card h3 {
  color: #0077ff;
  margin-bottom: 8px;
}

.card p {
  color: #333;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .service-hero h1 { font-size: 2rem; }
  .intro { font-size: 0.95rem; }
  .card img { width: 60px; height: 60px; }
}
