@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


.home-page {
  margin: 0;
  min-height: 100vh;
  /*max-height: 100vh;*/
  font-family: 'Tajawal', Arial, sans-serif;
  background: #F3F3F3;
  overflow: hidden;
  color: #111;
  position: relative;
}

.home-page .page-wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.home-page .hero-section {
  position: relative;
  min-height: calc(100vh - 56px);
  padding-top: 36px;
  z-index: 2;
}

.home-page .hero-image-wrap {
  position: absolute;
  top: -13px;
  left: -13px;
  width: 52vw;
  overflow: hidden;
  z-index: 1;
}

.home-page .hero-image-wrap img {
  width: 100%;
}

.home-page .hero-content {
  position: relative;
  z-index: 3;
  text-align: right;
}

.home-page .logo-area {
  margin-bottom: 58px;
}

.home-page .logo-area img {
  max-width: 235px;
  height: auto;
}

.home-page .main-title {
  /*padding-top: 150px;*/
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.home-page .sub-title {
  font-size: 20px;
  letter-spacing: 1.2px;
  margin-bottom: 27px;
  color: #111;
  font-family: "Montserrat", sans-serif;
}

.home-page .description {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.35;
  color: #333;
  font-family: "Montserrat", sans-serif;
}

.home-page .cards-section {
  position: relative;
  z-index: 5;
  margin-top: 30px;
}

.home-page .system-card {
  position: relative;
  height: 300px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  text-align: right;
  padding: 28px 18px 20px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.home-page .system-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.home-page .system-card::before {
  content: "";
  position: absolute;
  left: -44px;
  bottom: -56px;
  width: 175px;
  height: 175px;
  border-radius: 50%;
  opacity: 0.35;
  z-index: 1;
}

.home-page .system-card > * {
  position: relative;
  z-index: 2;
}

.home-page .card-icon {
  height: 70px;
  margin-bottom: 22px;
  display: flex;
  justify-content: start;
  align-items: center;
}

.home-page .card-icon svg {
  width: 62px;
  height: 62px;
  stroke-width: 1.8;
}

.home-page .card-title-ar {
  font-size: 19px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 2px;
  direction: rtl;
}

.home-page .card-title-en {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 28px;
  font-family: "Montserrat", sans-serif;
}

.home-page .start-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 34px;
  border-radius: 30px;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  direction: rtl;
}

.home-page .start-btn span {
  margin-right: 7px;
  font-family: Arial, sans-serif;
}

.home-page .purple {
  color: #60438a;
}

.home-page .purple::before {
  background: #eee8f5;
}

.home-page .purple .start-btn {
  color: #60438a;
  border: 1px solid #60438a;
}

.home-page .orange {
  color: #ff986d;
}

.home-page .orange::before {
  background: #fff0ea;
}

.home-page .orange .start-btn {
  color: #ff986d;
  border: 1px solid #ff986d;
}

.home-page .green {
  color: #238267;
}

.home-page .green::before {
  background: #e8f2ef;
}

.home-page .green .start-btn {
  color: #238267;
  border: 1px solid #238267;
}

.home-page .gold {
  color: #a07207;
}

.home-page .gold::before {
  background: #f3ead7;
}

.home-page .gold .start-btn {
  color: #a07207;
  border: 1px solid #a07207;
}

.home-page .start-btn:hover {
  color: #fff;
}

.home-page .purple .start-btn:hover {
  background: #60438a;
}

.home-page .orange .start-btn:hover {
  background: #ff986d;
}

.home-page .green .start-btn:hover {
  background: #238267;
}

.home-page .gold .start-btn:hover {
  background: #a07207;
}

.home-page .bg-circle-yellow {
  position: absolute;
  right: 400px;
  bottom: -135px;
  width: 350px;
  height: 350px;
  background: #FFE9BD;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.42;
}

.home-page .mobile-hero-image {
  display: none;
}

.home-page .footer-bar {
  margin-top: 25px;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 31px;
  background: #17694f;
  color: #fff;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
}

.home-page .social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.9;
}

.home-page .social-icons a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  line-height: 1;
}

@media (min-width: 1200px) and (max-width: 1500px) {
  .home-page .hero-image-wrap {
    width: 55vw;
    height: 100vh;
  }

  .home-page .main-title {
    padding-top: 75px;
  }

  .home-page .description {
    max-width: 600px;
    font-size: 16px;
  }

  .home-page .card-title-ar {
    font-size: 18px;
  }

  .home-page .card-title-en {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .home-page .hero-section {
    padding-top: 30px;
  }

  .home-page .hero-image-wrap {
    display: none;
  }

  .home-page .mobile-hero-image {
    display: block;
    width: 100%;
    border: 5px solid #5A407A4D;
    border-radius: 16px;
  }

  .home-page .main-title {
    padding-top: 25px;
  }

  .home-page .hero-content {
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }

  .home-page .logo-area {
    margin-bottom: 30px;
    text-align: center;
  }

  .home-page .cards-section {
    margin-top: 45px;
  }

  .home-page .system-card {
    height: 245px;
  }
}

@media (max-width: 575px) {
  .home-page .main-title {
    font-size: 29px;
  }

  .home-page .sub-title {
    font-size: 17px;
  }

  .home-page .description {
    font-size: 15px;
  }

  .home-page .footer-bar {
    font-size: 10px;
  }
  .home-page{
    overflow-y: scroll;
  }
  
}