/*=============== GOOGLE FONTS ===============*/

@font-face {
  font-family: beIN;
  src: url("../Fonts/beIN_Normal.ttf") format("ttf");
}

 @font-face {
  font-family: beIN;
  src: url("../Fonts/beIN_Black.ttf") format("ttf");
  font-weight: bold;
}  


/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --main-color: #f4f4f9;
  --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; */
  --body-font: "beIN", "Tajawal", 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;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-size: cover;
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.full-wrapper {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.btn-contact__us {
  background: #39e261;
  color: #fff;
  padding: 0.3rem 2rem;
  border-radius: 999999px;
}

/*=============== HEADER ===============*/
.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  /* background-color: #ab95d394; */
  background-color: #f4f4f9;
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, 0.3);
  z-index: 9999999999;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
  color: var(--black-color);
}

.nav__logo img {
  max-width: 160px;
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}

.nav__close {
  opacity: 0;
}

.nav__contact_us {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }

  .nav__menu::-webkit-scrollbar {
    width: 0;
  }

  .nav__list {
    background-color: var(--main-color);
    padding-top: 1rem;
  }

  .nav__contact_us {
    display: none;
  }

  .nav__data {
    flex: 1 0;
  }
}

@media (min-width: 1118px) {
  .nav__menu {
    display: flex;
  }
}

.nav__link {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
  color: #7e5aab;
}

.nav__link:hover {
  background-color: hsl(0deg 0% 88.19%);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color 0.3s;
}

.dropdown__link i,
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  background-color: var(--black-color);
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
  max-height: 1000px;
  transition: max-height 0.4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .full-wrapper {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .full-wrapper {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 1rem);
    display: flex;
    justify-content: space-around;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }

  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: 0.25rem;
  }

  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item,
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu,
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, top 0.3s;
  }

  .dropdown__link,
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: 0.5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top 0.3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover>.dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top 0.3s;
  }
}

/* Start Landing Page */
.landing {
  position: relative;
}

.landing .imageCover {
  width: 100%;
  background-size: cover;
}

@media (max-width: 768px) {
  .landing .imageCover {
    aspect-ratio: 3 / 2;

  }
}

.landing__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #0000006f;
  border-radius: 1rem;
  padding: 3rem 5rem;
  width: 60%;

}



@media (min-width: 1200px) {
  .landing__content {}

  .landing__content h4 {
    font-size: 2.2rem;
  }

  .landing__content p {
    font-size: 1.2rem;
    text-align: center;
  }

  .landing__content a {
    font-size: 1.3rem;
  }
}

.landing__content h5 {
  text-shadow: 2px 2px 2px #7e5aab;
  margin-bottom: 1rem;
  /* font-size: 1.8rem; */
}

@media (max-width: 768px) {
  .landing__content {

    padding: 1rem;
    border-radius: 0 0 1rem 1rem;
    width: 100%;
    top: 0;
    left: 0;
    transform: unset;
    text-align: center;

  }

  .landing__content h5 {
    margin-bottom: 0;
  }
}

.landing__content a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  width: fit-content;
  /* font-size: 1.3rem; */
}


.landing__content img {
  margin: 1rem 0;
  max-width: 10rem;
}

/* End  Landing Page */






/* Start  Whatsapp Contact */
/* .whatsapp__contact{
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 60px;
  height: 60px;
  z-index: 9999999999;
}
.whatsapp__contact img{
  width: 60px;
  height: 60px;
} */

.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   */


/* Start Brands */
.brands {
  border-top: 1px solid #eee;
}

.brands .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brands .brand__image img {
  max-width: 120px;
  background-size: cover;
  background-position: bottom bottom;
  filter: grayscale(100%) opacity(60%);
}

@media (max-width: 768px) {
  .brands .brand__image img {
    max-width: 80px;
  }

  .brands {
    padding-bottom: 3rem !important;
  }
}

/* End Brands */

/* Start Results Section  */
.primary__header {
  max-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;


}

.primary__header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 3px;
  background-color: #7e5aab;
}

.primary__header p {
  max-width: 15rem;
  margin: 0 auto;
  display: inline-block;
  padding: 0 1.5rem;
  z-index: 99999;
  color: #7e5aab;
  background-color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}

.btn-contact__us.btn_center {
  margin: 3rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  border-radius: 10px;
  font-size: 1.2rem;
}

@media(max-width:768px){
  .btn-contact__us.btn_center {
    margin: 0.5rem auto;
  }
}

.result__section .swiper-slide img {
  max-width: 70%;
}

@media(max-width:768px){
  .result__section .swiper-slide img {
    max-width: 100%;
  }
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-family: FontAwesome;
  content: "\f0a9";
  color: rgb(242, 133, 244);
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-family: FontAwesome;
  content: "\f0a8";
  color: rgb(242, 133, 244);
}

@media(max-width:768px){
  .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after ,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after{
  display: none;
}


}

/* End  Results Section  */

/* Start Features Section  */
.features__section {
  background: rgb(242, 133, 244);
  background: linear-gradient(167deg, rgba(242, 133, 244, 1) 0%, rgba(81, 47, 104, 1) 100%);
  padding: 2rem 0;
}

.features__section .feature__item img {
  width: 150px;
  background: #363d4a;
  padding: 2rem;
  border-radius: 1.3rem;

}

.features__section .feature__item h5 {
  color: #fff;
  margin-top: 1rem;
}

/* End  Features Section  */


/* Start Stores Section */

.stores {}

.stores h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* End  Stores Section */

/* Start Testimonails */
.testimonails {}

.testimonails .swiper-wrapper {}

.testimonails h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 3.2rem;
}

.testimonails p {
  line-height: 1.5;
  color: #777;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 0.5rem;
}

.swiper-slide {
  height: auto;
}

.testimonails .box {
  padding: 20px;
  box-shadow: 0 2px 4px rgb(0 0 0 / 7%);
  border-radius: 6px;
  position: relative;
  /* background-color: #886eab; */
  background-color: #2e2051;
}

.testimonails .box img {
  position: absolute;
  left: 50%;
  top: -44px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 10px solid var(--section-background);
  transform: translateX(-50%);
}

.testimonails .box h3 {
  margin: 10px 0 10px;
  color: #fff;
  font-size: 1.2rem;
}

.testimonails .box .title {
  color: #777;
  margin-bottom: 10px;
  display: block;
}

.testimonails .box .rate .filled {
  color: #ffc107;
}

.testimonails .box p {
  line-height: 1.5;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Start Testimonails */

/*  Start Partners Section */
.partners__section {}

.partners__section .swiper-slide {
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.partners__section .swiper-slide:hover {
  background-color: #673d982c;
}

.partners__section .swiper-slide:hover img {
  transform: rotate(360deg) scale(0.9);
}

/*  End  Partners Section */


/* Start Banner Images */
.section__banner .container {
  text-align: center;
}

.section__banner img {
  position: relative;
  z-index: -1;
}

.section__banner .btn-contact__us.btn_center {
  margin-top: 0;
  border-radius: 3px;
  font-size: 1.5rem;
  z-index: 9999px;
  padding: 1rem 3rem;
}

/* End  Banner Images */



/* Start Shape */
footer {
  /* background: rgb(131,134,229);
  background: radial-gradient(circle, rgba(131,134,229,1) 0%, rgba(107,70,159,1) 100%); */


  background: rgb(131, 134, 229);
  background: radial-gradient(circle, rgba(131, 134, 229, 1) 0%, rgba(112, 84, 174, 1) 30%, rgba(131, 134, 229, 1) 100%);
}

.custom-shape-divider-top-1717853359 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1717853359 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 248px;
}

@media(max-width:768px){
  .custom-shape-divider-top-1717853359 svg{
    display: none;
  }
}

.custom-shape-divider-top-1717853359 .shape-fill {
  fill: #FFFFFF;
}



/* End Shape*/


/* Start Footer Section */
footer {
  position: relative;
  padding-top: 6rem;
}

@media(max-width:768px){
  footer {
   
    padding-top: 0;
   
  }
}

footer .footer {
  color: #fff;
  padding: 2rem 0;
  position: relative;
  border-bottom: 1px solid #fff;
}

footer .footer h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: #fff;
  width: fit-content;
  padding: 0.5rem;
  border-radius: 8px;
  text-align: center;
}

footer .footer .paltform {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

footer .footer .paltform h4 {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 0.3rem;
}

footer .footer .paltform img {
  border-radius: 8px;
  max-width: 250px;
}

@media (max-width: 768px) {
  footer .footer .paltform img {
    max-width: 185px;
  }
}

footer .about-us {
  font-size: 1.1rem;
}

footer .about-us p {
  padding: 0.5rem;
  border-radius: 7px;
}

footer .footer .social__media {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer .footer .social__media img {
  max-width: 250px;
}

footer .footer .social__media ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 15px;
  margin-top: 2rem;
}

footer .footer .social__media ul li i {
  font-size: 2rem;
  color: #fff;
  transition: all 0.3s;
}

footer .footer .social__media ul li i:hover {
  color: #ffa308;
  transform: scale(1.05);
  font-weight: bold;
}

.footer__image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: -99;
  overflow: hidden;
}

/* Footer Just for test */
@media (max-width: 768px) {
  footer .footer .social__media ul {
    margin-top: 0;
  }

  footer .footer h3 {
    margin-top: 2rem;
  }

  footer .social__media {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  footer .social__media ul {
    padding: 0;
  }
}

.footer__bottom {
  padding: 1rem;
  margin-bottom: 0;
}

.footer__bottom p {
  margin-bottom: 0;
  color: #fff;
}