@charset "utf-8";

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #1E1E1E;
  border-radius: 0;
}

:root{
    --primary-color: #5720B7;
    --orange: #FFB802;
    --text-color: #636363;
    --bs-heading-color: #031709;
    --bs-body-color: #031709;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans Arabic";
  font-size: 16px;
  line-height: 30px;
  color: var(--bs-body-color);
  font-weight: 400;
  margin-top: 120px;
  background-image: url(../images/body_bg.png);
  background-size: 100%;
  background-position: top;
}

p{
    color: var(--text-color);
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semi_bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

a:focus,
a:hover {
  text-decoration: none;
}

section{
    overflow: hidden;
}

.rounded {
    border-radius: 15px !important;
}

.gap-20{
    gap:20px;
}

.gap-15{
    gap:15px;
}

.btn {
    background-color: #ffffff;
    color: var(--primary-color);
    border-radius: 50px;
    height: 55px;
    border: 1px solid var(--primary-color) !important;
    line-height: 55px;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 700;
    transition: all .3s ease-in-out;
    max-width: 100%;
    min-width: 120px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.btn i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50px;
    display: inline-flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.btn:hover, .btn:focus {
    background-color: var(--primary-color);
    color: #fff
}

.btn:hover i, .btn:focus i{
    color: var(--primary-color);
    background-color: #fff;
}
[dir="ltr"] .btn i{
    transform: rotate(-90deg);
}   
span.orange{color: var(--orange);}

span.purple{color: var(--primary-color);}

header{
  position: fixed; /* Make the header fixed */
    top: 0;          /* Position it at the top */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;   /* Ensure it's above other content */
    transition: top 0.3s ease-in-out; /* Smooth transition for showing/hiding */
    padding: 10px 60px;
    background-color: #fff;
}

.nav_btn{
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  padding: 0 15px;
  min-width: 120px;
}

.navbar-brand {
  margin: 0;
}

.navbar-brand img{
    width: 140px;
}

.nav-link {
    margin: 0 15px;
    font-size: 14px;
    text-transform: capitalize;
    color: #121212;
    font-weight: 500;
    border: 1px solid #1212123D;
    border-radius: 50px;
    padding: 3px 20px !important;
}

.nav-link:hover {
  border-color: #121212;
}
.left_btn {
    width: 55px;
    height: 55px;
    min-width: 55px;
    justify-content: center;
}

.offcanvas.offcanvas-end{
    width: 250px;
}

.hero{
    padding: 0 60px;
  padding-top: 50px;
  background-image: url(../images/Content_bg.png);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-align: center;
}

.hero h1 {
    font-size: 84px;
    font-weight: 700;
    line-height: 160px;
    margin-bottom: 30px;
}

.hero h1 span{
    position: relative;
}

.hero h1 span.purple:after {
    content: "";
    background-image: url(../images/purple_line.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: -10px;
    width: 100%;
    height: 35px;
}

[dir="rtl"] .hero h1 span.purple:after {
    left: 0;
}

[dir="ltr"] .hero h1 span.purple:after {
    right: 0;
    transform: rotateY(180deg);
}

.hero h1 span.orange:after{
    content: "";
    background-image: url(../images/orange_line.svg);
    background-size: 90%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -20px;
    width: 100%;
    height: 40px;
}

[dir="rtl"] .hero h1 span.orange:after{
    left: 0;
}

[dir="ltr"] .hero h1 span.orange:after{
    right: 0;
    transform: rotateY(180deg);
}
.hero p {
    font-size: 18px;
    line-height: 30px;
    color: #636363;
    margin: 0 auto;
    margin-bottom: 50px;
    position: relative;
    width: 880px;
    max-width: 100%;
}

.hero p:after {
    content: "";
    background-image: url(../images/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 20%;
    width: 175px;
    height: 186px;
}

[dir="rtl"] .hero p:after {
    left: 0;
}

[dir="ltr"] .hero p:after {
    right: 0;
    transform: rotateY(180deg);
}

.hero .btn{
    margin: 20px auto;
    box-shadow: 0 20px 30px -5px rgb(112 79 230 / 40%);
}

.hero img {
    width: 100%;
}

.partner{
    padding: 70px 60px;
}

.partner h2{
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.partner img{
    width: auto !important;
    margin: 0 auto;
}

.partner .logos{
    margin: 0 50px;
}

.about{
    padding: 30px 60px;
}

.phone-mockup-frame {
    width: 100%;
    background-color: #ECEDF2;
    border-radius: 20px;
    padding: 20px;
    padding-bottom: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: end;
}

.about_content{
    border-radius: 20px;
    padding: 40px;
    background-color: var(--primary-color);
    color: #ffffff;
    margin-bottom: 20px;
}

.about_content h2{
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
}

.about_content p{
    color: #ffffff;
    margin: 30px 0;
    font-family: "Poppins", sans-serif;
}

.stats-box{
    border-radius: 20px;
    padding: 40px;
    background-color: var(--orange);
    text-align: center;
}

.stats-box h3{
    color: #ffffff;
    font-size: 48px;
    font-weight: 500;
    line-height: 50px;
}

.stats-box p{
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 0;
}

.features{
    padding: 70px 60px;
}

.features h2{
    font-size: 64px;
    line-height: 75px;
}

.features h2 span{
    position: relative;
}

.features h2 span.purple:after {
    content: "";
    background-image: url(../images/purple_line.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: -15px;
    width: 100%;
    height: 40px;
}

[dir="rtl"] .features h2 span.purple:after {
    left: 0;
}

[dir="ltr"] .features h2 span.purple:after {
    right: 0;
    transform: rotateY(180deg);
}

.feature_block{
    background-color: #ffffff;
    border-radius: 64px;
    padding: 40px;
    position: relative;
    height: 100%;
    overflow: hidden;
    margin-bottom: 15px;
}

.feature_block .feature_shape{
    position: absolute;
    top: 10px;
    width: auto;
    max-width: 30%;
}

[dir="rtl"] .feature_block .feature_shape{
    left: -5px;
}

[dir="ltr"] .feature_block .feature_shape{
    right: -5px;
    transform: rotateY(180deg);
}

.feature_block .img_box{
    width: 130px;
    height: 130px;
    background-image: url(../images/icon_bg.png);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature_block .img_box img{max-width: 95%}

.feature_block h3{
    font-size: 48px;
    margin: 20px 0;
}

.feature_block p{
    font-size: 18px;
    color: #000;
}

.feature_1{
    background-color: #FFD25D;
}

.feature_2{
    background-color: #5720B7;
}

.feature_2 h3,.feature_2 p{
    color: #ffffff;
}

.feature_3{
    background-color: #DEC8FE;
}

.why_choose{
    padding: 40px 60px;
}

.why_choose h2 span{
    position: relative;
}

.why_choose h2 span.orange:after {
    content: "";
    background-image: url(../images/better_shape.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: -15%;
    width: 130%;
    height: 135%;
}

[dir="rtl"] .why_choose h2 span.orange:after {
    left: -13%;
}

[dir="ltr"] .why_choose h2 span.orange:after {
    right: -13%;
    transform: rotateY(180deg);
}

.why_choose p{
    font-size: 18px;
    font-weight: 500;
    color: #636363;
    margin: 50px 0;
}

[dir="rtl"] .why_choose img{
    margin-right: 10%;
}

[dir="ltr"] .why_choose img{
    margin-left: 10%;
}

.title{
    font-size: 64px;
}

.faq{
    padding: 30px 60px;
    position: relative;
}

.faq img {
    position: absolute;
    top: 70px;
    width: 45%;
}

[dir="rtl"] .faq img {
    right: 0;
}

[dir="ltr"] .faq img {
    left: 0;
}

.accordion-item {
    border: 1px solid rgb(18 18 18 / 24%) !important;
    margin-bottom: 20px;
    border-radius: 50px !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 400;
    background-color: white;
    padding: 1.3rem 1.3rem;
    font-size: 24px;
    line-height: 30px;
    text-align: start;
}

.accordion-button:focus {
    box-shadow: none; /* Remove blue focus outline */
    border-color: inherit;
}

.accordion-button:not(.collapsed) {
    background-color: white; /* Keep background white when open */
    color: var(--primary-color); /* Indigo color for active question */
    border-bottom: 1px solid rgb(18 18 18 / 24%) !important;
}

/* Customizing the Plus/Minus Icon */
.accordion-button::after {
    /* Remove default Bootstrap icon */
    display: none; 
}

.accordion-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #704fe61c; /* Light purple circle */
    color: var(--primary-color); /* Indigo color for the icon */
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
}

[dir="rtl"] .accordion-button:not(.collapsed) .accordion-icon-container {
    transform: rotate(45deg);
}

[dir="ltr"] .accordion-button:not(.collapsed) .accordion-icon-container {
    transform: rotate(-45deg);
}

.users{
    padding: 40px 60px;
}

.users .card{
    padding: 30px 20px;
    border-radius: 20px;
    border-color: #E0E0E0;
}
[dir="ltr"] .users .card{
    direction: ltr;
}
[dir="ltr"] .users .card img.quote{
    transform: rotateY(180deg);
}
.users .card img.quote{
    width: 40px;
}

.users .card p {
    font-size: 17px;
    color: #333333;
    margin: 10px 0;
}

.users .card ul{
    padding: 0;
    margin-bottom: 10px;
}

.users .card ul i{
    color: var(--orange);
}

.users .card img.user{
    width: 40px;
    height: 40px;
    border-radius: 50px;
}

.users .card h3{
    font-size: 20px;
    color: #333333;
}

.owl-theme .owl-nav {
    margin-top: 40px;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
    width: 80px;
    height: 80px;
    border-radius: 50px;
    border: 1px solid #828282;
    color: #828282;
    font-size: 35px;
}

  .owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-next:focus,
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-prev:focus{
    background-color: var(--primary-color);
    color: #fff;
}

   .contact{
    padding: 40px 60px;
}

.contact .box{
    background-image: url(../images/contact_bg.png);
    background-size: cover;
    padding: 30px 80px;
    padding-top: 0;
    border-radius: 64px;
    overflow: hidden;
}

[dir="rtl"] .contact .form_box{
    padding-left: 10%;
}

[dir="ltr"] .contact .form_box{
    padding-right: 10%;
}

.contact .img_box {
    display: flex;
    justify-content: end;
    position: relative;
}

[dir="rtl"] .contact .img_box {
    padding-right: 10%;
}

[dir="ltr"] .contact .img_box {
    padding-left: 10%;
}

.contact .img_box:before{
    content: "";
    width: 90px;
    height: 90px;
    position: absolute;
    top: 0;
    background-image: url(../images/contact_shape.png);
    background-size: contain;
}

[dir="rtl"] .contact .img_box:before{
    right: 0;
}

[dir="ltr"] .contact .img_box:before{
    left: 0;
}

.contact .btn{
    background-color: var(--orange);
    color: #031709;
}

.contact .btn i{
    background-color: #ffffff;
    color: #031709;
}

.contact .btn:hover{
    background-color: #ffffff;
}

.contact .btn:hover i{
    background-color: var(--orange);
}

.contact h2{
    font-size: 48px;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 20px;
}

.contact .form-control{
    border-radius: 35px;
    height: 64px;
    padding: 10px 20px;
}

.contact textarea.form-control{
    height: 145px;
    border-radius: 20px;
    resize: none;
}

footer{
    background-color: #ffffff;
    padding: 40px 60px;
}

footer .footer_logo{
    width: 135px;
    margin-bottom: 80px;
}
[dir="rtl"] footer ul{
    padding-right: 40px;
}

[dir="ltr"] footer ul{
    padding-left: 40px;
}
footer .footer-link {
    color: #656565;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

footer .footer-link:hover {
    color: var(--orange);
}
footer .social{

}

footer .social-icon {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: 1px solid var(--orange);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease-in-out;
    color: var(--orange);
}

.social-icon:hover {
    transform: translateY(-2px);
    background-color: var(--orange);
    color: #ffffff; 
}

.scroll-to-top {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, transform 0.3s;
    cursor: pointer;
    flex-shrink: 0;
}

.scroll-to-top:hover {
    background-color: var(--orange);
    transform: translateY(-5px);
}

.copyright-bar {
    text-align: center;
    border-radius: 50px;
    border: 1px solid #E2E2E2;
    padding: 7px 10px;
    flex-shrink: 1;
    width: 100%;
}

.copyright-bar p{
    font-family: Inter;
    font-size: 13px;
    color: #031709;
    margin-bottom: 0;
}

.copyright-bar img{
    height: 17px;
}

 /*--- responsive ---*/

@media (max-width: 1200px){
  .hero h1{font-size: 53px}

  .feature_block{padding: 20px}

  .title { font-size: 62px;}

  .accordion-button{font-size: 20px}

  [dir="rtl"] .contact .img_box{padding-right: 15px}

  [dir="ltr"] .contact .img_box{padding-left: 15px}

  [dir="rtl"] .contact .form_box{padding-left: 15px}

  [dir="ltr"] .contact .form_box{padding-right: 15px}

  .contact .box{padding: 30px 50px;padding-top: 0}
}

@media (max-width: 991px){
    header{padding: 0}

    .navbar-nav {
        margin: 0;
        padding: 0;
    }

    .navbar-toggler {
        flex-shrink: 0;
        border-color: var(--primary-color);
        color: var(--primary-color);
        border-radius: 50px;
        height: 50px;
        width: 50px;
    }

    .nav-link{margin: 0;margin-bottom: 10px}

    .offcanvas-header{justify-content: end;}

      .hero h1 {
        font-size: 45px;
        line-height: 70px;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .hero {
    padding: 0;
    padding-top: 30px;}

  .navbar .nav_btn{display: none;}

  [dir="rtl"] .hero p:after{left: 0}

  [dir="ltr"] .hero p:after{right: 0}

  .partner,.why_choose,.contact{padding: 40px 0}

  .partner .logos{margin: 0}

  .about,.faq{padding: 0}

  .phone-mockup-frame{margin-top: 20px}

  .features{padding: 70px 0}

  .feature_block{height: auto;}

  .features h2,.title {
    font-size: 45px;
    line-height: 60px;
}

.why_choose img{margin-top: 20px}

[dir="rtl"] .why_choose img{margin-right: 0}

[dir="ltr"] .why_choose img{margin-left: 0}

.accordion-button{font-size: 18px;padding: .8rem;}

.accordion-icon-container{width: 45px;height: 45px}

.accordion-item{border-radius: 35px}

.users,footer{padding: 20px 0}

.users .card{padding: 20px 10px}

.users .card p{font-size: 16px}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    width: 60px;
    height: 60px;
    font-size: 40px;
}

.contact h2{font-size: 35px}

footer .footer_logo{display: table;margin: 0 auto;margin-bottom: 30px}

footer ul{margin-top: 30px;margin-bottom: 20px}

.features_img{
    max-width: 35%;
}

.btn {
    height: 50px;
    line-height: 50px;
    padding: 0 5px;
}
.left_btn{
    width: 50px;
    min-width: 50px;
}
}

@media (max-width: 768px){
    header .btn {
        display: none;
    }
    header .left_btn{
        display: flex;
    }
      .hero h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .faq img{display: none;}

    .accordion{margin-top: 20px}

  .contact .img_box{display: none;}

  .hero h1 span.orange:after{height: 30px}

  .phone-mockup-frame{display: none;}

  .navbar-brand img{width: 120px}
}

@media (max-width: 640px){
    .hero h1 {
        font-size: 37px;
        line-height: 55px;
    }

    .hero p{font-size: 16px}

    .features_img{display: none;}

    .hero p:after {
        max-width: 35%;
        margin-bottom: 0;
        top: 50%;
    }

    [dir="rtl"] .hero p:after {
        transform: rotate(25deg);
        left: -20px;
    }

    [dir="ltr"] .hero p:after {
        transform: rotateY(180deg) rotate(25deg);
        right: -20px;
    }

    .about_content,.stats-box{padding: 20px}

    .stats-box .col-4{padding: 0 5px}

    .stats-box p {
        font-size: 15px;
        line-height: 20px;
    }

    .stats-box h3 {
        font-size: 38px;
        line-height: 40px;
    }

    .hero p{margin-bottom: 0}

    .features h2, .title {
        font-size: 33px;
        line-height: 50px;
    }

    .feature_block h3{font-size: 34px}

    .why_choose p{font-size: 16px}

    .accordion-button{font-size: 16px}

    .contact .box {
        padding: 20px 15px;
        padding-top: 0;
        border-radius: 40px;
    }

    footer ul{padding: 0}

    .copyright-bar p{font-size: 12px}

}

@media (max-width: 460px){

}