@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Fira+Code:wght@300..700&family=Inconsolata:wght@200..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Arabic:wght@100..900&family=Orbitron:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&family=Tajawal:wght@200;300;400;500;700;800;900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/*/////////////////////////*/
/*///////// MAIN //////////*/
/*/////////////////////////*/
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;

  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

html {
  height: 100%;
  font-family: sans-serif;

  box-sizing: border-box;
  /* يضمن أن الحواف والحشوات لا تؤثر على أبعاد العنصر */
  scroll-behavior: smooth;
  /* يحسن تجربة التمرير */
  -webkit-text-size-adjust: 100%;
  /* يمنع تكبير النصوص التلقائي على الهواتف */

  font-size: 100%;
}

body {
  font-size: var(--font-size-base);
  /* حجم النص الأساسي (16px) */
  color: var(--text-color);
  /* لون نص مريح للعين */
  background-color: var(--background-color);
  /* خلفية محايدة */
  margin: 0 auto;
  /* يركز المحتوى في المنتصف */
  /* max-width: 1200px; */
  /* يمنع تمدد النصوص على الشاشات العريضة */
  min-height: 100vh;
  /* يضمن أن الصفحة تملأ الشاشة دائمًا */
  overflow-x: hidden;
}


/*/////////////////////////*/
/*////  Grid /////*/
/*/////////////////////////*/
body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "navbar navbar"
    "main main"
    "footer footer";
}



my-header {
  grid-column: 1 / -1;
  /* جعل الهيدر يمتد بعرض الشبكة بالكامل */
}

my-main {
  grid-area: main;
}

my-footer {
  grid-column: 1 / -1;
  /* جعل الهيدر يمتد بعرض الشبكة بالكامل */
  width: 100%;
}

#cursor {
  font-weight: 400;
  animation: blink 1s linear infinite;
  padding: 2px;
}

.hero-section-container {
  background-color: #2a2a2e;
  width: 100%;
  color: #f7f7f7;
  height: 100vh;
}

.split-up {
  width: 100%;
  height: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5vw;
  font-weight: 600;
  letter-spacing: 2px;
}

.split-down {
  width: 100%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
}

.split-left {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.split-left-img-container {
  width: 75%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  align-content: flex-start;

}

.split-left-img-container img {
  width: 100%;
  max-width: 70%;
  display: block;
  object-fit: cover;
  margin: 0;
}

.split-right {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  padding: 0.2em;
}

.split-right-title {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  width: 85%;
  height: 60%;
  text-align: left;
}

.first-text {
  font-size: 2vw;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;

}

.second-text {
  font-size: 2vw;
  font-weight: 600;
  text-transform: uppercase;
  color: #00b7ff;
  margin: 0.5rem 0 0.5rem 0;

}

.split-right-details {
  display: flex;
  justify-content: flex-start;
  align-items:flex-start;
  flex-direction: column;
  width: 85%;
  height: 40%;
  padding: 0;
  font-family: "Exo 2", sans-serif;

}

.third-text {
  font-size: 1.2vw;
  margin: 0;
  text-align: left;
  line-height: 2;
  font-family: "Exo 2", sans-serif;


}



@media only screen and (max-width: 992px) {
  .hero-section-container {
    background-color: #2a2a2e;
    width: 100%;
    color: #f7f7f7;
    height: 100vh;
  }

  .split-up {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.1vw;
    font-weight: 600;
    letter-spacing: 2px;
  }

  .split-down {
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
  }

  .split-left {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .split-left-img-container {
    width: 85%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    align-content: flex-start;

  }

  .split-left-img-container img {
    width: 100%;
    max-width: 70%;
    display: block;
    object-fit: cover;
    margin: 0;
  }

  .split-right {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    padding: 0.2em;
  }

  .split-right-title {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    width: 95%;
    height: 60%;
    text-align: left;
  }

  .first-text {
    font-size: 2.1vw;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
  }

  .second-text {
    font-size: 2.1vw;
    font-weight: 600;
    text-transform: uppercase;
    color: #00b7ff;
    margin: 0.5rem 0 0.5rem 0;
  }

  .split-right-details {
    display: flex;
    justify-content: flex-start;
    align-items:flex-start;
    flex-direction: column;
    width: 95%;
    height: 40%;
    padding: 0;
  }

  .third-text {
    font-size: 1.3vw;
    margin: 0;
    text-align: left;
    line-height: 2;
  }


}


@media only screen and (max-width: 768px) {

  .hero-section-container {
    background-color: #2a2a2e;
    width: 100%;
    color: #f7f7f7;
    height: 100vh;

  }

  .split-up {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6vw;
    font-weight: 600;
    letter-spacing: 2px;
  }

  .split-down {
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .split-left {
    width: 100%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .split-left-img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .split-left-img-container img {
    width: 100%;
    max-width: 35%;
    display: block;
    object-fit: cover;
    margin: auto;
  }

  .split-right {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .split-right-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin: 0;
  }

  .first-text {
    font-size: 4vw;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
  }

  .second-text {
    font-size: 3vw;
    font-weight: 600;
    text-transform: uppercase;
    color: #00b7ff;
  }

  .split-right-details {
    display: flex;
    justify-content: center;
  align-items:center;
    flex-direction: column;
    width: 100%;
    padding: 1.5em 2em 1.5em 2em;
  }

  .third-text {
    font-size: 2vw;
    margin: 0;
    text-align: center;
  }
}

@media only screen and (max-width: 600px) {

  .hero-section-container {
    background-color: #2a2a2e;
    width: 100%;
    color: #f7f7f7;
    height: 100vh;

  }

  .split-up {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6vw;
    font-weight: 600;
    letter-spacing: 2px;
  }

  .split-down {
    width: 100%;
    height: 90%;
  }

  .split-left {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .split-left-img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .split-left-img-container img {
    width: 100%;
    max-width: 55%;
    display: block;
    object-fit: cover;
    margin: auto;
  }

  .split-right {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0.2em;
  }

  .split-right-title {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 35%;
  }

  .first-text {
    font-size: 4vw;
    font-weight: 600;
    margin: 0 auto;
    text-transform: uppercase;
    margin: 0 auto 0 auto;
  }

  .second-text {
    font-size: 3.5vw;
    font-weight: 600;
    text-transform: uppercase;
    color: #00b7ff;
  }

  .split-right-details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 55%;
    padding: 0 1em;
  }

  .third-text {
    font-size: 2.5vw;
    margin: 0 auto;
    text-align: center;
  }
}

@media only screen and (max-width: 500px) {

  .hero-section-container {
    background-color: #2a2a2e;
    width: 100%;
    color: #f7f7f7;
    height: 100vh;

  }

  .split-up {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10vw;
    font-weight: 600;
    letter-spacing: 2px;
  }

  .split-down {
    width: 100%;
    height: 90%;
  }

  .split-left {
    width: 100%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .split-left-img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .split-left-img-container img {
    width: 100%;
    max-width: 50%;
    display: block;
    object-fit: cover;
    margin: auto;
  }

  .split-right {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0.2em;
  }

  .split-right-title {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }

  .first-text {
    font-size: 5vw;
    font-weight: 600;
    margin: 0 auto;
    text-transform: uppercase;
    margin: 0 auto 0 auto;
  }

  .second-text {
    font-size: 5vw;
    font-weight: 600;
    text-transform: uppercase;
    color: #00b7ff;
  }

  .split-right-details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 0 0.6em;
  }

  .third-text {
    font-size: 3vw;
    margin: 0 auto;
    text-align: center;
    padding: 0 0;
  }
}


@media only screen and (max-width: 400px) {

  .hero-section-container {
    background-color: #2a2a2e;
    width: 100%;
    color: #f7f7f7;
    height: 100vh;
  }

  .split-up {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10vw;
    font-weight: 600;
    letter-spacing: 2px;
  }

  .split-down {
    width: 100%;
    height: 90%;
  }

  .split-left {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .split-left-img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .split-left-img-container img {
    width: 100%;
    max-width: 70%;
    display: block;
    object-fit: cover;
    margin: auto;
  }

  .split-right {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0.2em;
  }

  .split-right-title {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 35%;
  }

  .first-text {
    font-size: 7vw;
    font-weight: 600;
    margin: 0 auto;
    text-transform: uppercase;
    margin: 0 auto 0 auto;
  }

  .second-text {
    font-size: 5.5vw;
    font-weight: 600;
    text-transform: uppercase;
    color: #00b7ff;
  }

  .split-right-details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 65%;
    padding: 0 0.6em;
  }

  .third-text {
    font-size: 4vw;
    margin: 0 auto;
    text-align: center;
    padding: 0 0;
  }
}


@media only screen and (max-width: 350px) {

  .hero-section-container {
    background-color: #2a2a2e;
    width: 100%;
    color: #f7f7f7;
    height: 100vh;

  }

  .split-up {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14vw;
    font-weight: 600;
    letter-spacing: 2px;
  }

  .split-down {
    width: 100%;
    height: 90%;
  }

  .split-left {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .split-left-img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .split-left-img-container img {
    width: 100%;
    max-width: 90%;
    display: block;
    object-fit: cover;
    margin: auto;
  }

  .split-right {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0.2em;
  }

  .split-right-title {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 35%;
  }

  .first-text {
    font-size: 7vw;
    font-weight: 600;
    margin: 0 auto;
    text-transform: uppercase;
    margin: 0 auto 0 auto;
  }

  .second-text {
    font-size: 5.5vw;
    font-weight: 600;
    text-transform: uppercase;
    color: #00b7ff;
  }

  .split-right-details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 65%;
    padding: 0 0.6em;
  }

  .third-text {
    font-size: 4vw;
    margin: 0 auto;
    text-align: center;
    padding: 0 0;
  }
}


/* الصور أثناء التحميل */
img.lazy {
  opacity: 0;
  transform: scale(0.95);
  filter: blur(5px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

/* عندما تكتمل الصورة تحميلها */
img.loaded {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.spinner {
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  text-indent: -9999em;
  animation: mulShdSpin 1.1s infinite ease;
  z-index: 2;
  /* تأكد أنها فوق الصورة */
}

.retry-button {
  background: #007bff;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.retry-button:hover {
  background: #0056b3;
}

@keyframes mulShdSpin {

  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #888888,
      1.8em -1.8em 0 0em rgba(136, 136, 136, 0.4),
      2.5em 0em 0 0em rgba(136, 136, 136, 0.4),
      1.75em 1.75em 0 0em rgba(136, 136, 136, 0.4),
      0em 2.5em 0 0em rgba(136, 136, 136, 0.4),
      -1.8em 1.8em 0 0em rgba(136, 136, 136, 0.4),
      -2.6em 0em 0 0em rgba(136, 136, 136, 0.7),
      -1.8em -1.8em 0 0em rgba(136, 136, 136, 0.9);
  }

  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(136, 136, 136, 0.9),
      1.8em -1.8em 0 0em #888888,
      2.5em 0em 0 0em rgba(136, 136, 136, 0.4),
      1.75em 1.75em 0 0em rgba(136, 136, 136, 0.4),
      0em 2.5em 0 0em rgba(136, 136, 136, 0.4),
      -1.8em 1.8em 0 0em rgba(136, 136, 136, 0.4),
      -2.6em 0em 0 0em rgba(136, 136, 136, 0.4),
      -1.8em -1.8em 0 0em rgba(136, 136, 136, 0.7);
  }

  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(136, 136, 136, 0.7),
      1.8em -1.8em 0 0em rgba(136, 136, 136, 0.9),
      2.5em 0em 0 0em #888888,
      1.75em 1.75em 0 0em rgba(136, 136, 136, 0.4),
      0em 2.5em 0 0em rgba(136, 136, 136, 0.4),
      -1.8em 1.8em 0 0em rgba(136, 136, 136, 0.4),
      -2.6em 0em 0 0em rgba(136, 136, 136, 0.4),
      -1.8em -1.8em 0 0em rgba(136, 136, 136, 0.4);
  }

  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(136, 136, 136, 0.4),
      1.8em -1.8em 0 0em rgba(136, 136, 136, 0.7),
      2.5em 0em 0 0em rgba(136, 136, 136, 0.9),
      1.75em 1.75em 0 0em #888888,
      0em 2.5em 0 0em rgba(136, 136, 136, 0.4),
      -1.8em 1.8em 0 0em rgba(136, 136, 136, 0.4),
      -2.6em 0em 0 0em rgba(136, 136, 136, 0.4),
      -1.8em -1.8em 0 0em rgba(136, 136, 136, 0.4);
  }

  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(136, 136, 136, 0.4),
      1.8em -1.8em 0 0em rgba(136, 136, 136, 0.4),
      2.5em 0em 0 0em rgba(136, 136, 136, 0.7),
      1.75em 1.75em 0 0em rgba(136, 136, 136, 0.9),
      0em 2.5em 0 0em #888888,
      -1.8em 1.8em 0 0em rgba(136, 136, 136, 0.4),
      -2.6em 0em 0 0em rgba(136, 136, 136, 0.4),
      -1.8em -1.8em 0 0em rgba(136, 136, 136, 0.4);
  }

  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(136, 136, 136, 0.4),
      1.8em -1.8em 0 0em rgba(136, 136, 136, 0.4),
      2.5em 0em 0 0em rgba(136, 136, 136, 0.4),
      1.75em 1.75em 0 0em rgba(136, 136, 136, 0.7),
      0em 2.5em 0 0em rgba(136, 136, 136, 0.9),
      -1.8em 1.8em 0 0em #888888,
      -2.6em 0em 0 0em rgba(136, 136, 136, 0.4),
      -1.8em -1.8em 0 0em rgba(136, 136, 136, 0.4);
  }

  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(136, 136, 136, 0.4),
      1.8em -1.8em 0 0em rgba(136, 136, 136, 0.4),
      2.5em 0em 0 0em rgba(136, 136, 136, 0.4),
      1.75em 1.75em 0 0em rgba(136, 136, 136, 0.4),
      0em 2.5em 0 0em rgba(136, 136, 136, 0.7),
      -1.8em 1.8em 0 0em rgba(136, 136, 136, 0.9),
      -2.6em 0em 0 0em #888888,
      -1.8em -1.8em 0 0em rgba(136, 136, 136, 0.4);
  }

  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(136, 136, 136, 0.4),
      1.8em -1.8em 0 0em rgba(136, 136, 136, 0.4),
      2.5em 0em 0 0em rgba(136, 136, 136, 0.4),
      1.75em 1.75em 0 0em rgba(136, 136, 136, 0.4),
      0em 2.5em 0 0em rgba(136, 136, 136, 0.4),
      -1.8em 1.8em 0 0em rgba(136, 136, 136, 0.7),
      -2.6em 0em 0 0em rgba(136, 136, 136, 0.9),
      -1.8em -1.8em 0 0em #888888;
  }
}



/* اجعل العنصر الأب (slider-item) position: relative لضمان تموضع الـ spinner */
.slider-item {
  position: relative;

}

/* Keyframes للدوارن */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}




.cleint-portfolios-section {
  background-color: #f7f7f7;

  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 100px 0px 50px 0px;
}


.section-container-header {
  text-transform: uppercase;
  margin-bottom: 75px;
  text-align: center;
  font-size: 24px;
  max-width: 80%;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 2px;
  position: relative;
  width: 100%;
  color: #474747;
  opacity: 0.5;

}

.section-container-header::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #474747;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 0;
  opacity: 0.5;
}

.section-container-header span {
  padding: 0 20px;
  background-color: #f7f7f7;
  position: relative;
  z-index: 2;
  border-left: 5px solid #f7f7f7;
  border-right: 5px solid #f7f7f7;

}


/*/////////////////////////*/
/*//// HORIZONTAL RULE ////*/
/*/////////////////////////*/

hr.hrhr {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 1px;
  background-color: #f7f7f7;
  border: none;
  opacity: 1;
}


.sapr {
  color: #f7f7f7;
  opacity: 0.3;
}

.hr-div {
  width: 100%;
  height: 10px;
  padding: 20px 50px;
  ;
}


.single-cleint-portfolio-container {
  background-color: #ffffff;

  padding: 15px;
  width: 100%;
  max-width: 46%;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 0 0rem 0.01rem #0001;

}

.cleint-portfolio-title {
  align-items: start;
  justify-content: center;
  flex-direction: column;
  width: 100%;

  margin-bottom: 10px;
}

.cleint-portfolio-project-date {
  color: #58595b;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: 13px;
}

.cleint-portfolio-label {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #58595b;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
}

.cleint-portfolio-details {
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: #58595b;
  font-family: "Montserrat", sans-serif;

  font-size: 13px;

  font-weight: 400;
}

.cleint-portfolio-link:link,
.cleint-portfolio-link:visited,
.cleint-portfolio-link:hover,
.cleint-portfolio-link:active,
.cleint-portfolio-link:focus {
  text-decoration: none;
  color: #00b7ff;
  font-weight: 400;
  font-family: "Exo 2", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* تنسيقات wrapper للسلايدر */
.slider-wrapper {
  position: relative;
  width: 100%;
  border-radius: 4px;
}

/* تنسيقات حاويات السلايدر */
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f2f2f2;
  direction: ltr;
  /* لترتيب الشرائح بالشكل الطبيعي */
  -webkit-overflow-scrolling: touch;
  touch-action: none;
  aspect-ratio: 2/1.5;
  border-radius: 4px;
  touch-action: pan-y;
  /* يسمح بالتمرير العمودي بشكل افتراضي */
}

.slide-indicator {
  /* 1. Positioning */
  position: absolute;
  z-index: 10;
  top: 10px;
  right: 10px;
  width: 50px;

  /* 2. Box Model */
  padding: 3px 0;
  border-radius: 4px;

  /* 3. Background & Effects */
  background: rgba(155, 155, 155, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  /* 4. Shadows */
  -webkit-box-shadow: 2px 0px 3px 0px rgba(88, 89, 91, 0.2);
  -moz-box-shadow: 2px 0px 3px 0px rgba(88, 89, 91, 0.2);
  box-shadow: 0 0.2rem 0.2rem -0.2rem #0001;

  /* 4. Flexbox */
  display: flex;
  align-items: center;
  justify-content: center;

  /* 5. Typography */
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  color: #f9f9f9;
  text-transform: uppercase;

}

.slide-title {
  /* 1. Positioning */
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;

  width: 100%;
  /* 2. Box Model */
  padding: 8px 14px;

  /* 3. Background & Effects */
  background: rgba(155, 155, 155, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  /* 4. Shadows */
  -webkit-box-shadow: 2px 0px 3px 0px rgba(88, 89, 91, 0.2);
  -moz-box-shadow: 2px 0px 3px 0px rgba(88, 89, 91, 0.2);
  box-shadow: 0 0.2rem 0.2rem -0.2rem #0001;

  /* 4. Flexbox */
  display: flex;
  align-items: center;
  justify-content: center;

  /* 5. Typography */
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 400;
  color: #f9f9f9;
  text-transform: uppercase;

}

.slider-track {
  display: flex;
  cursor: grab;
  /* لو ظهر تسريب ~0.5px على اليمين */
  margin-right: 0px;
}

.slider-track:active {
  cursor: grabbing;
  border: none;
}

.slider-item {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 2/1.5;
  padding: 0;
  width: 100%;
}

.slider-item img {
  display: block;
  width: 100%;
  aspect-ratio: 2/1.5;
  object-fit: cover;
  -webkit-user-drag: none;
  /* user-drag: none; */
  border: none;
  background: none;
}



.error-message {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #eee;
  color: #333;
  font-size: 16px;
}

.retry-button {
  background: rgba(155, 155, 155, 0.5);
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
}

.retry-button:hover {
  background: rgba(155, 155, 155, 0.8);
}

/* تنسيق أزرار التنقل خارج منطقة الحاوية */
/* تنسيق أزرار التنقل خارج منطقة الحاوية */
.nav-button {
  /* Positioning */
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);

  /* Flexbox Centering */
  display: flex;
  justify-content: center;
  align-items: center;

  /* Size & Shape */
  width: 50px;
  height: 50px;
  padding: 15px;
  border-radius: 50%;

  /* 3. Background & Effects */
  background: rgba(155, 155, 155, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  /* 4. Shadows */
  -webkit-box-shadow: 2px 0px 3px 0px rgba(88, 89, 91, 0.2);
  -moz-box-shadow: 2px 0px 3px 0px rgba(88, 89, 91, 0.2);
  box-shadow: 0 0.2rem 0.2rem -0.2rem #0001;

  /* Interactivity */
  cursor: pointer;
  border: none;
  touch-action: manipulation;
}



/* في هذه الحالة توضع الأزرار خارج الحاوية بواسطة wrapper */
.nav-prev {
  left: -20px;
}

.nav-next {
  right: -20px;
}


.nav-button-back {
  fill: #f9f9f9;
}

.nav-button-arrow {
  fill: #f9f9f9;
  width: 10px;
}


@media only screen and (max-width: 992px) {
  .cleint-portfolios-section {
    padding: 100px 0px 50px 0px;
  }

  .single-cleint-portfolio-container {
    background-color: #ffffff;
    padding: 10px;
    width: 100%;
    max-width: 46%;
    margin: 15px;

  }

  .cleint-portfolio-title {
    margin-bottom: 6px;
  }

  .cleint-portfolio-project-date {
    font-size: 12px;
  }

  .cleint-portfolio-label {
    font-size: 13px;
  }

  .cleint-portfolio-details {
    font-size: 12px;
  }


  .slide-indicator {
    top: 8px;
    right: 8px;
  }

  /* تنسيق أزرار التنقل خارج منطقة الحاوية */
  .nav-button {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  /* في هذه الحالة توضع الأزرار خارج الحاوية بواسطة wrapper */
  .nav-prev {
    left: -15px;
  }

  .nav-next {
    right: -15px;
  }

  .nav-button-arrow {
    width: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .cleint-portfolios-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 100px 0px 50px 0px;
  }

  .single-cleint-portfolio-container {
    width: 100%;
    max-width: 100%;
    padding: 45px 0 0px 0px;
    border-radius: 0;
    margin: 0;
  }

  .cleint-portfolio-title {
    align-items: start;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 10px;
  }

  .slider-container {
    border-radius: 0px;
  }

  /* تنسيق أزرار التنقل خارج منطقة الحاوية */
  .nav-button {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  /* في هذه الحالة توضع الأزرار خارج الحاوية بواسطة wrapper */
  .nav-prev {
    left: 5px;
  }

  .nav-next {
    right: 5px;
  }

  .text-container {

    margin-left: 10px;
  }
}