.services-section {
  direction: rtl;
  padding: 80px 5%;
  background: #f6f7f9;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #1f2d3d;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card .icon {
  font-size: 36px;
  display: inline-block;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1f2d3d;
}

.service-card p {
  font-size: 14px;
  color: #6b7280;
}
