@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Aref+Ruqaa:wght@400;700&family=Cabin:ital,wght@0,400..700;1,400..700&display=swap");

body {
  /* direction: rtl; */
  font-family: "Almarai", serif;
}
nav {
  z-index: 520;
  .navbar-brand{
    width: 64px;
    height: 64px;
  }
  a {
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    color: #19182580 !important;
  }
  .navbar button {
    border: #000000 solid 2px !important;
    color: #000 !important;
    padding: 10px !important;
  }
  .navbar-toggler-icon {
    background-image: none;
    background-color: #000;
    width: 30px;
    height: 3px;
    position: relative;
  }
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    display: block;
    background-color: #000;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
  }

  .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler-icon::after {
    top: 8px;
  }
  .download {
    width: 134px;
    height: 48px;
    border-radius: 8px;
    background-color: #f39930;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    border: none;
  }
}
@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column !important;
    text-align: right;
  }

  .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }

  .download {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  .collapse {
    display: none;
  }

  .collapse.show {
    display: block;
  }
}
header {
  width: 100%;
  height: 100vh;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: background-image 1s ease-in-out;

  .layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    h1 {
      font-weight: 700;
      font-size: 100px;
      color: #ffffff;
      font-family: "Aref Ruqaa", serif;
    }

    h4 {
      color: #ffffff;
      font-size: 24px;
      font-weight: 700;
      font-family: "Almarai", serif;
    }
  }
}

@media (max-width: 768px) {
  header {
    height: 80vh;

    h1 {
      font-size: 48px !important;
    }

    h4 br {
      display: none;
    }
  }
}


.app {
  h4 {
    font-weight: 800;
    font-size: 40px;
    color: #0f172a;
  }

  p {
    font-weight: 400;
    font-size: 18px;
    color: #0f172a;
    text-align: justify;
    text-align-last: right;
  }

  .image-one,
  .image-two,
  .image-three {
    border-radius: 12px;
    overflow: hidden;

    img {
      border-radius: 12px;
      width: 100%;
      object-fit: cover;
    }
  }

  .image-one,
  .image-one img {
    height: 350px;
  }

  .image-two,
  .image-two img {
    height: 240px;
  }

  .image-three {
    height: 350px;
  }

  .image-three img {
    height: 240px;
  }

  @media (max-width: 768px) {
    h4 {
      font-size: 28px;
    }

    p {
      font-size: 16px;
      text-align: right;
    }

    .image-one,
    .image-one img {
      height: 220px;
    }

    .image-two,
    .image-two img {
      height: 180px;
    }

    .image-three {
      height: 220px;
    }

    .image-three img {
      height: 180px;
    }
  }

  @media (max-width: 480px) {
    h4 {
      font-size: 22px;
    }

    p {
      font-size: 14px;
    }

    .image-one,
    .image-one img,
    .image-three,
    .image-three img {
      height: 180px;
    }

    .image-two,
    .image-two img {
      height: 140px;
    }
  }
}

.near {
  background-color: #fff1e1;

  h3 {
    font-weight: 800;
    font-weight: 40px;
    color: #2b2b2b;
  }
  p {
    font-weight: 400;
    font-weight: 16px;
    color: #7e7e7e;
  }
  @media (max-width: 768px) {
    br {
      display: none;
    }
  }
  .row {
    .item {
      max-width: 285px;
      margin: auto;
    }

    .item-img {
      width: 50px;
      height: 50px;
      margin: auto;

      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }

    h4 {
      font-weight: 700;
      font-size: 24px;
      color: #2b2b2b;
    }

    p {
      font-weight: 400;
      font-size: 16px;
      color: #7e7e7e;
    }

    .main-img {
      width: 355px;
      height: 700px;
      margin: auto;

      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }

    @media (max-width: 768px) {
      br {
        display: none !important;
      }
      .item {
        max-width: 100%;
        margin-bottom: 2rem;
      }

      .item-img {
        width: 40px;
        height: 40px;

        img {
          width: 40px;
          height: 40px;
        }
      }

      h4 {
        font-size: 20px;
      }

      p {
        font-size: 14px;
      }

      .main-img {
        width: 250px;
        height: 500px;

        img {
          width: 100%;
          height: 100%;
        }
      }
      br {
        display: none;
      }
    }

    @media (max-width: 480px) {
      flex-direction: column;
      br {
        display: none !important;
      }
      .item {
        max-width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
      }

      h4 {
        font-size: 18px;
      }

      p {
        font-size: 13px;
      }

      .main-img {
        width: 180px;
        height: 380px;
        margin: 2rem auto;

        img {
          width: 100%;
          height: 100%;
        }
      }
    }
  }
}
.features {
  .row {
    width: 85%;
  }
  h3 {
    font-weight: 800;
    font-size: 56px;
    color: #0f172a;
  }
  .item-img {
    width: 64px;
    height: 64px;
    margin: auto;
  }
  .item {
    text-align: center;
    h4 {
      font-weight: 700;
      font-size: 24px;
      color: #050038;
    }
    p {
      font-weight: 400;
      font-size: 18px;
      color: #666c89;
      text-align: center;
      text-align-last: center;
      /*text-align-last: center; */
      direction: rtl;
    }
  }
}
@media (max-width: 768px) {
  .features {
    br {
      display: none;
    }
    h3 {
      font-size: 35px !important;
    }
  }
}
#screens {
  background-color: #c4b5fd;
  margin: 50px 0;

  h3 {
    font-weight: 800;
    font-size: 40px;
    color: #000000;
  }

  .screens {
    .image {
      width: 290px;
      height: 570px;
      margin: auto;

      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }

    .owl-carousel.second {
      direction: ltr !important;
    }

    .caursoul-nav {
      width: 100%;
      display: flex;
      justify-content: space-between;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      padding: 0 20px;
      z-index: 10;

      span {
        width: 50px;
        height: 50px;
        background-color: #f39930;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        cursor: pointer;

        i {
          font-size: 16px;
          color: white !important;
        }
      }
    }
  }

  @media (max-width: 768px) {
    br {
      display: none;
    }

    .screens {

      h3{
        font-size: 30px;
      }
      .image {
        width: 270px;
        height: 570px;
        margin-left: 50% !important;
        transform: translateX(-50%);
      }
    }
  }
}

.how .container {
  width: 65%;
}

.how h4 {
  font-size: 16px;
  font-weight: 700;
}
.how h2 {
  font-weight: 700;
  font-size: 36px;
  color: #161c2d;
}

.c-stepper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  direction: ltr;
}

.c-stepper__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.one {
  text-align: start;
}

.one span {
  background-color: #8e2dd4;
}

.two {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.two span {
  background-color: #68d585;
}

.three {
  align-items: end;
}

.three span {
  background-color: #ffce31;
}

.how span {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}

.c-stepper__item:before {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #d5d7dd,
    #d5d7dd 5px,
    transparent 5px,
    transparent 10px
  );
  margin: 1rem auto 0;
  z-index: -1;
}

.c-stepper__title {
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-carousel .item img {
  transition: transform 0.3s ease-in-out;
  transform: scale(0.9);
}

.owl-carousel .item:hover img {
  transform: scale(1);
}
.one h4 {
  margin-left: -75%;
}
.one:hover {
  color: #8e2dd4;
}
.two:hover {
  color: #68d585;
}
.three:hover {
  color: #ffce31;
}

/* Responsive styles */
@media (max-width: 768px) {
  .why .container {
    width: 90%;
  }
  .how h2 {
    font-weight: 700;
    font-size: 27px;
    color: #161c2d;
  }
  .c-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-direction: column-reverse;
    padding-left: 13px;
  }

  .c-stepper__item {
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
    text-align: center;
  }

  .c-stepper__item span {
    text-align: center;
  }

  .one {
    align-items: center !important;
  }

  .c-stepper__item:before {
    display: none;
  }

  .c-stepper__desc {
    text-align: center;
  }
  .one {
    text-align: center !important;
    h4 {
      margin-left: 0 !important;
    }
  }
  /* .c-stepper{
    margin-right: 35px;
  } */
}
.join {
  background-color: #f39930;
  overflow: hidden;

  h4 {
    font-weight: 800;
    font-size: 40px;
    color: #000000;
  }

  p {
    font-weight: 400;
    font-size: 18px;
    color: #2b2b2b;
  }

  .item-images {
    .d-flex {
      gap: 1rem;
    }

    .one,
    .two {
      height: 380px;
      width: 230px;
      position: relative;
    }

    .one img {
      position: absolute;
      top: 130px;
    }

    .two img {
      position: absolute;
      top: -50px;
      left: 0;
      right: 0;
    }
  }
}

@media (max-width: 768px) {
  .join h4 {
    font-size: 30px !important;
  }

  .join p {
    font-size: 14px;
  }

  .join .row {
    /* flex-direction: column-reverse !important; */
    gap: 2rem;
  }

  .join .item-images .d-flex {
    justify-content: center;
    gap: 0.5rem;
  }

  .join .item-images .one,
  .join .item-images .two {
    width: 140px;
    height: 240px;
    position: relative;
  }

  .join .item-images .one img {
    bottom: 0;
    left: 0;
    right: 0;
    top: 80px;
  }

  .join .item-images .two img {
    bottom: 0;
    left: 0;
    right: 0;
    top: -30px;
  }
}


footer {
  background-color: #010912;
}

.footer h4 {
  font-weight: 400;
  font-size: 16px;
  color: #fefefe;
}

.footer p {
  font-weight: 400;
  font-size: 14px;
  color: #fefefe;
}

.footer .icons span {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(217, 217, 217, 0.3);
}

.footer .buttons button {
  border: solid 1px rgba(255, 255, 255, 0.8);
}

.footer a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .connect {
    width: 100%;
    text-align: center !important;
  }
  .icons {
    margin: auto !important;
    margin-top: 20px !important;
  }
  .one h4 {
    margin-left: 0%;
  }
  #how ol {
    padding: 0 !important;
  }
}
.social-icons {
  .icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    text-decoration: none;

    &:hover {
      transform: scale(1.2);
    }
  }

  .whatsapp i {
    color: #25d366;
  }

  .facebook i {
    color: #1877f2;
  }

  .instagram i {
    background: radial-gradient(
      circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .linkedin i {
    color: #0077b5;
  }
}
.footer h6 {
  font-weight: 500;
  color: white;
  font-size: 16px;
  a {
    text-decoration: none;
    color: #4584c5;
    font-weight: 700;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .footer h6{
    font-size: 12px;
  }
}

.privacy-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  line-height: 1.9;
}

.privacy-container h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #124261;
  border-bottom: 2px solid #ff8f00;
  padding-bottom: 10px;
}

.privacy-section {
  margin-bottom: 30px;
}

.privacy-section h2 {
  font-size: 22px;
  color: #B20404;
  margin-bottom: 15px;
}

.privacy-section ul {
  list-style: disc;
  padding-right: 20px;
}

.privacy-section li {
  margin-bottom: 10px;
  color: #333;
}

@media (max-width: 600px) {
  .privacy-container {
    padding: 20px;
    margin: 20px;
  }

  h1 {
    font-size: 24px;
  }

  .privacy-section h2 {
    font-size: 20px;
  }
}
.text-last-start {
  text-align-last: start !important;
  -moz-text-align-last: start !important;; /* Firefox support */
}