:root{
    --active-color: #FEB200;
    --main-color: #512EA6;
    --text-color: #828282;
}

@font-face {
    font-family: Somar;
    src: url('../fonts/alfont_com_SomarGX.ttf');
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}



body{
    direction: rtl;
    font-family: "Somar";
    overflow-x: hidden !important;
}

.container{
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
}

@media (max-width: 1024px) {
    .container{
        padding-left: 20px;
        padding-right: 20px;
    }
}

a{
    text-decoration: none;
}

nav{
    padding-top: 30px;
    padding-bottom: 30px;
    box-shadow: 0 0 5px #75757547;
}

.app__language .icon{
    transform: rotate(180deg);
}

nav .app__language__menu{
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 5px #999;
    width: 200px;
    padding: 10px;
    border-radius: 5px;
    left: 100px;
    top: 100px;
    color: var(--main-color);
    font-size: 18px;
    z-index: 999999;
    display: none;
}

nav .app__language__menu.show{
    display: block;
}

nav .app__language__menu p{
    cursor: pointer;
    padding: 10px 5px;
    transition: 0.3s;
    border-radius: 5px;
}

nav .app__language__menu p:hover{
    background-color: var(--main-color);
    color: #fff;
}

.nav__content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__content .logo{
    width: 170px;
    height: 70px;
}

.nav__content .logo img{
    width: 100%;
    height: 100%;
}

.nav__content .nav__links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.nav__content .nav__links a{
    cursor: pointer;
    color: var(--main-color);
    font-size: 20px;
    font-weight: 400;
    position: relative;
    transition: 0.3s;
}

.nav__content .nav__links a:hover{
    color: var(--active-color);
}

.nav__content .nav__links a:hover::before{
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--active-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.nav__content .nav__links a.active{
    color: var(--active-color);
}

.nav__content .nav__links a.active::before{
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--active-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.nav__content .app__language{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--active-color);
    color: #fff;
    cursor: pointer;
    width: 200px;
    height: 70px;
    border-radius: 10px;
    font-size: 18px;
    transition: 0.3s;
    position: relative;
}

.nav__content .app__language:hover{
    transform: scale(0.9);
}

.nav__content .bar__icon{
    color: var(--main-color);
    border: 2px solid var(--main-color);
    width: 50px;
    height: 40px;
    font-size: 25px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    transition: 0.3s;
}

.nav__content .bar__icon:hover{
    color: var(--active-color);
    border-color: var(--active-color);
}

/* responsive menu */

.responsive__menu{
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #fff;
    bottom: 0;
    z-index: 99999;
    width: 250px;
    text-align: center;
    padding: 20px;
    transition: 0.3s;
}

.responsive__menu.show{
    right: 0;
}

.responsive__menu .app__language__menu{
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 5px #999;
    width: 200px;
    padding: 10px;
    border-radius: 5px;
    left: 51%;
    transform: translateX(-50%);
    top: 90px;
    color: var(--main-color);
    font-size: 18px;
    z-index: 999999;
    display: none;
}

.responsive__menu .app__language__menu.show{
    display: block;
}

.responsive__menu .app__language__menu p{
    cursor: pointer;
    padding: 10px 5px;
    transition: 0.3s;
    border-radius: 5px;
}

.responsive__menu .app__language__menu p:hover{
    background-color: var(--main-color);
    color: #fff;
}
.overlay{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: -100%;
    background-color: #999999a1;
    transition: 0.3s;
}

.overlay.show{
    left: 0;
}

.responsive__menu .app__language{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--active-color);
    color: #fff;
    cursor: pointer;
    width: 200px;
    height: 50px;
    border-radius: 10px;
    font-size: 18px;
    transition: 0.3s;
    position: relative;
    margin-bottom: 20px;
}

.responsive__menu .app__language:hover{
    transform: scale(0.9);
}

.responsive__menu .nav__links a{
   color: var(--main-color);
   transition: 0.3s;
   font-size: 18px;
   text-align: right;
   display: block;
   margin-bottom: 10px;
   padding: 10px 0;
   position: relative;
   width: auto;
}

.responsive__menu.show .nav__links a{
    animation: responsiveLink 0.7s;
}



.responsive__menu .nav__links a:hover, .responsive__menu .nav__links a.active{
    color: var(--active-color);
}


/* main section */

#main__section{
    position: relative;
    height: 1000px
}

.main__section__content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
 }

#main__section .img__bg{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
}

#main__section .img__bg img{
     width: 100%;
     height: 100%;
}

#main__section .line__img{
    position: absolute;
    width: 100%;
    top: 50px;
}

#main__section .line__img img{
    width: 100%;
}

#main__section .plan__img{
    position: absolute;
    left: 50%;
    top: 225px;
    width: 50px;
    height: 45px;
}

#main__section .plan__img img{
    width: 100%;
    height: 100%;
}

#main__section .img__star__1{
    position: absolute;
    left: 40px;
    top: 220px;
}

#main__section .img__star__2{
    position: absolute;
    left: 490px;
    top: 140px;
    width: 20px;
    height: 20px;
}

#main__section .img__star__2 img{
  width: 100%;
  height: 100%;
}
#main__section .img__star__3{
    position: absolute;
    left: 50%;
    bottom: 300px;
    width: 20px;
    height: 20px;
}

#main__section .img__star__3 img{
  width: 100%;
  height: 100%;
}

#main__section .bottom__img{
    position: absolute;
    right: 20px;
    bottom: -40px;
    animation: 8s transformation infinite linear;
}

.main__section__content .text{
    width: 50%;
}

.main__section__content .text h1{
    font-size: 60px;
    color: var(--main-color);
    font-weight: 600;
}

.main__section__content .text p{
    font-size: 32px;
    color: var(--text-color);
    margin: 50px 0;
    font-weight: 400
}

.main__section__content .text .btns{
    display: flex;
    margin-top: 20px;
    gap: 20px;
}

.main__section__content .text .btns .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
    gap: 0 20px;
    position: relative;
    cursor: pointer;
    width: 260px;
    transition: 0.3s;
}

.main__section__content .text .btns .btn img{
    width: 100%;
    height: 100%;
}

.main__section__content .text .btns .btn:hover{
    transform: scale(0.9);
}

.main__section__content .text .btns .btn span{
    text-transform: uppercase;
    color: #fff;
    text-align: left;
    display: block;
}

.main__section__content .text .btns .btn:nth-child(1){
    background-color: var(--main-color);
}

.main__section__content .text .btns .btn:nth-child(2){
    background-color: #FEB200;
}

.main__section__content .phone__img{
    position: relative;
    margin-left: 40px;
    margin-top: 60px;
}

.main__section__content .phone__img .img{
    height: 740px;
    width: 330px;
}

.main__section__content .phone__img .img:nth-child(2){
    position: absolute;
    left: 375px;
    bottom: -75px;
    transform: rotate(15deg);
    height: 550px;
}

.main__section__content .phone__img .img img{
    height: 100%;
    width: 100%;
}

h3{
    text-align: center;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

h3 span{
    color: var(--main-color);
    font-size: 40px;
    font-weight: 500;
}

h3 img{
    position: relative;
    right: 25px;
    animation: 5s headerImg infinite linear;
}

/* about section */

#about__section{
    position: relative;
    overflow-x: hidden;
}


#about__section .about__line .img__line{
    position: absolute;
    left: -200px;
    top: -250px;
}

#about__section .plan__img {
    left: 300px;
    position: absolute;
    top: 194px;
    width: 50px;
    height: 45px;
}

#about__section .plan__img img{
    transform: rotate(193deg);
    width: 100%;
    height: 100%;
}

.section__description{
    text-align: center;
    font-size: 36px;
    margin-top: 30px;
    color: #FEB200;
}

.about__section__content .info{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
}

.about__section__content .img-container{
    position: relative;
    width: 500px;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.about__section__content .img-container .bg__img{
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
}

.about__section__content .phone__img{
    width: 300px;
}

.about__section__content .phone__img img{
    width: 100%;
}
.about__section__content .star__img{
    position: absolute;
    top: 50%;
    right: 50px;
}

.about__section__content .img-container .bg__img img{
    width: 100%;
    height: 100%;
}

.about__section__content .info__text{
    flex: 1;
    margin-bottom: 100px;
}

.about__section__content .info__text p{
    color: var(--text-color);
    text-align: right;
    font-size: 28px;
}

/* feature secrion */

#app__features{
    position: relative;
    margin-top: 100px;
}

.app__features__content{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
}

.app__features__content .card{
    width: calc(100% / 3 - 15px);
    height: 300px;
    border: 1px solid #EBE3FF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 10px #b7b7b72b;
    transition: 0.3s;
}

.app__features__content .card:hover{
    box-shadow: 0 5px 10px #512ea65c;
    transform: translateY(-20px);
}

.app__features__content .card .img{
    border: 1px dashed var(--main-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    padding: 20px;
}

.app__features__content .card .img img{
    width: 100%;
    height: 100%;
}

.app__features__content .card h2{
    color: var(--main-color);
    font-size: 28px;
    margin-top: 20px;
    font-weight: 500;
}

.app__features__content .card p{
    font-size: 20px;
    margin-top: 10px;
    font-weight: 400;
    color: var(--text-color);
}

/* screens section */

#app__screens{
    direction: ltr;
    position: relative;
    width: 100%;
    height: 650px;
    margin: 50px 0;
    margin-top: 150px;
}

#app__screens .img__bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#app__screens .img__bg img{
    width: 100%;
    height: 100%;
}


#app__screens  .owl-carousel .img{
    width: 100%;
    height: 400px;
 }

#app__screens  .owl-carousel .img img{
    width: 100%;
    height: 100%;
}

#app__screens .owl-stage-outer{
    padding: 40px 0;
}


#app__screens .owl-carousel .owl-item.active.center {
    transform: scale(1.2);
    padding: 0 10px;
}


.owl-carousel .owl-dots.disabled{
    display: block !important;
}

.owl-theme .owl-dots .owl-dot span{
    background-color: transparent !important;
    border: 1px solid var(--active-color) !important;
}


.owl-theme .owl-dots .owl-dot.active span{
    background-color: var(--active-color) !important;
}



/* customer section */

#customers{
    margin: 100px 0;
    position: relative;
}

#customers .custom__img{
    position: absolute;
    bottom: -30px;
    right: 90px;
    z-index: 999;
}

#customers .custom__img img{
    width: 100%;
    height: 100%;
}

.customers__content{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 100px;
}

.customers__content .customers__feedback{
    width: 1000px;
    height: 550px;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.customers__content .customers__feedback .swiper-container {
    width: 100%;
    height: 100%;
}

.customers__content .customer__img{
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customers__content .customer__img .customer__img__man{
    width: 500px;
    height: 100%;
    position: relative;
}

.customers__content .customer__img .customer__img__man img{
    width: 100%;
    height: 100%;
}

.customers__content .bg__img{
    position: absolute;
    width: 500px;
    height: 100%;
    right: 0;
}

.customers__content .bg__img img{
    width: 100%;
    height: 100%;
}

.customers__content .customer__img .star__img{
    position: absolute;
    bottom: 0px;
    right: 100px;
    width: 95px;
    height: 95px;
}

.customers__content .customer__img .star__img img{
    width: 100%;
    height: 100%;
}

.customers__content .star__img__2{
    position: absolute;
    width: 40px;
    height: 40px;
    top: 30%;
    left: 100px;
}
.customers__content .star__img__2 img{
    width: 100%;
    height: 100%;
}

.customers__content .rectangle__img{
    position: absolute;
    height: 75px;
    width: 75px;
    top: -100px;
    left: 0;
}

.customers__content .rectangle__img img{
 width: 100%;
 height: 100px;
}

.customers__content .feedback__card{
    border: 1px solid #cbcbcb;
    height: 100%;
    padding: 20px;
    position: relative;
    border-radius: 5px;
    padding-top: 0px;
}

.customers__content .feedback__card span{
    color: #F3F3F3;
    font-size: 75px;
}

.customers__content .feedback__card p{
    color: var(--text-color);
    font-size: 28px;
}

.customers__content .feedback__card h4{
    font-size: 28px;
    text-align: center;
    font-weight: 600;
}



 .customers__feedback .img{
    width: 80px;
    height: 70px;
    position: absolute;
    bottom: -10px;
    right: -12px;
    z-index: 9;
}

 .customers__feedback .img img{
    width: 100%;
    height: 100%;
}

.customers__content .customers__feedback .arrows{
    position: absolute;
    left: 50%;
    bottom: 120px;
}


.customers__content .customers__feedback .arrows .swiper-button-next{
    transform: rotate(180deg);
    width: 65px;
    height: 50px;
    border: 1px solid #cbcbcb;
    color: var(--main-color);
    border-radius: 5px;
}

.customers__content .customers__feedback .arrows .swiper-button-prev{
    transform: rotate(180deg);
    width: 65px;
    height: 50px;
    border: 1px solid #cbcbcb;
    border-radius: 5px;
    color: var(--main-color)
}

.customers__content .customers__feedback .arrows .swiper-button-next::after{
    display: none;
}

.customers__content .customers__feedback .arrows .swiper-button-next:hover{
    background-color: var(--main-color);
    color: #fff;
}

.customers__content .customers__feedback .arrows .swiper-button-prev::after{
    display: none;
}

.customers__content .customers__feedback .arrows .swiper-button-prev:hover{
    background-color: var(--main-color);
    color: #fff;
}

/* download app section */

#app_download{
    position: relative;
    height: 1200px
}


#app_download .container{
    height: 100%;
}

#app_download .bg__img{
    position:absolute;
    width: 100%;
    height: 100%;
}

#app_download .bg__img img{
    width: 100%;
    height:100%;
}

#app_download .line__img{
    position: absolute;
    left: 0;
    top: 250px;
    width: 100%;
}

#app_download .line__img img{
    width: 100%;
    height: 100%;
}

#app_download .plan__img{
    position: absolute;
    left: 40px;
    top: 235px;
    width: 40px;
    height: 35px;
}
#app_download .plan__img img{
   width: 100%;
   height: 100%;
}

.app_download_content{
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 9999;
    position: relative;
    align-items: center ;
    justify-content: space-between;
}

.app_download_content .download__text{
    width: 50%;
}

.app_download_content h2{
    font-size: 70px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}

.app_download_content p{
    font-size: 36px;
    color: #fff;
    font-weight: 500;
}

.app_download_content  .btns{
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.app_download_content .btn{
    width: 260px;
    height: 80px;
    transition: 0.3S;
    display: block;
}

.app_download_content .btn:hover{
    transform: scale(0.9);
}

.app_download_content .btn img{
    width: 100%;
    height: 100%;
}

.app_download_content .phone__img{
    width: 50%;
    height: 800px;
    margin-bottom: 150px;
    animation: phoneImg 8s linear infinite;
}

.app_download_content .phone__img img{
    width: 100%;
    height: 100%;
}


/* contact us */

#contact__us{
    position: relative;
    margin-bottom: 20px;
}
#contact__us .contact__img__line{
    position: absolute;
    left: 500px;
    top: -160px;
    width: 220px;
    height: 300px;
}

#contact__us .contact__img__line img{
  width: 100%;
  height: 100%;
}

#contact__us .contact__img__line__2{
    position: absolute;
    width: 200px;
    height: 275px;
    left: 38%;
    bottom: 50px;
}

#contact__us .contact__img__line__2 img{
    width: 100%;
    height: 100%;
}

.contact__us__content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact__form{
    width: 50%;
}

.contact__form h3{
    justify-content: start;
    position: relative;
 }
 .contact__form h3 span{
    position: absolute;
 }

 .contact__form .section__description{
    text-align: right;
 }

 .contact__form form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
 }

 .contact__form form input, textarea{
     outline: none;
     height: 80px;
     border: 1px solid #E6E6E6;
     border-radius: 5px;
     padding: 10px;
     font-size: 24px;
     font-family: "Somar";
 }

 .contact__form form textarea{
    height: 300px;
    resize: none
 }

 .contact__form form input[type="submit"]{
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    border: none;
    transition: 0.3s;
    cursor: pointer;
 }

 .contact__form form input[type="submit"]:hover{
    transform: scale(0.9);
 }

.contact__img {
    width: 50%;
}

.contact__img .img{
    width: 100%;
    height: 100%;
}
.contact__img .img img{
    width: 100%;
    height: 100%;
}


/* footer */

footer{
    height: 300px;
    position: relative;
    background-position: center;
    background-size: cover;
    margin-top: 100px;
}

footer::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #512ea6c9;
}


footer .container{
    height: 100%;
}

.footer__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    position: relative;
    gap: 30px;
}

footer .footer__logo{
    display: block;
    width: 250px;
    height: 110px;
}

footer .footer__logo img{
    width: 100%;
    height: 100%;
}

.footer__links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer__links .link{
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: var(--main-color);
    border-radius: 50%;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 20px;
}

.footer__links .link:hover{
    background-color: var(--main-color);
    color: #FFF;
    transform: rotate(360deg);
}

footer .star__img{
    position: absolute;
    width: 25px;
    height: 25px;
    left: 50px;
    top: 50px;
}

footer .star__img img{
    width: 100%;
    height: 100%;
}

footer .star__img:nth-child(2){
    top: 50%;
    left: 30%;
    width: 16px;
    height: 16px;
}

footer .star__img:nth-child(3){
    top: 50px;
    right: 100px;
    width: 16px;
    height: 16px;
}

footer .star__img:nth-child(4){
    top: 250px;
    right: 30%;
}

footer .footer__line__plan {
    position: absolute;
    width: 160px;
    height: 220px;
    right: 0;
    bottom: -30px;
}

footer .footer__line__plan  img{
    width: 100%;
    height: 100%;
}

footer .footer__line{
    position: absolute;
    left: 0;
    top: 0;
    width: 350px;
    height: 100%;
}

footer .footer__line img{
    width: 100%;
    height: 100%;
}


.copy__write{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
 }

 .copy__write p{
    font-size: 18px;
    color: var(--main-color);
 }

.copy__write span {
    color: #be0505;
}

.copy__write span i{
    animation: scaling 1s infinite linear;
}

.copy__write h5{
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}


@keyframes  scaling {
    0%{
        transform: scale(1);
    }

    25%{
        transform: scale(1.2);
    }

    60%{
        transform: scale(0.9);

    }
    100%{
        transform: scale(1);
    }
}

@keyframes transformation {
    0%{
        transform: translateY(0);
    }
    25%{
        transform: translateY(-50px);
    }
    50%{
        transform: translateY(0);
    }
    75%{
        transform: translateY(50px);
    }
    100%{
        transform: translateY(0);
    }
}


@keyframes headerImg {
    0%{
        transform: translateX(0);
    }
    50%{
        transform: translateX(-200px);
    }
    100%{
        transform: translateX(0);
    }
}

@keyframes phoneImg {
    0%{
        transform: translateY(0);
    }
    25%{
        transform: translateY(-50px);
    }
    50%{
        transform: translateY(0);
    }
    75%{
        transform: translateY(50px);
    }
    100%{
        transform: translateY(0);
    }
}


@keyframes phoneImgAbout {
    0%{
        transform: translateY(0);
    }
    25%{
        transform: translateY(-20px);
    }
    50%{
        transform: translateY(0);
    }
    75%{
        transform: translateY(20px);
    }
    100%{
        transform: translateY(0);
    }
}


@keyframes responsiveLink {
    0%{
        right: -100%;
    }
    100%{
        right: 0;
    }
}
