.namaa-sjourney {
  width: 100%;
  background-color: var(--section-bg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .namaa-sjourney {
    padding: 60px 0;
  }
}
.namaa-sjourney__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 991px) {
  .namaa-sjourney__container {
    padding: 0 16px;
  }
}
.namaa-sjourney__header {
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  .namaa-sjourney__header {
    margin-bottom: 36px;
  }
}
.namaa-sjourney__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  font-family: var(--font-family-base);
}
.rtl .namaa-sjourney__eyebrow {
  font-family: var(--font-family-rtl);
}
.namaa-sjourney__title {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-family-base);
  color: var(--dark);
  margin: 0 0 16px 0;
  line-height: 1.3;
}
.rtl .namaa-sjourney__title {
  font-family: var(--font-family-rtl);
}
@media (max-width: 991px) {
  .namaa-sjourney__title {
    font-size: 22px;
  }
}
.namaa-sjourney__desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .namaa-sjourney__desc {
    max-width: 100%;
    font-size: 14px;
  }
}
.namaa-sjourney__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-text);
  background: var(--primary);
  padding: 5px 10px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.namaa-sjourney__cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.namaa-sjourney__cta svg {
  transition: transform 0.25s ease;
}
.namaa-sjourney__cta:hover svg {
  transform: translateX(3px);
}
.rtl .namaa-sjourney__cta svg {
  transform: scaleX(-1);
}
.rtl .namaa-sjourney__cta svg {
  transform: scaleX(-1) translateX(0);
}
.rtl .namaa-sjourney__cta:hover svg {
  transform: scaleX(-1) translateX(-3px);
}
.namaa-sjourney__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .namaa-sjourney__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .namaa-sjourney__grid {
    grid-template-columns: 1fr;
  }
}

.namaa-sjourney-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 24px;
  padding: 32px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  height: 100%;
  min-height: 180px;
}
.namaa-sjourney-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}
.namaa-sjourney-card:hover .namaa-sjourney-card__number {
  background-color: var(--primary);
  color: var(--primary-text);
}
.namaa-sjourney-card:hover .namaa-sjourney-card__arrow {
  transform: translateX(-4px);
}
.namaa-sjourney-card__decor {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.04;
  pointer-events: none;
}
.dark-mode .namaa-sjourney-card__decor {
  opacity: 0.06;
}
.namaa-sjourney-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background-color: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-family-base);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: all 0.35s ease;
}
.rtl .namaa-sjourney-card__number {
  font-family: var(--font-family-rtl);
}
.namaa-sjourney-card__title {
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-family-base);
  color: var(--dark);
  line-height: 1.3;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rtl .namaa-sjourney-card__title {
  font-family: var(--font-family-rtl);
}
@media (max-width: 991px) {
  .namaa-sjourney-card__title {
    font-size: 18px;
  }
}
.namaa-sjourney-card__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-500);
  margin: 0 0 auto 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.namaa-sjourney-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}
.namaa-sjourney-card__link:hover {
  color: var(--accent);
}
.namaa-sjourney-card__link svg {
  transition: transform 0.3s ease;
}
.namaa-sjourney-card__link:hover svg {
  transform: translateX(-4px);
}
.rtl .namaa-sjourney-card__link svg {
  transform: scaleX(-1);
}
.rtl .namaa-sjourney-card__link:hover svg {
  transform: scaleX(-1) translateX(-4px);
}

@keyframes sjFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.namaa-sjourney-card {
  opacity: 0;
  animation: sjFadeUp 0.6s ease forwards;
}

.namaa-sjourney-card:nth-child(1) {
  animation-delay: 0ms;
}

.namaa-sjourney-card:nth-child(2) {
  animation-delay: 120ms;
}

.namaa-sjourney-card:nth-child(3) {
  animation-delay: 240ms;
}

.namaa-sjourney-card:nth-child(4) {
  animation-delay: 360ms;
}

.namaa-sjourney-card:nth-child(5) {
  animation-delay: 480ms;
}

.namaa-sjourney-card:nth-child(6) {
  animation-delay: 600ms;
}

@media (prefers-reduced-motion: reduce) {
  .namaa-sjourney-card {
    animation: none;
    opacity: 1;
  }
  .namaa-sjourney-card:hover {
    transform: none;
  }
  .namaa-sjourney-card__arrow {
    transition: none;
  }
  .namaa-sjourney-card__number {
    transition: none;
  }
}
.rtl .namaa-sjourney-card__decor {
  right: auto;
  left: -20px;
}
