@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-ExtraBold.woff2') format('woff2'), url('../fonts/Jost-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Bold.woff2') format('woff2'), url('../fonts/Jost-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-SemiBold.woff2') format('woff2'), url('../fonts/Jost-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Medium.woff2') format('woff2'), url('../fonts/Jost-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Regular.woff2') format('woff2'), url('../fonts/Jost-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


:root {
    --body-font-family: 'Jost';
    --body-size: 16px;
    --body-line-height: 1.3;
    --body-bg-color: #f5f5f5;
    --body-text-color: #7a7a7a;
    --body-main-color: #7635ee;
    --white-text-color: #ffffff;
    --header-bg-color: #c896fb;
    --menu-bg-color: #b77ef1;
    --heading-text-color: #112446;
    --button-bg-color: #7635ee;
    --banner-bg-color: #d2c4ff;
    --section-bg-color: #f9f9f9;
    --border-color: #dadde1;
}

.dark-mode { }


body {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--body-font-family);
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--body-text-color);
    background-color: var(--body-bg-color);
}
body::-webkit-scrollbar, 
.get_early_wrapp::-webkit-scrollbar, 
.get_login_wrapp::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}
a, a:hover {
    color: var(--body-main-color);
    text-decoration: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
li {
    text-decoration: none;
}
p {
    margin-bottom: 15px
}
p:last-child {
    margin-bottom: 0;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-text-color);
    font-weight: 700;
    font-family: var(--body-font-family);
    line-height: 1;
    margin-bottom: 15px
}

section {
    padding: 70px 0;
    position: relative;
}
img {
    max-width: 100%;
}
.row_grid {
    gap: 35px 0;
}
.form_group {
    position: relative;
    margin: 15px 0;
}
.form_group input, 
.form_group textarea, 
.form_group select {
    background-color: transparent;
    font-size: 14px;
    border: 1px solid var(--border-color) !important;
    padding: 10px 15px;
    border-radius: 10px;
    width: 100%;
} 
.form_group input:focus, 
.form_group textarea:focus, 
.form_group select:focus { 
    box-shadow: none;
    border: none;
    outline: none;
}
.form_group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    background-image: url('../images/arrow.png');
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center right 15px;
} 
.button_main {
    background-color: var(--button-bg-color) !important;
    color: var(--white-text-color) !important;
    padding: 10px 30px;
    border-radius: 50px;
    border: none;
    transition: all .3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    line-height: normal;
    white-space: nowrap;
}
.button_main:hover {
    color: var(--white-text-color);
    transform: translate3d(0, -2px, 0);
} 


.main_wrapper {
    position: relative;
}
.banner_wrapp {
    background-color: var(--banner-bg-color);
    position: relative;
    padding: 150px 0 100px;
}
.particles_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.header_wrapp {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 15px 0; 
}
.header_wrapp.sticky {
    position: fixed;
    background-color: var(--header-bg-color);
}
.header_main {
    width: 100%;
    justify-content: space-between;
    gap: 0 20px;
}
.menu_bar .navbar_nav, 
.header_right ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 15px;
}
.header_right ul {
    gap: 0 25px;
}
.menu_item .menu_link {
    padding: 5px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    color: #112446;
    letter-spacing: 0.3px;
    transition: all .3s;
    display: inline-block;
}
.header_right ul li a {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    color: #112446;
    letter-spacing: 0.3px;
    transition: all .3s;
}
.menu_item .menu_link.active, 
.menu_item .menu_link:hover {
    background-color: var(--menu-bg-color);
    color: var(--white-text-color);
}
.header_right ul li a.button_main {
    color: var(--white-text-color);
}

.banner_main, 
.feature_main {
    position: relative;
    z-index: 999;
}
.banner_shap_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.banner_shap_bg svg {
    width: 100%;
}
.banner_imgs_wrapp {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    position: relative;
    top: -50px;
}
.banner_imgs2 {
    position: absolute;
    left: -15%;
    bottom: -25%;
}
.banner_imgs2 img {
    width: 450px;
}
.banner_imgs1, .banner_imgs2 {
    --float-animation-ease: ease;
    --float-animate-from: 0%;
    --float-animate-to: 3%;
    --float-delay: 0s;
    animation: lqdFIFloatOne 1s var(--float-animation-ease) infinite alternate;
    animation-delay: var(--float-delay);
    transition: transform .65s cubic-bezier(.05, .7, .2, 1), opacity .3s;
}
@keyframes lqdFIFloatOne {
    0% {
        transform: translateY(var(--float-animate-from,0))
    }

    100% {
        transform: translateY(var(--float-animate-to,3%))
    }
}
.banner_content ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 35px 0;
}
.banner_content ul .video {
    display: flex;
    align-items: center;
    gap: 0 15px;
    color: var(--heading-text-color);
    cursor: pointer;
}
.banner_content ul .video>span {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--body-main-color);
    border-radius: 50%;
    color: var(--body-main-color);
}
.banner_content ul .video small {
    font-size: 14px;
}
.banner_content {
    padding-right: 30px;
}
.banner_content h1 {
    font-size: 60px;
    margin-bottom: 25px;
}
.banner_content h5 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 500;
}
.banner_content h6 {
    font-size: 17px;
    font-weight: 500;
    margin: 0;
}
#watchVideo .modal-content {
    background-color: transparent;
    border: none;
    margin: 0 auto;
    align-items: center;
}
#watchVideo .modal-body {
    padding: 0;
    width: 100%;
    height: 100%;
}
.watchvideo_box iframe {
    width: 100%;
}

.clients_wrapp, 
.feature_wrapp {
    background-color: var(--white-text-color);
}
.clients_main {
    position: relative;
    z-index: 999;
    text-align: center;
}
.main_heading {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 999;
}
.clients_list ul {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 25px 30px;
    flex-wrap: wrap;
}
.sub_heading span {
    background-color: rgb(118 53 238 / 15%);
    display: inline-block;
    padding: 7px 40px;
    border-radius: 50px;
    color: var(--body-main-color);
    text-transform: uppercase;
    font-size: 12px;
    line-height: normal;
    position: relative;
    letter-spacing: 0.3px;
    font-weight: 600;
}
.sub_heading span:after, 
.sub_heading span:before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: var(--body-main-color);
    position: absolute;
    border-radius: 100%;
    top: 42%;
    right: 20px;
}
.sub_heading span:before {
    top: 42%;
    left: 20px;
}
.sub_heading span:after {
    top: 42%;
    right: 20px;
}
.main_heading h2 {
    font-size: 40px;
    margin: 30px 0 0;
}
.feature_card, 
.feature_bg {
    text-align: center;
    padding: 10px 20px;
    position: relative;
    z-index: 999;
    transition: transform .85s cubic-bezier(.23, 1, .32, 1), background .3s, border .3s, border-radius .3s, box-shadow .3s, opacity .3s;
}
.feature_bg {
    padding: 40px 20px;
    background-color: var(--section-bg-color)
}
.feature_bg:hover {
    background-color: var(--white-text-color);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .07);
}
.feature_icon {
    margin-bottom: 25px;
}
.feature_icon span {
    width: 90px;
    margin: 0 auto;
    height: 90px;
    background-color: rgb(139 52 245 / 30%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature_icon span svg {
    width: 50px;
}

.get_early_wrapp, 
.get_login_wrapp {
    background-color: var(--white-text-color);
    background-image: url('../images/modal_imgs.jpeg');
    position: fixed;
    top: 0;
    z-index: 9999;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.header_contact, 
.contact_from {
    position: relative;
    z-index: 9;
}
.getearly_main {
    margin: 30px 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_contact_info {
    padding: 20px;
}
.header_contact h2 {
    font-size: 60px;
    margin-bottom: 30px;
}
.header_contact>p {
    font-size: 20px;
}
.btnclose {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}
.service_tab ul.nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--border-color);
}
.service_tab ul.nav li.nav-item {
    text-align: center;
    justify-content: center;
    display: flex;
}
.service_tab .nav .nav-item .nav-link {
    color: var(--heading-text-color);
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    padding: 20px 30px;
    letter-spacing: 0.4px;
    position: relative;
}
.service_tab .nav .nav-item .nav-link.active {
    color: var(--body-main-color);
}
.service_tab .nav .nav-item .nav-link.active:after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--body-main-color);
    position: absolute;
    left: 0;
    bottom: -2px;
    border-radius: 20px;
}
.service_content_main {
    margin-top: 40px;
}
.service_imgs {
    text-align: center;
    --float-animation-ease: ease;
    --float-animate-from: 0%;
    --float-animate-to: 3%;
    --float-delay: 0s;
    animation: lqdFIFloatOne 1s var(--float-animation-ease) infinite alternate;
    animation-delay: var(--float-delay);
    transition: transform .65s cubic-bezier(.05, .7, .2, 1), opacity .3s;
}
.service_content h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 30px;
}
.service_content p {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 30px;
}
.service_content .button_main {
    max-width: 220px !important;
}
.about_wrpp {
    background-color: var(--white-text-color);
}
.about_step {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 15px 30px;
    justify-content: center;
    margin-bottom: 50px;
}
.about_card {
    border: 2px solid var(--border-color);
    padding: 15px 30px;
    border-radius: 50px;
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    justify-content: center;
    gap: 0 15px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--heading-text-color);
}
.about_card span {
    width: 40px;
    height: 40px;
    border: 1px solid var(--body-main-color);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--body-main-color);
}
.pricing_wrapp {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 9;
}
.pricing_card {
    padding: 50px 40px;
    background-color: var(--white-text-color);
    box-shadow: 0 20px 80px rgba(0, 0, 0, .1);
}
.pricing_card.pricing_featuer {
    background-color: var(--heading-text-color);
    padding: 70px 40px;
    border-radius: 5px;
}
.pricing_price {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: var(--heading-text-color);
    margin: 0 0 15px;
}
.pricing_price span {
    font-size: 24px;
}
.pricing_price span {
    font-size: 24px;
    display: inline-block;
    padding: 0 5px;
}
.pricing_title {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
    margin-bottom: 30px;
}
.pricing_list {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px 15px;
    margin-bottom: 30px;
}
.pricing_list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px 15px;
    font-size: 17px;
}
.pricing_list li span {
    color: var(--body-main-color);
    font-weight: 500;
}
.pricing_card .button_main {
    max-width: 250px;
    margin: 50px auto 0;
    background-color: transparent !important;
    border: 2px solid var(--body-main-color) !important;
    color: var(--body-main-color) !important;
}
.pricing_featuer .pricing_price, 
.pricing_featuer .pricing_title, 
.pricing_featuer .pricing_list li {
    color: var(--white-text-color);
}
.pricing_featuer .button_main {
    max-width: 250px;
    margin: 50px auto 0;
    background-color: var(--body-main-color) !important;
    border: none !important;
    color: var(--white-text-color) !important;
}


#testimonialSlider {
    margin: 60px 0;
    width: 100%;
    text-align: center;
    box-shadow: 20px 20px 0 0 #D2C4FF, 40px 40px 0 0 #C896FB;
}
#testimonialSlider .item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.testimonial_card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--white-text-color);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .1);
}
.testimonial_content {
    padding: 50px;
}
/* .testimonial_imgs {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
} */
.testimonial_imgs img {
    height: 100%;
    object-fit: cover;
}
.testimonial_content h6 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    margin: 25px 0;
}
.testimonial_content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    font-size: 18px;
}
.testimonial_content ul li span {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-text-color);
}
#testimonialSlider .owl-nav {
    position: absolute;
    margin: 0;
}
#testimonialSlider .owl-nav button {
    margin: 0;
}  
#testimonialSlider .owl-nav button.owl-prev:before, 
#testimonialSlider .owl-nav button.owl-next:after {
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    width: 40px;
    height: 40px;
    background-color: rgb(118 53 238 / 15%);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--body-main-color);
    border-radius: 100%;
}
#testimonialSlider .owl-nav button.owl-prev:before {
    content: '\f104';
}
#testimonialSlider .owl-nav button.owl-next:after {
    content: '\f105';
}
#testimonialSlider .owl-nav {
    position: absolute;
    margin: 0;
    bottom: 40px;
    right: 50px;
}
#testimonialSlider .owl-nav button.owl-prev {
    left: -50px;
    position: relative;
}
.counter_card {
    text-align: center;
}
.counter_card p {
    font-size: 20px;
}
.accordion_wrapp .accordion-header {
    font-size: 20px;
    font-weight: 500;
    padding-right: 30px;
    position: relative;
    cursor: pointer;
}
.accordion_wrapp .accordion-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.accordion_wrapp .accordion-item:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}
.accordion_wrapp .accordion-body {
    margin-top: 20px;
}
.accordion_wrapp .accordion-header:after,
.accordion_wrapp .accordion-header.collapsed:before {
    content: '';
    width: 16px;
    height: 2px;
    background-color: var(--body-main-color);
    position: absolute;
    right: 0;
    top: 9px;
    cursor: pointer;
}
.accordion_wrapp .accordion-header.collapsed:before {
    transform: rotate(90deg);
}
.about_card_bg {
    display: grid;
    grid-template-columns: 30px 1fr;
}
.integration_main {
    margin-bottom: 40px;
}
.integration_list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.integration_card {
    --float-animation-ease: ease;
    --float-animate-from: 0%;
    --float-animate-to: 3%;
    --float-delay: 0s;
    animation: lqdFIFloatOne 1s var(--float-animation-ease) infinite alternate;
}

.footer_wrapp {
    background-color: var(--banner-bg-color);
    position: relative;
}
.footer_shape {
    transform: rotate(180deg);
}
.footer_main {
    padding: 60px 0px 40px;
}
.footer_contact {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
    background-color: var(--white-text-color);
    padding: 50px;
    border-radius: 30px;
    position: relative;
    margin-top: -300px;
}
.footer_contact form {
    margin-top: 50px;
}
.footer_contact .form_group input {
    border: 1px solid var(--body-main-color) !important;
}
.footer_contact h2 {
    font-size: 36px;
    line-height: 1.3;
}
.footer_contact h5 {
    font-weight: 500;
    font-size: 20px;
}
.social_media {
    text-align: center;
}
.social_media ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
    flex-wrap: wrap;
}
.social_media ul li a {
    font-size: 32px;
    color: var(--heading-text-color);
}
.social_media ul li a:hover {
    color: var(--body-main-color);
}
.footer_menu {
    text-align: center;
}
.footer_menu ul {
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 15px 25px;
    flex-wrap: wrap;
}
.footer_menu ul li a {
    font-size: 18px;
    letter-spacing: 0.4px;
}
.copyright {
    text-align: center;
    color: var(--heading-text-color);
}
.copyright a {
    font-weight: 600;
    text-transform: uppercase;
}



.getloign_main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
}
.login_wrapp_img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.login_wrapp_content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.checkbox_group label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
}
.checkbox_group input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    width: 24px;
    height: 24px;
    top: 0;
}
.checkbox_group label:after {
    content: '';
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 5px;
}
.checkbox_group input:checked ~ label:after {
    background-color: var(--body-default-color);
    border: 2px solid transparent;
}
.account_wrapp {
    max-width: 440px;
}
.login_tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    gap: 15px 30px;
}
.login_menu {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    cursor: pointer;
}
.login_menu.active {
    color: var(--button-bg-color);
}




.scroll-indicator-container {
    position: fixed;
    z-index: 999;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.scroll-indicator-card {
    width: 2px;
    height: 60px;
    background-color: var(--button-bg-color);
}
.scroll-indicator {
    background-color: var(--button-bg-color);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: top 0.2s ease;
}
.scroll-text {
    position: relative;
    writing-mode: vertical-rl;
    font-size: 16px;
    padding-bottom: 10px;
}

/* .modal-backdrop.fade {
    z-index: 9999; 
} 
.modal {
    z-index: 99999;
}  */