/*=============== 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: #6a6a6a;
  --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;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

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 {
  background: rgb(16,60,242);
  background: linear-gradient(94deg, rgba(16,60,242,1) 0%, rgba(24,200,241,1) 96%);
  color: #fff;
  padding: 0.5rem 1.7rem;
  font-size: 1.1rem;
  border-radius: 7px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .btn-contact__us {
    background: rgb(16,60,242);
background: linear-gradient(94deg, rgba(16,60,242,1) 0%, rgba(24,200,241,1) 96%);
    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 #325993;
}

.btn__CTA ,
.btn__CTA_border ,
.btn__CTA__black{
  background: rgb(16,60,242);
background: linear-gradient(94deg, rgba(16,60,242,1) 0%, rgba(24,200,241,1) 96%);
  color: #fff;
  padding: 0.6rem 3rem;
  border-radius: 99999px;
  transition: all 0.3s;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s;
}



.btn__CTA_border{

  background: transparent;
  border: 1px solid #325993;
  transition: all 0.3s;
}

.btn__CTA_border:hover{
  background: rgb(16,60,242);
  background: linear-gradient(94deg, rgba(16,60,242,1) 0%, rgba(24,200,241,1) 96%);
}


.btn__CTA__black{

  background: #313133;
  color: #fff;
  border-radius: 0.5rem;

}

@media (max-width: 768px) {
  .btn__CTA {
    font-size: 1rem;
  }
}
.btn__CTA:hover {
  transform: scale(1.1);
  background: rgb(16,60,242);
background: linear-gradient(180deg, rgba(16,60,242,1) 0%, rgba(24,200,241,1) 96%);
}


@media(max-width:768px){
  .btn__CTA ,
.btn__CTA_border ,
.btn__CTA__black{
  padding: 0.6rem 2rem;

}
}
/*=============== HEADER ===============*/
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container img {
  max-width: 150px;
}
/*=============== HEADER ===============*/

/*====================  Landing ===========================*/
.landing {
  position: relative;
}

.landing img {
  width: 100%;
  height: auto;
  max-height: 100vh;
  background-size: cover;
}

@media(max-width:768px){
  .landing img {
    aspect-ratio: 1/1.2;
  }

}

.landing .landing__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: 3rem;
  padding: 0.5rem;
  width: 50%;
  text-align: center;
  color: #fff;
}

@media (max-width: 768px) {
  .landing .landing__content {
    transform: unset;
    position: absolute;
    top: 90px;
    padding: 0.5rem;
    width: 100%;
  }
}

.landing .landing__content h1 {

  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;


 
}




.landing .landing__content p {
  line-height: 1.6;
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.landing .landing__content h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-shadow: 4px 6px 3px #878686;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  

  .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;
  }
}
/*====================  Landing ===========================*/


/*==================== Start Features Section  ===========================*/
.features {
  padding: 2rem 0;
  background: #252526;
}
.features .features__header{
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #1150f2;
    padding-bottom: 0.5rem;
    width: fit-content;
    margin: 0rem auto 2rem;
}
.features .features__wrapper {
 display: grid;
 grid-template-columns: repeat(auto-fill , minmax(300px , 1fr));
  flex-wrap: wrap;
  gap: 3rem;
}


@media(max-width:768px){
  .features .features__wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.features .features__wrapper .feature__box{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  
}
.features .features__wrapper .feature__box h6{
  color: #fff;
  text-align: center;
}
.features__wrapper img {
  max-width: 300px;
}

@media(max-width:768px){
  .features__wrapper img {
    max-width: 50px;
  }
}

.features a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 2rem auto;
}


/*==================== End Announcement Section  ===========================*/
.announcement {
  background:#323233;
}
.announcement .announcement__wrapper {
  position: relative;
}
/* .announcement .announcement__wrapper .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  background-color: red;
} */

.announcement h1{
  text-align: center;
  color: #fff;
  margin-bottom: -1rem;
  padding: 2rem 0;
  line-height: 1.8;
}
.announcement .bg-blue{
background: #1185d8;

}

/*==================== End Announcement Section  ===========================*/



/*==================== Start  Features  Section 2  ===========================*/
.feature_section_2{
  background:#323233;

}

/*==================== End  Features  Section 2  ===========================*/





/*==================== Start marketing Consultant Section  ===========================*/
.marketing__consultant {
  background:#323233;
  padding-bottom: 2rem;
}

.marketing__consultant .img__wrapper {
  max-width: 600px;
}

@media(max-width:768px){
  .marketing__consultant .img__wrapper {
    max-width: 350px;
  }
}
.marketing__consultant .content_wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.marketing__consultant .content_wrapper h3 {
  font-weight: 700;
  color: #fff;
}
.marketing__consultant .content_wrapper p {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
}

.marketing__consultant .marketing__consultant__btns a{
  margin-left: 1rem;
}


@media(max-width:768px){
  .marketing__consultant .marketing__consultant__btns {
    margin: 1rem 0;
  }
  .marketing__consultant .marketing__consultant__btns a{
    font-size: .7rem !important;
    padding: 0.6rem 1rem;
    margin-left: 0.3rem;
  }
}


@media(max-width:350px){
  .marketing__consultant .marketing__consultant__btns {
    display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.7rem;
  }
 
  .marketing__consultant .marketing__consultant__btns a{
    font-size: .7rem !important;
    padding: 0.3rem 0.6rem;
    margin-left: 0.2rem;
   
  }
}

.marketing__consultant .content_wrapper a {
  width: fit-content;
}

@media (max-width: 768px) {
  .marketing__consultant .content_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-top: 1rem;
  }
}
.marketing__consultant .text-blue{
  color: #1285d8;
}
/*==================== End marketing Consultant Section  ===========================*/


/*==================== Start Result Section  ===========================*/

.result__section {
  margin: 2rem 0;
}

.result__section .result__section__content{
  display: flex;
  justify-content: center;
  flex-direction: column;

}
.result__section .result__section__content h3{
  color: #1185d8 ;
  font-weight: bold;
  font-size: 2.5rem;
}

@media (max-width: 768px) {
    .result__section .result__section__content h3 {
        font-size: 2.2rem;
    }
}
.result__section .result__section__content p{
  font-size: 1.5rem;
}

@media (max-width: 768px) {
    .result__section .result__section__content p {
        font-size: 1.1rem;
        font-weight: 500;
    }
}

.result__section .result__section__content a{
  width: fit-content;
  margin: 0 auto;
}


.result__section .swiper-slide img {
  max-width: 500px;
}

@media (max-width: 768px) {
  .result__section h4 {
    text-align: center;
  }
  .result__section .swiper-slide img {
    max-width: 250px;
  }
}

.result__section .sales__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .result__section .sales__content {
    align-items: center;
    text-align: center;
  }
}
.result__section .sales__content h2 {
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}
.result__section .sales__content p {
  color: var(--main-color);
  font-size: 1.3rem;
  font-weight: 600;
}
.result__section .sales__content a {
  width: fit-content;
}

/*==================== End Result Section  ===========================*/

/*==================== Start Stores Section  ===========================*/

.stores__section{
  position: relative;
  padding-bottom: 5rem;
  overflow: hidden;
}


.features .features__header{
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #1150f2;
    padding-bottom: 0.5rem;
    width: fit-content;
    margin: 0rem auto 2rem;
}
.stores__section::before{
  content: "";
  background: url(../images/7.png);
  background-position: center center;
  width: 100%;
  max-width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 3rem;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -9999;
  top: 10rem;

}
.stores__section .features__header{
  text-align: center;
  border-bottom: 2px solid #1285d8;
  width: fit-content;
  margin: 0 auto 2rem auto;
  padding-bottom: 0.5rem;
}



.stores__section .btn__CTA__black{

  width: fit-content;
  position: absolute;

  left: 50%;
  transform: translateX(-50%);



}
/*==================== End Stores Section  ===========================*/

/*==================== Start Tetimonials Section  ===========================*/
.testimonials__section .features__header{
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid #1150f2;
  padding-bottom: 0.5rem;
  width: fit-content;
  margin: 3rem auto 2rem;
}

/*==================== End Tetimonials Section  ===========================*/


/* Start Edit Footer */
footer {
  margin: 3rem 0 0 0;
  background-color: #8ec5eb;
  border-radius: 20px 20px 0 0;
  color: #fff;
}

footer .top__footer {
  padding: 2rem 0;
}

footer .top__footer .top__footer__content h2 {
  margin-bottom: 1rem;
  text-shadow: 3px 3px 3px #031e8e;
  font-weight: 700;
  font-size: 2rem;
}
@media (max-width: 768px) {
  footer .top__footer .top__footer__content h2 {
    text-align: center;
  }
}
footer .top__footer .top__footer__content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
footer .top__footer .top__footer__content a {
  display: flex;
  margin: 0 auto;
  width: fit-content;
}

footer .top__footer .top__footer__form {
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 768px) {
  footer .top__footer .top__footer__form {
    margin-top: 2rem;
  }
}

footer .top__footer .top__footer__form p {
  font-size: 1.3rem;
}
footer .top__footer .top__footer__form input {
  height: 45px;
}
footer .top__footer .top__footer__form .form__contact {
  position: relative;
  width: 70%;

}
@media(max-width:768px){
  footer .top__footer .top__footer__form .form__contact{
    display: none;
  }
}
footer .top__footer .top__footer__form .form__contact button {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 8px;
}

footer .bottom__footer {
  margin: 4rem 0 0 0;
  background-color: #232323;
  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__curve {
    display: none;
  }
}

footer .bottom__footer .logo img {
  max-width: 200px;
}

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   */
