.services {
  padding: 100px 60px;
  background: #f4f7fb;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2b6cb0;
  margin-bottom: 12px;
}

.services-header h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #3d4a5c;
  margin-bottom: 14px;
}

.services-subtitle {
  font-size: 1rem;
  color: #777777;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px;
  width: 280px;
  border: 1px solid #e8edf5;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(43, 108, 176, 0.12);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: #e8f0fb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b6cb0;
  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #3d4a5c;
}

.service-card p {
  font-size: 0.9rem;
  color: #777777;
  line-height: 1.75;
}

/* Starting state — cards are invisible and shifted down */
.service-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When JavaScript adds this class, the card becomes visible */
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}