@import url("https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap");
:target {
  scroll-margin-top: 100px;
}

.fancybox__container {
  z-index: 1999;
}
.form-control{
    color: white !important;
    direction: rtl;
}

.fancybox__track,
.fancybox__content,
.carousel__track {
  direction: ltr !important;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background: #191C28;
  height: 300px;
}

* {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "El Messiri", sans-serif;
}

body {
  background-color: #191C28;
  overflow-x: hidden;
  position: relative;
}

html[lang=ar] {
  direction: rtl;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

button,
input,
textarea {
  border: none;
  outline: none;
  background: none;
}

.row {
  margin: 0;
  padding: 0;
}

header {
  padding: 10px 0px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  header {
    padding: 8px;
  }
}
header nav {
  padding: 16px 0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  header nav {
    padding: 10px 0;
  }
}
header nav .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .logo img {
  height: 58px;
}
@media screen and (max-width: 768px) {
  header nav .logo img {
    height: 50px;
  }
}
header nav .nav_links {
  gap: 32px;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .nav_links a {
  color: white;
  font-size: 1.1rem;
}
header nav .nav_links a.active {
  right: -16px;
  color: #FFCD30;
}
header nav .nav_links a:hover {
  color: #FFCD30;
}
@media screen and (max-width: 768px) {
  header nav .nav_links {
    position: absolute;
    top: -16px;
    bottom: -16px;
    right: calc(-50% - 16px);
    height: calc(100vh + 16px);
    flex-direction: column;
    background: #191C28;
    width: 50%;
    padding: 48px 32px;
    align-items: start;
    justify-content: start;
  }
  header nav .nav_links a {
    color: #ccc;
  }
  header nav .nav_links.active {
    right: -16px;
    color: #FFCD30;
  }
}
header nav .actions {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 16px;
}
header nav .actions button {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .actions .toggler {
  display: none;
  color: #FFCD30;
}
@media screen and (max-width: 768px) {
  header nav .actions .toggler {
    display: flex;
  }
}
header nav.sticky {
  padding: 10px 42px !important;
  background: #191C28;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
@media screen and (max-width: 768px) {
  header nav.sticky {
    padding: 10px !important;
  }
}

main .hero_section {
  width: 100%;
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  main .hero_section {
    padding: 100px 0 0 0;
  }
}
main .hero_section::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -24px;
  width: 200px;
  height: 100%;
  background: url("../images/bg-circle.png") no-repeat;
  background-size: contain;
  opacity: 0.3;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  main .hero_section::before {
    display: none;
  }
}
main .hero_section .container .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
main .hero_section .container .row .text-content h1 {
  font-size: 2.6rem;
  color: #fff;
  font-weight: bold;
}
main .hero_section .container .row .text-content h1 span {
  color: #FFCD30;
}
main .hero_section .container .row .text-content p {
  font-size: 0.8rem;
  color: #ccc;
  margin: 20px 0;
}
main .hero_section .container .row .text-content .btn-primary {
  padding: 10px 20px;
  background-color: transparent;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s;
  font-weight: bold;
  font-size: 17px;
  font-family: inherit;
  text-transform: uppercase;
  color: #FFCD30;
  text-decoration: none;
  display: inline-block;
  z-index: 1;
  border: 1px solid #FFCD30;
}
main .hero_section .container .row .text-content .btn-primary::before, main .hero_section .container .row .text-content .btn-primary::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: #FFCD30;
  transition: 1s ease;
}
main .hero_section .container .row .text-content .btn-primary::before {
  top: -1em;
  left: -1em;
}
main .hero_section .container .row .text-content .btn-primary::after {
  left: calc(100% + 1em);
  top: calc(100% + 1em);
}
main .hero_section .container .row .text-content .btn-primary:hover {
  color: white;
}
main .hero_section .container .row .text-content .btn-primary:hover::before, main .hero_section .container .row .text-content .btn-primary:hover::after {
  height: 410px;
  width: 410px;
}
main .hero_section .container .row .text-content .btn-primary:active {
  filter: brightness(0.8);
}
main .hero_section .container .row .image-content img {
  margin: 60px 40px 0 0;
  max-width: 70%;
}
main .services-section {
  padding: 60px 0;
  text-align: center;
  color: #ccc;
}
main .services-section .section-title {
  font-size: 1.9rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: #FFCD30;
  position: relative;
  display: inline-block;
}
main .services-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 4px;
  background-color: #ffcd30;
  border-radius: 3px;
  transform: translateX(-50%);
}
main .services-section .section-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #ccc;
}
main .services-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
main .services-section .service-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  margin: 10px;
  transition: transform 0.3s ease-in-out;
  max-width: 280px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  main .services-section .service-box {
    max-width: 100%;
  }
}
main .services-section .service-box:hover {
  transform: scale(1.05);
}
main .services-section .service-box i {
  font-size: 24px;
  margin-bottom: 15px;
}
main .services-section .service-box h3 {
  font-size: 1.5rem;
  color: #FFCD30;
  margin-bottom: 10px;
}
main .services-section .service-box p {
  font-size: 1rem;
  color: #ccc;
}
main .about-us {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
main .about-us .image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
main .about-us .image-container::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-image: url("../images/shape.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translate(-50%, -50%) rotate(10deg);
}
main .about-us .image-container img {
  max-width: 320px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  animation: moveTopBottom 2s ease-in-out infinite alternate;
}
@media (max-width: 767px) {
  main .about-us .image-container img {
    margin-top: 20px;
    max-width: 280px;
  }
}
@keyframes moveTopBottom {
  from {
    transform: translateY(-6px);
  }
  to {
    transform: translateY(6px);
  }
}
main .about-us h2 {
  font-weight: 700;
  font-size: 1.9rem;
  color: #FFCD30;
}
main .about-us p {
  color: #ccc;
  font-size: 1.1rem;
  margin: 30px 0px;
  line-height: 1.7;
}
main .about-us .btn-primary {
  padding: 10px 20px;
  background-color: transparent;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s;
  font-weight: bold;
  font-size: 17px;
  font-family: inherit;
  text-transform: uppercase;
  color: #FFCD30;
  text-decoration: none;
  display: inline-block;
  z-index: 1;
  border: 1px solid #FFCD30;
}
main .about-us .btn-primary::before, main .about-us .btn-primary::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: #FFCD30;
  transition: 1s ease;
}
main .about-us .btn-primary::before {
  top: -1em;
  left: -1em;
}
main .about-us .btn-primary::after {
  left: calc(100% + 1em);
  top: calc(100% + 1em);
}
main .about-us .btn-primary:hover {
  color: white;
}
main .about-us .btn-primary:hover::before, main .about-us .btn-primary:hover::after {
  height: 410px;
  width: 410px;
}
main .about-us .btn-primary:active {
  filter: brightness(0.8);
}
@media (max-width: 767px) {
  main .about-us .row {
    display: flex;
    flex-direction: column-reverse;
  }
}
main .features-section {
  position: relative;
  padding: 60px 0;
}
main .features-section::before {
  content: "";
  position: absolute;
  top: 40%;
  right: -24px;
  width: 240px;
  height: 100%;
  background: url("../images/bg-triangle.png") no-repeat;
  background-size: contain;
  opacity: 0.3;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  main .features-section::before {
    display: none;
  }
}
main .features-section .text-content h2 {
  font-size: 1.9rem;
  font-weight: bold;
  color: #FFCD30;
}
main .features-section .text-content p {
  font-size: 1.2rem;
  margin: 40px 0px;
  color: #ccc;
}
main .features-section .feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  height: 100%;
}
main .features-section .feature-card i {
  font-size: 20px;
  color: #FFCD30;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #191C28;
  margin-bottom: 10px;
}
main .features-section .feature-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #FFCD30;
}
main .features-section .feature-card p {
  font-size: 1rem;
  color: #ccc;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
main .features-section .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
main .download-section {
  padding: 80px 0 60px 0;
  color: #ccc;
}
main .download-section .container {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  main .download-section .container {
    text-align: center;
  }
}
main .download-section .text-content h2 {
  font-size: 1.9rem;
  font-weight: bold;
  color: #FFCD30;
}
main .download-section .text-content p {
  font-size: 1.2rem;
  margin: 20px 0;
  color: #ccc;
}
main .download-section .text-content ul {
  list-style: none;
  padding: 0;
}
main .download-section .text-content ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}
main .download-section .text-content .highlight {
  color: #FFCD30;
}
main .download-section .text-content .download-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  main .download-section .text-content .download-buttons {
    justify-content: center;
  }
}
main .download-section .text-content .download-buttons .store-button {
  width: 140px;
  transition: transform 0.3s ease;
}
main .download-section .text-content .download-buttons .store-button:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  main .download-section .text-content .download-buttons .store-button {
    width: 120px;
  }
}
main .download-section .image-content {
  display: flex;
  justify-content: center;
  position: relative;
  overflow: visible;
}
main .download-section .image-content img {
  max-width: 80%;
  height: auto;
  transform: scaleY(1.3) translateY(-20%);
}
@media (max-width: 768px) {
  main .download-section .image-content img {
    max-width: 100%;
  }
}
main .contact-us {
  padding: 60px 0;
}
main .contact-us .dark-map {
  width: 100%;
  height: 260px;
  border-radius: 8px;
}
main .contact-us .header_contact h2 {
  font-size: 1.9rem;
  font-weight: bold;
  color: #FFCD30;
}
main .contact-us .header_contact p {
  font-size: 1.2rem;
  margin: 40px 0px;
  color: #ccc;
}
main .contact-us .contact-form input,
main .contact-us .contact-form textarea {
  width: 100%;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}
main .contact-us .contact-form input:focus,
main .contact-us .contact-form textarea:focus {
  border-color: #FFCD30;
  box-shadow: 0 0 5px #FFCD30;
}
main .contact-us .contact-form input::-moz-placeholder, main .contact-us .contact-form textarea::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
main .contact-us .contact-form input::placeholder,
main .contact-us .contact-form textarea::placeholder {
  color: #ccc;
  opacity: 1;
}
main .contact-us .contact-info a,
main .contact-us .contact-info p {
  color: #ccc;
}
main .contact-us .contact-info .info-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  margin-bottom: 15px;
}
main .contact-us .contact-info .info-box i {
  font-size: 1.5rem;
  color: #FFCD30;
}
main .contact-us .btn-primary {
  padding: 10px 20px;
  background-color: transparent;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s;
  font-weight: bold;
  font-size: 17px;
  font-family: inherit;
  text-transform: uppercase;
  color: #FFCD30;
  text-decoration: none;
  display: inline-block;
  z-index: 1;
  border: 1px solid #FFCD30;
}
main .contact-us .btn-primary::before, main .contact-us .btn-primary::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: #FFCD30;
  transition: 1s ease;
}
main .contact-us .btn-primary::before {
  top: -1em;
  left: -1em;
}
main .contact-us .btn-primary::after {
  left: calc(100% + 1em);
  top: calc(100% + 1em);
}
main .contact-us .btn-primary:hover {
  color: white;
}
main .contact-us .btn-primary:hover::before, main .contact-us .btn-primary:hover::after {
  height: 410px;
  width: 410px;
}
main .contact-us .btn-primary:active {
  filter: brightness(0.8);
}

.footer {
  color: white;
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .logo img {
  height: 70px;
}
.footer h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
}
.footer .footer-links li {
  margin-bottom: 10px;
}
.footer .footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}
.footer .footer-links a:hover {
  color: #FFCD30;
}
.footer .info-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer .info-box i {
  font-size: 18px;
  color: #FFCD30;
}
.footer .info-box a {
  color: #ccc;
  text-decoration: none;
}
.footer .info-box a:hover {
  color: #FFCD30;
}
.footer .social-icons a {
  display: inline-block;
  font-size: 20px;
  color: #ccc;
  margin-right: 15px;
  transition: 0.3s;
}
.footer .social-icons a:hover {
  color: #FFCD30;
}
.footer .footer-bottom {
  padding-top: 20px;
  font-size: 14px;
  color: #ccc;
}
.footer .footer-bottom span {
  color: #FFCD30;
}/*# sourceMappingURL=style.css.map */
