:root {
    --main-color: #024CAA;
    --second-color: #EC8305;
}

/* شكل السكرول بار */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  background: var(--body)
}

/* الخلفية */
::-webkit-scrollbar-track {
  background: var(--body);
  border-radius: 10px;
}

/* الجزء اللي بيتحرك */
::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, var(--second-color), var(--main-color));
  border-radius: 10px;
  border: 2px solid var(--body);
  transition: background 0.3s ease;
}

/* عند الهوفر */
::-webkit-scrollbar-thumb:hover {
  background: var(--main-color);
}

/* سكرول ناعم */
html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--second-color);
  color: white;
}

.s-slider-block__title h2 {
  font-size: 1.9rem; 
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, var(--main-color), var(--second-color), var(--main-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
}

.s-slider-block__title h2::after {
  content: "";
  display: block;
  width: 80%;
  height: 4px;
  background: linear-gradient(to right, var(--main-color), transparent);
  margin: 8px auto 0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .s-slider-block__title h2 {
    font-size: 18px;
  }
}

@keyframes shine {
  0% { background-position: -200px; }
  100% { background-position: 200px; }
}













/* شبكة الإنجازات */
.injazes {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* موبايل: 2 */
  gap: 20px;
  justify-items: center;
  justify-content: center;
  align-items: start;
} /* تابلت */
@media (min-width: 768px) {
  .injazes {
    grid-template-columns: repeat(2, 1fr);
  }
  .injazes .injaz:last-child {
    grid-column: auto; /* يرجع طبيعي */
    justify-self: auto;
  }
} /* ديسكتوب */
@media (min-width: 1024px) {
  .injazes {
    grid-template-columns: repeat(4, 1fr);
  }
} /* شكل الإنجاز */
.injaz {
  position: relative;
  text-align: center;
  padding-top: 70px; /* مساحة للأيقونة */
  min-width: 100%;
  padding-bottom: 15px;
  transition: all 0.3s ease;
}
.injaz:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
} /* الأيقونة */
.injaz::before {
  font-family: "sallaicons"; /* خط أيقونات سلة */
  font-size: 35px;
  color: #ec8305;
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%); /* أنيميشن الطفو */
  animation: floatIcon 3s ease-in-out infinite;
} /* كل إنجاز وليه أيقونة */
.injaz:nth-child(1)::before {
  content: "\ec7b";
} /* users */
.injaz:nth-child(2)::before {
  content: "\e903";
} /* cart */
.injaz:nth-child(3)::before {
  content: "\ef63";
} /* smile */
.injaz:nth-child(4)::before {
  content: "\eb08";
} /* box */ /* نخلي الإنجاز التالت (عميل سعيد) نجوم بدل الأرقام */
.injaz:nth-child(3) .injaz_count_outer {
  display: none; /* نخفي الأرقام */
}
.injaz:nth-child(3) .injaz_name::before {
  content: "95%"; /* النسبة */
  display: block;
  font-size: 22px;
  color: var(--main-color); /* دهبي */
  margin-bottom: 5px;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
} /* الطفو */
@keyframes floatIcon {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}