/* Start custom CSS for html, class: .elementor-element-c2b23a9 */.services-section {
  direction: rtl;
  max-width: 1150px;
  margin: 80px auto;
  padding: 0 24px;
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #6366f1;
  background: #eef2ff;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.services-header h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 14px;
  line-height: 1.4;
}

.services-header p {
  font-size: 16px;
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.service-card--featured {
  border-color: #6366f1;
  background: linear-gradient(160deg, #fafafe 0%, #f0f0ff 100%);
  box-shadow: 0 8px 32px rgba(99,102,241,0.12);
}

.service-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #6366f1;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: #f3f4f6;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
}

.service-card--featured .service-icon {
  background: #e0e7ff;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.5;
}

.service-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.9;
  margin: 0;
  flex: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #374151;
}

.service-features li svg {
  color: #10b981;
  flex-shrink: 0;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s;
}

.service-cta:hover {
  gap: 10px;
}

/* CTA پایین */
.services-bottom-cta {
  background: #111827;
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.services-bottom-cta p {
  font-size: 17px;
  font-weight: 500;
  color: #f9fafb;
  margin: 0;
  line-height: 1.7;
}

.services-bottom-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: "Vazirmatn", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary {
  background: #6366f1;
  color: #fff;
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #f9fafb;
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-primary:hover, .btn-secondary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-bottom-cta { flex-direction: column; text-align: center; }
  .services-bottom-actions { justify-content: center; }
}/* End custom CSS */