/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --main-color: #031e8e;
  --secondary-color: #0095ff;
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);
  --section-background: #ececec;
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "IBM Plex Sans Arabic", sans-serif;
  --normal-font-size: 0.938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}


.accordion-button::after {
  margin-right: auto;
  margin-left: unset;
}

button.accordion-button.collapsed {
  text-align: right;
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: transparent linear-gradient(40deg, #815DBC 0%, #2CD3A1 100%, #000000 100%) 0% 0% no-repeat padding-box;
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background-color: rgb(214, 211, 211);
}

::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: #02145e;
}

/*=============== REUSABLE CSS CLASSES ===============*/

.btn-contact__us,
.btn__CTA {
  background: #825dba;
  color: #fff;
  padding: 0.5rem 1.7rem;
  font-size: 1.1rem;
  border-radius: 7px;
  transition: all 0.3s;
}

.btn__CTA {
  background-color: #0dcebc;
}



@media (max-width: 768px) {
  .btn-contact__us {
    color: #fff;
    padding: 0.5rem 0.8rem;
    font-size: 1rem;
    border-radius: 7px;
    transition: all 0.3s;
  }
}

.btn-contact__us:hover {
  transform: scale(1.1);
  box-shadow: 3px 3px 3px #dedede;
}


@media (max-width: 768px) {
  .btn__CTA {
    font-size: 1rem;
  }
}

.btn__CTA:hover {
  transform: scale(1.1);
  box-shadow: 3px 3px 3px #dedede;
}

/*=============== HEADER ===============*/
header {
  background: linear-gradient(to right, #8d7dcc 1%, #4cd7b9 31%);
  position: absolute;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  top: 1rem;
  z-index: 1;
  border-radius: 5555555px;
  padding: 0.3rem 1rem;
}


@media(max-width:768px) {

  header {
    width: 100%;
    padding: 0.1rem 0.3rem;
  }
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .container img {
  max-width: 65px;
}

/*=============== HEADER ===============*/

/*====================  Landing ===========================*/
.landing {
  position: relative;
}


.landing::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 100%;
  background: url(../images/langingBefore.png) no-repeat center center;
  background-size: cover;
  top: 0;
  right: -15rem;
}


@media (max-width: 900px) {
  .landing::before {
    width: 400px;
    opacity: 0.5;
    z-index: -1;
  }
}

.landing .landing__content {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.landing .landing__content h1 {
  color: #fff;
  font-weight: bold;
  font-size: 3rem;
}

.landing .landing__content p {
  color: #fff;
  line-height: 1.6;
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  text-align: center;
  margin-top: 1rem;
}


.btn-CTA__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 900px) {
  .landing {
    height: 85vh;
    position: relative;
  }


  .landing .landing__content {
    text-align: center;
    right: 0;
  }

  .landing .landing__content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .landing .landing__content p {
    font-size: 1.3rem;
  }

  .landing .landing__content p br {
    display: none;
  }
}

/*====================  Start FAQ ===========================*/
.features__QFA .faq_heading {

  color: #fff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  border-bottom: 1px solid #fff;
  width: fit-content;
  padding: 0.5rem;
}

/*====================  End FAQ ===========================*/
/*====================  Features ===========================*/
/* Start Features Section */
.features__Section {
  padding: 1rem 0;
}

.features__Section .container {
  background-color: #825dba;
  border-radius: 1rem;
  padding: 1rem;
  color: #fff;
}

.features__Section h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  border-bottom: 1.5px solid #fff;
  padding-bottom: 0.5rem;
  width: fit-content;
  margin: 0 auto;
}

.features__Section .feature__image {

  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}



.features__Section .feature__image img {
  width: 100%;
}

.features__Section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.features__Section .swiper-slide:hover .feature__image p {
  visibility: visible;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}

.features__Section .feature__content span {
  color: #fff;
  font-weight: 700;
  margin-top: 0.5rem;
  display: inline-block;
}

.features__Section a {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}

/* Start Our Stores Section */
.our__stores {
  margin: 2rem 0;
}

.our__stores .header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.our__stores .header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #ddd;
  top: 50%;
  transform: translateY(-50%);
}

.our__stores h2 {
  text-align: center;
  color: #031e8e;
  z-index: 5;
  background-color: #fff;
  padding: 0 0.6rem;
  position: relative;
  width: fit-content;
}

.our__stores .feature__image {
  border-radius: 8px;
  overflow: hidden;
  /* max-height: 250px; */
  /* box-shadow: -1px 2px 2px 3px #ddd; */
  background-color: #c0c0c0;
  padding: 5px;
}

.our__stores .feature__image img {
  border-radius: 5px;
  background-position: bottom center;
}

.our__stores .feature__image:hover img {
  background-position: 50% 20px, top right;
}

.our__stores a {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}

/* End Our Stores Section */

/* Start Platform Section*/

.platform__section {
  margin: 2rem 0 3rem 0;
}

@media (max-width: 768px) {
  .platform__section {
    text-align: center;
  }
}

.platform__section h2 {
  color: #031e8e;
  font-weight: 600;
}

.platform__section .platform__wrapper {
  background-color: #031e8e;
  color: #fff;
  padding: 1rem 0;
  position: relative;
  max-height: 70px;
}

.platform__section .platform__wrapper .qr_platform {
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}

.platform__section .platform__wrapper .qr_platform:hover img {
  visibility: hidden;
}

.platform__section .platform__wrapper .qr_platform::before {
  content: "";
  position: absolute;
  background-image: url(../images//منصة\ الاعمال.png);
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  visibility: hidden;
}

.platform__section .platform__wrapper .qr_platform:hover::before {
  visibility: visible;
}

.platform__section .platform__wrapper .qr_marof {
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}

.platform__section .platform__wrapper .qr_marof:hover img {
  visibility: hidden;
}

.platform__section .platform__wrapper .qr_marof::before {
  content: "";
  position: absolute;
  background-image: url(../images//معروف.png);
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  visibility: hidden;
}

.platform__section .platform__wrapper .qr_marof:hover::before {
  visibility: visible;
}

.content__images {
  margin-top: -2rem;
  display: flex;
}

@media (max-width: 768px) {
  .platform__section .platform__wrapper {
    max-height: 100%;
  }
}

.platform__section .platform__wrapper p {
  margin-bottom: 0;
  font-size: 1.3rem;
  font-weight: 500;
}

.platform__section .content__images img {
  max-width: 150px;
}

@media (max-width: 768px) {
  .platform__section .content__images {
    margin-top: 0.5rem;
    justify-content: center;
  }
}

.platform__section .content__images .col img {
  max-width: 150px;
}

/* Start Our clients */
.our__clients {
  margin: 2rem 0;
}

.our__clients .header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}


.our__clients .feature__image img {
  border-radius: 5555px;
  width: 100px;
  height: 100px;
}

.our__clients h2 {

  color: #fff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  border-bottom: 1px solid #fff;
  width: fit-content;
  padding: 0.5rem;
}

.our__clients p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-align: center;
}

.our__clients a {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 1rem;
}

.our__clients a p {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* End  Our clients */

/* Start Our Banner Section */
.our__banner img {
  border-radius: 1rem;
}

/* Start Edit Footer */
footer {
  margin: 3rem 0 0 0;
  border-radius: 0 7rem 0 0 !important;
  color: #fff;

}



footer .bottom__footer {
  margin: 4rem 0 0 0;
  background-color: #825DBA;
  border-radius: 0 7rem 0 0 !important;
  padding: 5rem 0;
  position: relative;
}

@media (max-width: 768px) {
  footer .bottom__footer {
    padding: 1rem 0;
  }

  footer .bottom__footer .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 1.5rem;
  }

}

footer .bottom__footer .logo img {
  max-width: 150px;
}

@media(max-width:768px) {
  footer .bottom__footer .logo img {
    max-width: 100px;
  }
}



footer .bottom__footer h3 {
  font-size: 1.2rem;
  margin-bottom: 1.3rem;
}

footer .bottom__footer .logo p {
  font-size: 1.3rem;
  font-weight: 500;
}

footer .bottom__footer .logo p span {
  color: #62beff;
  font-weight: 700;
}

footer .bottom__footer .about__us {
  text-align: center;
}

@media (max-width: 768px) {
  footer .bottom__footer .about__us {
    margin-bottom: 2rem;
  }

  footer .bottom__footer h3 {
    margin-bottom: 0.5rem;
  }
}

footer .bottom__footer .about__us p {
  font-size: 1.2rem;
}

footer .social {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .social__media h3 {
  text-align: center;
}

footer .social a {
  text-decoration: none;
  margin: 0 0.2rem;
}

footer .social a i {
  font-size: 2rem;
  color: #fff;
  margin: 0 0.3rem;
  transition: all 0.3s;
}

footer .social a i:hover {
  transform: scale(1.1);
  color: var(--header_color);
}

/* End  Edit Footer */

.footer__curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer__curve svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.footer__curve .shape-fill {
  fill: #8ec5eb;
}

/* Start  Whatsapp Contact */

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 27px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  z-index: 9999999999999;
}

.btn-whatsapp-pulse i {
  font-size: 2.1rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* End Whatsapp Contact   */