@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

@font-face {
    font-family: "Freigeist";
    src: url("fonts/Freigeist-RegularItalic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Freigeist";
    src: url("fonts/Freigeist-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "Cairo";
    src: url("fonts/alfont_com_PingARLT-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Cairo";
    src: url("fonts/alfont_com_PingARLT-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

:root {
  --archivo: "Archivo", sans-serif;
  --freigeist: "Freigeist";
  --indie-flower: "Indie Flower", cursive;
  --primaryColor: #AFF800;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--archivo);
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  color: #808080;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
}

p,
figure,
label {
  margin: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

small {
  font-size: inherit;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: 0.2s all ease;
  -webkit-transition: 0.2s all ease;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

input,
button {
  background-color: transparent;
  border: 1px solid transparent;
  outline: none;
  transition: 0.2s all ease;
  -webkit-transition: 0.2s all ease;
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

::selection {
  color: #000;
  background: var(--primaryColor);
}

::-webkit-selection {
  color: #000;
  background: var(--primaryColor);
}

::-moz-selection {
  color: #000;
  background: var(--primaryColor);
}

.text-primary {
  color: var(--primaryColor) !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.bg-included {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.absolute-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.flex-col-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gap-x-26 {
  row-gap: 26px;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-inline: 18px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1110px;
  }
}

html:not(.no-js) [data-aos="fade-up"] {
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

html:not(.no-js) [data-aos="fade-down"] {
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
}

html:not(.no-js) [data-aos="fade-left"] {
  -webkit-transform: translate3d(20px, 0, 0);
  transform: translate3d(20px, 0, 0);
}

html:not(.no-js) [data-aos="fade-right"] {
  -webkit-transform: translate3d(-20px, 0, 0);
  transform: translate3d(-20px, 0, 0);
}


.header-topbar {
    padding-block: 5px;
    background-color: #73F09814;
}

.header-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.header-topbar-inner a.update-button {
    border: 0.4px solid #FFFFFF;
    border-radius: 4px;
    padding: 3px 7px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
}

.header-topbar-inner .secure-yto {
    text-decoration: underline;
}

.header-topbar-inner .secure-yto:hover {
    color: var(--primaryColor);
}

.header-topbar-inner p {
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    color: #fff;
}

.header-top-pera p:last-child {
    display: none;
}

.header-area {
    border-radius: 0 0 50px 50px;
    background: linear-gradient(67.21deg, #000802 12.56%, #001E08 120.99%);
    position: relative;
    z-index: 2;
}

.header-main {
    padding-top: 40px;
    padding-bottom: 129px;
}

.header-shape01 {
    position: absolute;
    top: 65px;
    left: 38px;
    z-index: -1;
}

.header-shape02 {
    position: absolute;
    bottom: 34px;
    right: 43px;
    z-index: -1;
}

.header-shape03 {
    position: absolute;
    top: 43px;
    right: 22px;
    z-index: -1;
}

.header-logobar {
    text-align: center;
}

.header-main-content {
    padding-top: 92px;
}

.header-main-content .para-content {
    text-align: center;
}

.header-main-content .para-content h2 {
    font-size: 53px;
    font-weight: 500;
    font-family: var(--freigeist);
    font-style: italic;
    color: #fff;
    text-transform: uppercase;
    line-height: 120%;
    letter-spacing: -4%;
    margin-bottom: 16px;
}

.header-main-content .para-content .text-primary {
    color: #73F098 !important;
}

.header-main-content .para-content .bg-text{
    background-color: #FDCEFF;
    color: #A20661;
    line-height: 100%;
    font-weight: 600;
    transform: skewX(-5deg);
    display: inline-block;
    padding-right: 4px;
}

.header-main-content .para-content p {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 130%;
}

.header-main-content .content {
    max-width: 660px;
    margin-inline: auto;
}

.head-waitlist-wrapper {
    padding-top: 66px;
    text-align: center;
}

.head-waitlist-wrapper form {
    max-width: 575px;
    margin-inline: auto;
}

.head-input-wrapper .input-inner {
background: linear-gradient(270.53deg, #AFF800 0.27%, #73F098 50.06%, #FFFFFF 99.85%);
border-radius: 500px;
padding: 1px;
position: relative;
}

.head-input-wrapper .input {
    background-color: #000F04;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    padding: 10px 12px 10px 32px;
    min-height: 64px;
    font-size: 16px;
    font-weight: 400;
    color: #ffffffb0;
    font-family: var(--archivo);
}

.head-input-wrapper .input::placeholder {
    color: #FFFFFF8A;
}

.head-input-wrapper button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0px 4px 12px 0px #008b4171;
    background: #AFF800;
    border-radius: 500px;
    padding: 12px 38px;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    height: 44px;
    font-family: var(--archivo);
    cursor: pointer;
}

.head-input-wrapper button:hover {
    box-shadow: 0 2px 30px rgba(174, 248, 0, 0.548);
    transform: scale(1.02) translateY(-50%);
}

.head-waitlist-wrapper p {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF4D;
    padding-bottom: 10px;
}

.head-waitlist-wrapper .remainder {
    margin-top: 7px;
    font-size: 10px;
    font-weight: 300;
    color: #FFFFFF59;
}

.head-input-wrapper.active .input-inner {
    background: #AFF800;
    box-shadow: 0 0 4px #aef800bb;
}

.head-input-wrapper .input-inner{
    position: relative;
}

.head-input-wrapper .fake-placeholder{
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s ease;
    pointer-events: none;
    color: #777;
    font-size: 16px;
    line-height: 1;
}

.head-input-wrapper .input{
    padding: 24px 24px 10px 30px;
}

.head-input-wrapper .input::placeholder{
    opacity: 0;
}

.head-input-wrapper .input:focus + .fake-placeholder,
.head-input-wrapper .input:not(:placeholder-shown) + .fake-placeholder{
    top: 10px;
    transform: translateY(0);
    font-size: 12px;
    color: #AFF800;
}

.head-waitlist-wrapper .already-joined {
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFFB2;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

.head-waitlist-wrapper .already-joined .alllist-img {
    margin-left: -8px;
    margin-bottom: -5px;
}

.head-waitlist-wrapper .already-joined .name {
    color: #fff;
    font-weight: 600;
}

.input-absolute-slo span {
    position: absolute;
    font-family: var(--indie-flower);
    color: #FFFFFF9E;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    left: -68px;
    top: 65px;
}

.input-absolute-slo img {
    position: absolute;
    left: 20px;
    top: 28px;
}

.head-input-wrapper {
    position: relative;
}

.language-toggler {
    position: absolute;
    right: 12%;
    top: 92px;
}

.language-toggler .lang-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
}

.lang-dropdown {
    position: absolute;
    right: 0;
    width: 108px;
    border: 1px solid #aef8005d;
    border-radius: 10px;
    padding: 5px;
    backdrop-filter: blur(5px);
    top: 25px;
    background: #002008A6;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: all 0.3s ease;
    z-index: 99;
}

/* Open State */
.language-toggler.active .lang-dropdown{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown ul {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lang-dropdown ul li a {
    display: flex;
    gap: 5px;
    align-items: center;
    border-radius: 4px;
    padding: 5px 5px;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
}

.lang-dropdown ul li a:hover,
.lang-dropdown ul li.active a {
    background-color: #17321D;
}

/* Infinite text animation styles */
.scroll{
    display: flex;
    justify-content: center;
    align-items: center;
}

.infinite-text-animation {
    margin-top: 21px;
}

.text-marquee {
    position: relative;
    display:flex; 
    align-items:center;
    overflow-x: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 5%,
        #000 95%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 5%,
        #000 95%,
        transparent 100%
    );
}

.text-single {
    position: relative;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    will-change: transform;
}

.text {
    padding: 0;
    display: inline-block;
    margin-right: 50px;
    font-weight: 400;
    font-size: 24px;
    color: #000;
}

/* freatures section styles here */
.features-cards-wrap {
    padding-top: 93px;
    padding-bottom: 84px;
}

.features-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px 33px;
}

.single-features-card:hover .sing-fea-card-img img {
    transform: scale(1.03);
}

.single-features-card .sing-fea-card-img {
    background-color: #AEFF9A;
    border: 1px solid #F5F5F5;
    border-radius: 18px;
    position: relative;
    padding-left: 33px;
    padding-right: 42px;
    overflow: hidden;
    text-align: center;
    min-height: 326px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-features-card .sing-fea-card-img img {
    transition: 0.3s;
}

.single-features-card .sing-fea-card-img .badge {
    padding: 6px 12px;
    border-radius: 100px;
    background-color: #fff;
    color: #000;
    font-size: 10px;
    font-weight: 400;
    max-width: fit-content;
    position: absolute;
    top: 20px;
    left: 20px;
    transition: 0.3s;
    z-index: 99;
}

.single-features-card:hover .sing-fea-card-img .badge {
    background-color: #242222;
    color: #fff;
}

.single-features-card .features-contents {
    padding-top: 16px;
}

.single-features-card .features-contents h2 {
    font-size: 20px;
    color: #000;
    line-height: 140%;
    padding-bottom: 4px;
    font-weight: 400;
}

.single-features-card .features-contents p {
    font-size: 20px;
    color: #808080;
    line-height: 130%;
    font-weight: 400;
}

.single-features-card.card02 .sing-fea-card-img {
    background: #F5F5F5;
}

.single-features-card.card03 .sing-fea-card-img {
    background: #02884B;
}

.card03 .sing-fea-card-img img {
    transform: scale(1.01);
}

.single-features-card.card04 .sing-fea-card-img {
    background: linear-gradient(74.29deg, #000000 -16.65%, #021D08 97.64%),
    linear-gradient(0deg, #003613, #003613);
    align-items: flex-end;
}

.single-features-card.card04 .sing-fea-card-img img {
    margin-left: auto;
    display: block;
}

.testimonial-inner {
    padding-top: 32px;
    padding-bottom: 74px;
    border-top: 1px solid #E6E7EB;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.testimonial-inner p {
    font-size: 30px;
    font-weight: 400;
    color: #000;
    line-height: 130%;
}

.testimonial-inner span {
    color: #808080;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
}

.testimonials-bg .testimonial-inner {
    background-color: #BEF542;
    padding: 44px 32px 51px 35px;
    border-radius: 30px;
    gap: 39px;
    margin-top: -25px;
    margin-bottom: 20px;
}

.testimonials-bg .testimonial-inner span {
    color: #000;
}

.upcoming-section {
    scroll-margin-top: 40px;
}

.upcoming-section .upcoming-inner {
   background: linear-gradient(83.23deg, #010A03 -6.48%, #011906 98.73%);
    padding: 33px 30px 18px 30px;
    border-radius: 30px;
    z-index: 2;
    position: relative;
}

.upcoming-section .upcoming-inner .upcoimg-left {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.upcoming-section .content-block {
    max-width: 657px;
    margin-inline: auto;
    text-align: center;
}

.upcoming-section .content-block h2 {
    font-size: 46px;
    font-weight: 500;
    font-family: var(--freigeist);
    font-style: italic;
    color: #fff;
    text-transform: uppercase;
    line-height: 110%;
    letter-spacing: -5%;
    margin-bottom: 32px;
    padding-top: 12px;
}

.upcoming-section .content-block .color1 {
    color: #73F098;
}

.upcoming-section .content-block .color2 {
    color: #AFF800;
}

.upcoming-section .head-input-wrapper p {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    padding-bottom: 15px;
}

.upcoming-section .head-input-wrapper button {
    background: linear-gradient(0deg, #AFF800, #AFF800),
    radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */,
    radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
}

.upcoming-section .head-waitlist-wrapper {
	padding-top: 0px;
}

.upcoming-section .already-joined {
	margin-top: 5px;
}

.upcoming-section .head-waitlist-wrapper p {
    font-size: 11px;
    font-weight: 300;
    color: #FFFFFF59;
    padding-bottom: 0;
    padding-top: 15px;
}

/* Faq section styles here */ 
.faq-wrap {
    padding-top: 100px;
    padding-bottom: 153px;
}

.faq-title {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 45px;
    color: #000;
}

.acc-item {
    border-bottom: 1px solid #E6E7EB;
    padding-bottom: 32px;
    padding-top: 32px;
}

.faq-wrap .acc-item.first-item {
    padding-top: 0;
}

.acc-btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 0;
    color: #000;
}

.acc-btn h3 {
    font-weight: 400;
    flex: 1;
    font-size: 24px;
    color: #000;
    font-family: var(--archivo);
}

.acc-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background .4s, border-color .4s
}

.acc-icon.closed {
    background: #111;
    border: 2px solid #111;
}

.acc-icon.open {
    background: transparent;
    border: 2px solid #111;
}

.acc-icon svg {
    width: 16px;
    height: 16px
}

.acc-icon.closed svg .vbar {
    transition: transform .4s, opacity .4s;
    transform: rotate(0deg);
    opacity: 1
}

.acc-icon.open svg .vbar {
    transform: rotate(90deg);
    opacity: 0
}

.acc-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1), opacity .4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.acc-body.open {
    opacity: 1
}

.acc-body-inner {
    padding: 0.75rem 2.5rem 1.5rem 0;
    line-height: 1.7;
    color: #666666;
    font-size: 18px;
    font-weight: 400;
}

.acc-body-inner p {
    margin: 0 0 0.75rem
}

.acc-body-inner p:last-child {
    margin-bottom: 0
}

.acc-body-inner ul {
    margin: 0.25rem 0 0.75rem 1.25rem;
    padding: 0
}

.acc-body-inner li {
    margin-bottom: 0.3rem
}

.acc-icon.open svg rect {
    fill: black !important;
}

.acc-body-inner ul li {
    list-style-type: disc;
    margin-left: 10px;
}

/* footer area styles here */
.footer-area {
    padding-bottom: 200px;
}

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

.footer-inner .footer-logos a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-inner .footer-menu ul {
    display: flex;
    align-items: center;
    gap: 54px;
}

.footer-inner .footer-menu ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    position: relative;
}

.footer-inner .footer-menu ul li a:after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.footer-inner .footer-menu ul li a:hover:after {
    width: 100%;
}

.head-waitlist-wrapper.md-none {
    display: none;
}
.head-waitlist-wrapper.md-b-none {
    display: none;
}

/* sticky joinlist styles here */
.sticky-joinlist {
    position: fixed;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #73F09814;
    padding: 12px 24px;
    border-radius: 35px;
    z-index: 999;
    background: #011D08;
    padding-top: 14px;
    padding-bottom: 11px;
    padding-inline: 12px;
    max-width: 546px;
    width: 100%;
    z-index: 999;
}

.sticky-joinlist .head-input-wrapper .input-inner .input {
    background: #011D08;
}

.sticky-joinlist .head-input-wrapper .input-inner .fake-placeholder {
    font-size: 14px;
}

.sticky-joinlist .sticky-joinlist-inner p {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    padding-bottom: 8px;
    line-height: 120%;
}

.sticky-joinlist .sticky-joinlist-inner span.small-text {
    font-size: 10px;
    color: #FFFFFF59;
    font-weight: 300;
    padding-bottom: 10px;
    display: block;
    text-align: center;
}

.sticky-joinlist .head-input-wrapper .input {
	min-height: 56px;
}

.sticky-joinlist .head-input-wrapper button {
	right: 7px;
}

.sticky-joinlist .head-input-wrapper .input:focus + .fake-placeholder,
.sticky-joinlist .head-input-wrapper .input:not(:placeholder-shown) + .fake-placeholder{
    top: 9px;
    font-size: 11px;
}

.sticky-joinlist .head-input-wrapper .input {
	padding-top: 21px;
    padding-left: 92px;
}

.sticky-input-icon {
    position: absolute;
    left: 6px;
    bottom: 1.5px;
}

.sticky-joinlist .head-input-wrapper .fake-placeholder {
	left: 92px;
}

/* Hidden by default */
.sticky-joinlist{
    position: fixed;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%) translateY(140%);
    
    opacity: 0;
    visibility: hidden;
    
    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.5s ease,
        visibility 0.5s ease;

    will-change: transform, opacity;
    z-index: 999999;
}

/* Show State */
.sticky-joinlist.show{
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Legal page design here */
.legal-wrapper {
    background: none;
}

.legal-wrapper .header-topbar{
    background: #08140B;
}

.legal-wrapper .language-toggler .lang-header {
	color: #000;
}

.legal-inner h3 {
    text-align: center;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    padding-bottom: 21px;
}

.legal-inner h3 a {
    color: #5E8E3E;
}

.legal-inner h3 a:hover {
    color: #4a722f;
}

.legal-content-block {
    border: 1px solid #E3E3E3;
    padding: 54px 65px 42px 65px;
    border-radius: 30px;
    margin-bottom: 21px;
    max-width: 830px;
    margin-inline: auto;
}

.legal-wrapper .header-main {
	padding-bottom: 60px;
}

.legal-content-block h2 {
    font-size: 35px;
    color: #000;
    padding-bottom: 40px;
    font-weight: 500;
}

.lg-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.lg-content-wrap .single-block {
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: #000;
}

.lg-content-wrap .single-block h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
}

.lg-content-wrap .single-block p {
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
}

.regular-footer {
    padding-bottom: 35px;
    padding-top: 150px;
}

.legat-contents {
    padding-bottom: 60px;
}

.upcoming-modi .input-inner {
    background: transparent !important;
    outline: 1px solid #AFF800;
}

.upcoming-modi .input-inner .input {
    background: #00200840;
}


/* ========================== 
RTL version updated css here 
==========================*/

.lang-arabic body {
    font-family: "Cairo";
}

.lang-arabic .header-topbar-inner p {
    font-weight: 400;
}

.lang-arabic .header-main-content .para-content h2 {
    font-weight: 700;
    font-style: normal;
    font-family: "Cairo";
}

.lang-arabic .header-main-content .para-content .bg-text {
    padding-top: 5px;
    transform: skew(0);
}

.lang-arabic .head-input-wrapper button {
    left: 12px;
    right: auto;
    font-family: "Cairo";
}

.lang-arabic .head-input-wrapper .fake-placeholder {
    right: 30px;
    left: auto;
}

.lang-arabic .head-waitlist-wrapper .already-joined {
    flex-direction: row-reverse;
}

.lang-arabic .input-absolute-slo span {
    font-size: 16px;
    font-family: "Cairo";
}

.lang-arabic .lang-dropdown {
    width: 118px;
}

.lang-arabic .single-features-card:hover .sing-fea-card-img img {
    transform: scale(1.05);
}

.lang-arabic .single-features-card .sing-fea-card-img .badge {
    right: 20px;
}

.lang-arabic .card03 .sing-fea-card-img img {
    transform: scale(1.03);
}

.lang-arabic .single-features-card.card04 .sing-fea-card-img img {
    margin-right: auto;
}

.lang-arabic .testimonial-inner {
    user-select: none;
}

.lang-arabic .testimonial-inner p {
    font-size: 28px;
}

.lang-arabic .upcoming-section .upcoming-inner .upcoimg-left {
    right: 0;
    transform: rotateY(180deg);
    left: auto;
}

.lang-arabic .upcoming-section .content-block h2 {
    font-weight: 600;
    font-family: "Cairo";
    font-style: normal;
}

.lang-arabic .acc-btn h3 {
    text-align: right;
    font-family: "Cairo";
}

.lang-arabic .acc-body-inner {
    padding: 1rem 0rem 1.5rem 2.5rem;
}

.lang-arabic .footer-inner .footer-menu ul li a:after {
    bottom: 1px;
}

.lang-arabic .sticky-joinlist .head-input-wrapper button {
    left: 7px;
}

.lang-arabic .sticky-joinlist .head-input-wrapper .input:focus + .fake-placeholder,
.lang-arabic .sticky-joinlist .head-input-wrapper .input:not(:placeholder-shown) + .fake-placeholder {
    top: 11px;
}

.lang-arabic .sticky-joinlist .head-input-wrapper .input {
    padding-right: 92px;
}

.lang-arabic .sticky-input-icon {
    right: 6px;
    transform: rotateY(180deg);
    left: auto;
}

.lang-arabic .sticky-joinlist .head-input-wrapper .fake-placeholder {
    right: 92px;
}


/* Modal Overlay */
.form-submit-modal{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.158);
    backdrop-filter: blur(5px);
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

/* Show Modal */
.form-submit-modal.active{
    opacity: 1;
    visibility: visible;
}

/* Modal Box */
.fs-inner{
    width: calc(100% - 24px);
    max-width: 520px;

    border: 1px solid #1F461A;
    max-width: 575px;
    background: #00200840;
    padding: 13px;
    border-radius: 10px;
    text-align: center;
    text-align: center;

    transform: translateY(50px) scale(0.9);

    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.20),
        0 8px 20px rgba(0,0,0,0.10);
}

/* Animate Box */
.form-submit-modal.active .fs-inner{
    transform: translateY(0) scale(1);
}

.form-submit-modal h3 {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--freigeist);
    font-style: italic;
    line-height: 100%;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 4px;
}

.form-submit-modal h3 span {
    color: var(--primaryColor);
}

.form-submit-modal p {
    font-size: 12px;
    color: #fff;
}


/* Updated code */

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 50deg;
  inherits: false;
}
:root {
  --clr-card: #fff;
  --clr-1: #AFF800;
  --clr-2: #AFF800;
  --clr-3: #AFF800;
}

.shopify-app-store-badge .card {
  position: relative;
  height: 62px;
  width: 352px;
  border-radius: 18px;
  cursor: pointer;
  background-color: var(--clr-card);
  margin-inline: auto;
}

.shopify-app-store-badge .card::after,
.shopify-app-store-badge .card::before {
  content: " ";
  position: absolute;
  z-index: -1;
  inset: -2.8px;
  background: conic-gradient(
    from var(--gradient-angle),
    var(--clr-card),
    var(--clr-1),
    var(--clr-2),
    var(--clr-3)
  );
  border-radius: inherit;
  animation: rotate 6s linear infinite;
}

@keyframes rotate {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
}

.shopify-app-store-badge .card::after {
  filter: blur(3px);
}
.head-sas-badge-wrap {
    max-width: 560px;
    margin-inline: auto;
}

.view-demo-link {
    padding-top: 20px;
    text-align: center;
}
.view-demo-link a {
    font-size: 14px;
    font-weight: 400;
    color: #AFF800;
    transition: 0.3s !important;
    transform: translateY(0) !important;
}

.view-demo-link a:hover {
    text-decoration: underline;
}

.shopify-app-store-badge .card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopify-app-store-badge .card-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shopify-app-store-badge .card-inner img {
    max-width: 28px;
}

.shopify-app-store-badge .card-inner span {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: left;
    display: block;
}

.shopify-app-store-badge .card-inner h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-align: left;
    display: block;
}

.shopify-app-store-badge a {
    display: block;
    transition: 0.6s;
}

.shopify-app-store-badge a:hover {
    transform: translateY(-3px);
}

.shopify-app-store-badge a {
    position: relative;
    z-index: 1;
}

.shopify-app-store-badge.badge-02 {
    padding-top: 14px;
}

.shopify-app-store-badge.badge-03 {
    padding-top: 8px;
}
.shopify-app-store-badge.badge-03 .view-demo-link {
	padding-top: 15px;
}

.stickybar-vector {
    position: absolute;
    bottom: 0;
    left: 10px;
    z-index: -1;
}

.shopify-app-store-badge.badge-03 .card {
	width: 305px;
    height: 52px;
}

.shopify-app-store-badge.badge-03 .card-inner h4 {
	font-size: 16px;
}

.shopify-app-store-badge.badge-03 .card-inner span {
	font-size: 12px;
}
.shopify-app-store-badge.badge-03 .card-inner img {
	max-width: 24px;
}

