body {
  font-family: "Cairo", sans-serif;
}

/* STEPS */
.steps-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  direction: rtl;
}

.step-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.step-btn span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid #d4d4d4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8b8b8;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.35s ease;
}

.step-btn small {
  font-size: 13px;
  color: #222;
}

.step-btn.active span {
  background: #16a34a;
  border-color: #16a34a;
  color: white;
}

.step-btn.active-outline span {
  background: white;
  border-color: #16a34a;
  color: #16a34a;
}

.step-btn.disabled-step span {
  background: white;
  border-color: #cfcfcf;
  color: #b8b8b8;
}

.step-line {
  width: 82px;
  height: 2px;
  background: #d3d3d3;
  margin-top: 27px;
  transition: all 0.35s ease;
}

.step-line.active-line {
  background: #16a34a;
}

/* SCROLL BUTTON */
.scroll-toggle {
  position: fixed;
  left: 50%;
  top: calc(100vh - 90px);
  transform: translateX(-50%);
  z-index: 9999;

  width: 28px;
  height: 54px;

  border: 2px solid #000;
  border-radius: 999px;
  background: #fff;

  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-toggle span {
  width: 7px;
  height: 7px;

  background: #000;
  border-radius: 50%;

  position: absolute;
  left: 50%;
  bottom: 10px;

  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.scroll-toggle:hover {
  transform: translateX(-50%) scale(1.08);
  border-color: #16a34a;
}

.scroll-toggle:hover span {
  background: #16a34a;
}
/* ///////////////////////////////////////////////////// */
/* SECTION */

.device-section {
  position: relative;
}

/* .global-shadow {
  position: absolute;

  right: 900px;
  bottom: -50px;

  width: 1100px;
  height: 700px;

  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.22) 0%,
    rgba(0, 0, 0, 0.12) 50%,
    rgba(0, 0, 0, 0.06) 55%,
    rgba(0, 0, 0, 0) 80%
  );

  pointer-events: none;
  z-index: 1;
} */

/* GALLERY */

.device-gallery {
  display: flex;
  align-items: center;
  gap: 56px;
}

.device-thumbs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.device-thumb {
  width: 45px;
  height: 72px;

  border: 1px solid transparent;
  border-radius: 8px;

  background: transparent;
  padding: 3px;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

.device-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.device-thumb:hover,
.device-thumb.active {
  border-color: #003c02;
  transform: scale(1.07);
}

.main-device-box {
  width: 360px;
  height: 430px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.main-device {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 20;
}

/* snypey  */
/* /////////////////////////// */

.syncpay-gallery {
  display: flex;
  align-items: center;
  gap: 45px;
}

.syncpay-main-box {
  width: 420px;
  height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.syncpay-main-device {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.syncpay-thumbs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.syncpay-thumb {
  width: 58px;
  height: 78px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  padding: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.syncpay-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.syncpay-thumb:hover,
.syncpay-thumb.active {
  border-color: #003c02;
  transform: scale(1.07);
}

/* smart  */
/* /////////////////////////// */

.smart-payment-gallery {
  display: flex;
  align-items: center;
  gap: 45px;
}

.smart-payment-main-box {
  width: 420px;
  height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smart-payment-main-device {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.smart-payment-thumbs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.smart-payment-thumb {
  width: 58px;
  height: 78px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  padding: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.smart-payment-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.smart-payment-thumb:hover,
.smart-payment-thumb.active {
  border-color: #003c02;
  transform: scale(1.07);
}


.active-nav {
  color: #16a34a;
  font-weight: 700;
}

.active-nav::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 3px;
  background: #16a34a;
  border-radius: 999px;
}
