:root{
    --white: #ffffff;
    --black: #000000;
    --red: #FF2C2C;
    --blue: #0096FF;
    --text: #75797F;
    --primary-color: linear-gradient(180deg, #5E39FB 0%, #2E04AB 100%);
    --secondary-color: #0C0134;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body{
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    overflow-x: hidden;
    font-weight: 400;
    scroll-behavior: smooth;
    background-color: #F2F3F3;
}
a,.btn,button,.button,img{
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
a {
    text-decoration: none !important;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.form-control:focus,
.form-select:focus,
.btn-close:focus{
    border-color: #5E39FB !important;
    outline: 0;
    box-shadow: unset;
}

/* scrollbar styling */
/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    /* display: none; */
}  
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color); 
    border-radius: 10px;
}
@-moz-document url-prefix() {
    * {
        scrollbar-width: thin;
        scrollbar-color: #5E39FB transparent;
    }
}
::selection {
    color: #FFFFFF;
    background: #5E39FB;
}
.header {
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
    padding-top: 10px;
}
.header .navbar{
    border-radius: 8px;
    background-color: var(--white);
    box-shadow: 0px 0px 40px 0px #00000012;
}
.navScrolled {
    /* -webkit-box-shadow: 0px 4px 24px 0px #5D59490F;
    box-shadow: 0px 4px 24px 0px #5D59490F; */
    animation: scrollSticky 0.5s ease-out;
    -webkit-animation: scrollSticky 0.5s ease-out;

}
@keyframes scrollSticky {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.header .navbar-nav li .nav-link {
    position: relative;
    color: var(--secondary-color);
    text-transform: capitalize;
    font-weight: 400;
    display: flex;
    align-items: center;
    padding: 5px 0;
}
.header .navbar-nav li .nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.4s ease-in-out;
}
.header .navbar-nav li .nav-link span{
    padding-left: 8px;
}
.header .navbar-nav {
    gap: 30px;
}
.header .navbar-nav li .nav-link:hover,
.header.navScrolled .navbar-nav li .nav-link:hover,
.header .navbar-nav li .nav-link.active {
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.header .navbar-nav li .nav-link:hover::after,
.header.navScrolled .navbar-nav li .nav-link:hover::after,
.header .navbar-nav li .nav-link.active::after {
    width: 100%;
}
.navbar-toggler{
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.navbar-dasktop-brand,.acc-login-box{
    min-width: 300px;
}
.navbar-toggler:focus{
    box-shadow: unset;
}
.offcanvas{
    background-color: var(--white);
    transition: transform 0.6s ease;
}
.primary_btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* font-weight: 600; */
    letter-spacing: 1px;
    padding: 12px 35px;
    border-radius: 30px;
    color: var(--white, #FFFFFF);
    background: var(--primary-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    z-index: 1;
    overflow: hidden;
    border: unset;
}
.primary_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2E04AB 0%, #5E39FB 100%);
    z-index: 0;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    opacity: 0;
}
.primary_btn:hover::before {
    opacity: 1;
    z-index: -5;
}
.primary_btn:disabled{
    color: #6C7278;
    background: #E2E4E7;
}
.primary_btn:disabled::before{
    opacity: 0;
}
.primary_btn_w{
    background: transparent;
    border: 1px solid var(--white);
}
.primary_btn_w:hover{
    border-color: transparent;
}
/* .primary-btn svg {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.25, 1.5, 0.5, 1);
    will-change: transform;
}
.primary-btn:hover svg {
    transform: translateX(8px) scale(1.2);
} */
.secondary_btn{
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    border: none;
}
.secondary_btn:hover{
    color: var(--white);
    -webkit-text-fill-color: unset;
}
.secondary_btn_line{
    position: relative;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.secondary_btn_line::before {
    content: "";
    position: absolute;
    border-radius: 30px;
    padding: 1px; 
    background: linear-gradient(180deg, #5E39FB 0%, #2E04AB 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude; 
    pointer-events: none;
    opacity: 1;
}
.secondary_btn_line:hover{
    -webkit-text-fill-color: unset;
}
.secondary_btn_line:hover::before{
    -webkit-mask: unset;
}
.cart_count{
    font-size: 10px;
    background-color: #D32828;
}
.quick-noti{
    padding: 10px;
    font-size: 12px;
    color: var(--white);
    background-color: var(--primary-color);
    font-weight: 300;
}
.comman-py{
    padding: 60px 0;
}
.comman-py2{
    padding: 100px 0;
}
.pt-115{
    padding-top: 115px !important;
}
.pt-140{
    padding-top: 140px !important;
}
.search-container {
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon {
  background: none;
  border: none;
  cursor: pointer;
  z-index: 9;
}
#searchInput {
  width: 0;
  opacity: 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: absolute;
  right: -14px;
  transform: translateY(-10px);
}
#searchInput:focus-visible {
  outline: none;
}
#searchInput.show {
  width: 205px;
  opacity: 1;
    padding: 8px 40px 8px 8px;
    transform: translateY(0);
}
p{
    color: var(--text);
    font-weight: 400;
    line-height: 25px;
    text-transform: capitalize;
}

.custom-toggler {
    border: none;
    background: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 99999;
}
.custom-toggler:focus{
    box-shadow: unset;
}
.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.navbar-toggler.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/*============|| login styling start ||============*/
.login_body{
    background-color: #F2EFFE;
}
.login_wrap{
    padding: 20px;
    border-radius: 12px;
    background-color: var(--white);
    border: 1px solid #75797F4D;
}
.login_main{
    max-width: 430px;
    margin: auto;
}
.login_form .heading h2{
    font-size: 35px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: capitalize;
}
.form-label{
    font-weight: 600;
    color: var(--secondary-color);
}
.required_color{
    color: var(--red);
}
.login_form .form-control{
    padding: 12px;
    border-radius: 40px;
    border-color: #DDDDDD;
    color: var(--black);
}
.login_form textarea.form-control{
    border-radius: 12px;
}
.login_form .form-control::placeholder{
    color: #999999;
}
.eye {
    top: 12px;
    right: 14px;
    cursor: pointer;
    color: var(--secondary-color);
}
.rembr_frgt .form-check-input{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #61656B33;
    border: unset;
}
.rembr_frgt .form-check-input:focus{
    box-shadow: unset;
}
.rembr_frgt .form-check-input:checked{
    background-color: #40388C;
}
.frgt{
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 600;
}
.or_hr::before, .or_hr::after {
    position: absolute;
    content: '';
    width: 15%;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #DDDDDD;
}
.or_hr::before {
    left: 30%;
}
.or_hr::after {
    right: 30%;
}
.googlr_link {
    border-radius: 40px;
    padding: 12px 30px;
    color: #666666;
    border: 1px solid #DDDDDD;
}
.forgt_wrap{
    max-width: 600px;
    margin: auto;
}
.forgt_wrap_icon{
    width: 195px;
    height: 195px;
    margin: auto;
    margin-bottom: 30px;
    background-color: #ff5c351a;
}
.otp-input{
    width: 50px;
    height: 50px;
    padding: 5px !important;
    text-align: center;
    border-radius: 50% !important;
    border: 1px solid #61656B80;
}
.login_swiper {
    background-color: #FFFFFF1A;
    border: 1px solid #FFFFFF33;
    backdrop-filter: blur(40px);
    border-radius: 12px;
    padding: 15px;
}
.login_left_side {
    padding: 50px;
    border-radius: 12px;
    background: url('../img/login_side_bg.png') no-repeat 100% 100% / cover, linear-gradient(180deg, #5E39FB 0%, #2E04AB 100%);
}
.login_left_heading{
    margin-bottom: 55px;
}
.login_left_heading h2{
    font-size: 32px;
    font-weight: 400;
    color: var(--white);
}
.login_left_heading p{
    color: #AFAFAF;
    text-transform: capitalize;
}
.login_swiper_main{
    border-radius: 12px;
    width: 100%;
    min-height: 330px;
    z-index: 1;
}
.login_swiper_main::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0C013466;
    z-index: 1;
}
.login_swiper_main .object-fit-cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.play_btn {
 position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  transition: opacity 0.3s ease;
  background: #262626;
  border-radius: 100%;
  padding: 8px;
}

.login_left_bottom{
    margin-top: 100px;
}
.login_left_bottom .swiper-pagination{
    position: unset;
}
.login_left_bottom .swiper-pagination .swiper-pagination-bullet{
    width: 33.33%;
    margin: 0;
    height: 4px;
    border-radius: 0;
    background-color: #FFFFFF1A;
    opacity: 1;
}
.login_left_bottom .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: var(--white);
    border-radius: 4px;
}
.rembr_frgt .form-check-label{
    color: var(--text);
}
.mt-40{
    margin-top: 40px;
}
/*============|| login styling end ||============*/

/*============|| home page styling start ||============*/
.home_section_left span{
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 500;
}
.home_section_left h1{
    font-size: 62px;
    font-weight: 600;
    color: var(--secondary-color);
}
.happy_customer_list li{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--white);
}
.happy_customer_list li:not(:first-child){
    margin-left: -10px;
}
.happy_customer_list li:hover{
    z-index: 1;
}
.happy_customer p{
    font-size: 18px;
    color: var(--secondary-color);
}
.home_section_scroller{
    display: flex;
    gap: 20px;
    align-items: stretch;
    max-height: 600px;
    overflow: hidden;
}
.hs_scroller{
    flex: 1;
    overflow: hidden;
    -webkit-mask: linear-gradient(0deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(0deg, transparent, white 20%, white 80%, transparent);
}
.hs_scroller_inner{
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    flex-direction: column;
    height: max-content;
    animation: scroll var(--_animation-duration, 30s) var(--_animation-direction, forwards) linear infinite;
}
.hs_scroller_inner.reverse {
  --_animation-direction: reverse;
}
@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-50% - 0.5rem));
    }
}
.hs_scroller_inner_img{
    overflow: hidden;
    border-radius: 12px;
    height: 290px;
}
.hs_scroller_inner_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trusted_area p{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
    text-transform: capitalize;
    color: var(--secondary-color);
}
.trusted_partner_box{
    position: relative;
    padding: 20px;
    height: 100%;
    /* border: 1px solid #61656B4D; */
}
.trusted_partner_box::before {
    position: absolute;
    content: "";
    background: #61656B4D;
    width: 100%;
    height: 1px;
    bottom: 0;
}
.trusted_partner_box::after {
    position: absolute;
    content: "";
    background: #61656B4D;
    width: 1px;
    height: 100%;
    right: 0;
}
.trusted_partner_area>.row {
    border: 1px solid #61656B4D;
    border-radius: 10px;
    overflow: hidden;
}
.trusted_partner_box img {
    transition: all 0.3s ease;
}
.trusted_partner_box:hover img {
    transform: scale(1.05);
}
.section_heading{
    margin-bottom: 50px;
}
.sh_head{
    font-size: 14px;
    font-weight: 400;
    padding: 5px 12px;
    color: var(--text);
    border-radius: 50px;
    background-color: #61656B1A;
    border: 1px solid #61656B33;
}
.section_heading h2{
    font-size: 42px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: capitalize;
}
.sh_head img{
    animation: rotate 3s linear infinite;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.our_services_box{
    height: 100%;
    border-radius: 12px;
    border: 1px solid #75797F4D;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.our_services_box_top{
    position: relative;
    padding: 20px;
    border-bottom: 1px solid #75797F4D;
}
.our_services_box_top::before{
    position: absolute;
    content: '';
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    border-radius: 0 0 15px 15px;
    background: var(--primary-color);
}
.our_services_box_top_icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #61656B1A;
}
.our_services_box_bottom{
    padding: 25px;
}
.our_services_box_bottom h2{
    font-size: 22px;
    font-weight: 500;
    color: var(--secondary-color);
}
.our_services_box:hover{
    background: var(--primary-color);
}
.our_services_box:hover .our_services_box_top_icon{
    background-color: var(--white);
}
.our_services_box:hover .our_services_box_top::before{
    background: var(--white);
}
.our_services_box:hover .our_services_box_bottom h2{
    color: var(--white);
}
.our_services_box:hover .our_services_box_bottom p,.faq_qiestion_box p{
    color: #AFAFAF;
}
.why_us_section{
    background-image: url('../img/home_slide_3.jpg');
    background-position: top, 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}
.why_us_section::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.952374) 52.37%, #000000 79.77%);
    z-index: -1;
}
.why_us_video{
    background-color: #101010;
    border: 1px solid #FFFFFF33;
    backdrop-filter: blur(40px);
    border-radius: 12px;
    padding: 15px;
}
.why_us_video .login_swiper_main::before{
    background-color: #0C013480;
}
.why_us_cont .sh_head{
    border-color: #FFFFFF33;
    background-color: #FFFFFF1A;
}
.why_us_cont p,.why_us_cont_cont p,.testimonials_box p,.footer_main_desc p{
    color: #AFAFAF;
}
.surveillance_arrow{
    position: relative;
}
.aiowlvision_surveillance_box{
    border-radius: 15px;
    border: 1px solid #61656B4D;
}
.as_img{
    min-height: 278px;
    border-radius: 15px;
    overflow: hidden;
}
.as_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.surveillance_arrow .swiper-button-next,
.surveillance_arrow .swiper-button-prev{
    position: unset;
    margin-top: 0;
    width: 45px;
    height: 45px;
    border: 1px solid #5E39FB;
    border-radius: 50%;
}
.surveillance_arrow .swiper-button-prev::after,
.surveillance_arrow .swiper-button-next::after{
    font-size: 0;
    background-image: url('../img/right_blue_arrow.svg');
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: contain;
    width: 20px;
    height: 8px;
}
.surveillance_arrow .swiper-button-prev::after{
    background-image: url('../img/left_blue_arrow.svg');
}
.surveillance_swiper .swiper-slide{
    position: relative;
}
.surveillance_swiper .swiper-slide::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFFBF;
}
.surveillance_swiper .swiper-slide.swiper-slide-active::before{
    background-color: transparent;
}
.smarter_day_section{
    background-image: url('../img/smarter_day_bg.png');
}
.why_us_icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FFFFFF1A;
}
.why_us_box{
    height: 100%;
    padding: 25px;
    border-radius: 12px;
    background-color: #060606;
    border: 1px solid #FFFFFF33;
}
.why_us_box:hover{
    background-color: #FFFFFF26;
}
.happy_partners_box .login_swiper_main{
    min-height: 400px;
}
.happy_partners_box .login_swiper_main::before{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 79.78%, #000000 100%);
}
.happy_partners_box .login_swiper_main .object-fit-cover{
    z-index: 1;
}
.shadowbit-slider {
    overflow: hidden;
    position: relative;
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}
.shadowbit-track {
    display: flex;
    animation: scrollLeft 20s linear infinite;
    gap: 80px;
}
/* Scroll left */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.testimonials_section{
    background-image: url('../img/testimonials_bg.png');
}
.testimonials_box{
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #FFFFFF33;
    background-color: #FFFFFF26;
}
.testimonial_user{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--white)
}
.testimonial_user img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonials_swiper .slick-track .slick-slide{
    margin: 10px;
}
.testimonials_swiper .swiper-slide,.testimonials_swiper .slick-track .slick-slide{
    position: relative;
}
.testimonials_swiper .swiper-slide::before,.testimonials_swiper .slick-track .slick-slide::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000ad;
    border-radius: 12px;
}
.testimonials_swiper .swiper-slide.swiper-slide-active::before,.testimonials_swiper .slick-slide.slick-current.slick-active.slick-center::before {
    background-color: transparent;
}
.testimonials_arrow .swiper-button-next, .testimonials_arrow .swiper-button-prev{
    border-color: var(--white);
}
.testimonials_arrow .swiper-button-prev::after{
    background-image: url('../img/left_white_arrow.svg');
}
.testimonials_arrow .swiper-button-next::after{
    background-image: url('../img/right_white_arrow.svg');
}
.testimonials_section .happy_customer_list li{
    cursor: pointer;
    flex-shrink: 0;
}
.testimonials_section .happy_customer_list li:not(:first-child){
    margin-left: 10px;
}
.happy_customer_list li.active{
    border-color: #7749ff;
}
.testimonials_section .happy_customer_list{
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.testimonials_section .happy_customer_list::-webkit-scrollbar {
    display: none;
}
.faq_qiestion_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('../img/faq_bg.png');
    background-position: top, 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    padding: 40px;
    min-height: 398px;
}
.faq_qiestion_box h2{
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
}
.faq_main .accordion .accordion-item{
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #75797F80;
}
.faq_main .accordion .accordion-item:not(:last-child){
    margin-bottom: 20px;
}
.faq_main .accordion .accordion-item .accordion-button{
    border-radius: 12px;
    padding: 25px 25px 12px 25px;
    font-size: 17px;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: capitalize;
     transition: padding 0.1s ease-in-out;
}
.faq_main .accordion .accordion-item .accordion-button.collapsed {
  padding: 25px;
}
.faq_main .accordion .accordion-item .accordion-button:not(.collapsed){
    background-color: transparent;
    box-shadow: unset;
}
.faq_main .accordion .accordion-item .accordion-button:focus{
    box-shadow: unset;
}
.faq_main .accordion .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed{
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}
.faq_main .accordion .accordion-item .accordion-body{
    padding: 25px;
    padding-top: 0;
}
.faq_main .accordion .accordion-item .accordion-button::after{
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: 
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232E04AB' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e"),
        linear-gradient(180deg, rgba(94, 57, 251, 0.1) 0%, rgba(46, 4, 171, 0.1) 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px, cover;
    border-radius: 50%;
}
.faq_main .accordion .accordion-item .accordion-button:not(.collapsed)::after{
    background: 
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e"),
        linear-gradient(180deg, #5E39FB 0%, #2E04AB 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px, cover;   
}
.faq_main .accordion .accordion-item.active{
    border-color: #2E04AB;
}
.blog_box{
    height: 100%;
}
.blog_box .as_img{
    min-height: unset;
    max-height: 230px;
}
.blog_box .date_title{
    color: var(--text);
    font-weight: 300;
}
.blog_box .date_title strong::before{
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--text);
    top: 50%;
    transform: translateY(-50%);
    left: 2px;
}
.ready_more{
    color: var(--secondary-color);
    font-weight: 600;
}
.ready_more:hover,.footer_list li .footer_list_link:hover{
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.newsletter{
    padding: 25px 35px 25px 25px;
    border-radius: 12px;
    background: var(--primary-color);
    z-index: 1;
    top: -65px;
}
.newsletter::before{
    position: absolute;
    content: '';
    top: 50%;
    right: -100px;
    width: 57%;
    height: 253px;
    background-color: #7051F2;
    z-index: -1;
    border-radius: 134px;
    transform: translateY(-50%);
    max-width: 500px;
}
.newsletter_cont h2{
    font-size: 25px;
    font-weight: 500;
}
.newsletter_form .form-control{
    padding: 16px;
    border-radius: 40px;
    border-color: #DDDDDD;
    color: var(--white);
    font-size: 14px;
    background-color: var(--black);
    border: unset;
    padding-right: 115px;
}
.newsletter_form .form-control::placeholder{
    color: #7F7F7F;
}
.newsletter_form{
    max-width: 350px;
    margin-left: auto;
}
.newsletter_form .primary_btn{
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 8px 25px;
    font-size: 14px;
}
.footer_main_box h2{
    font-size: 18px;
    font-weight: 600;
}
.footer_list li:not(:last-child){
    margin-bottom: 6px;
}
.footer_list li .footer_list_link{
    color: #AFAFAF;
}
.footer_contact_list li{
    display: flex;
    align-items: center;
    gap: 15px;
    color: #AFAFAF;
}
.footer_contact_list li:not(:last-child){
    margin-bottom: 15px;
}
.footer_contact_icon{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--white);
    flex-shrink: 0;
}
.footer_social_list li .footer_social_link{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--white);
    background-color: #0D0D0D;
}
.footer_social_list li .footer_social_link:hover{
    background-color: #3107b0;
}
.footer_bottom{
    padding: 15px 0;
    border-top: 1px solid #FFFFFF1A;
}
.mob_head_icon{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #5E39FB;
}
.pb-150{
    padding-bottom: 150px !important;
}
.blog_box:hover .as_img img{
    transform: scale(1.03);
} 
footer {
    z-index: 9;
    position: relative;
}
/*============|| home page styling end ||============*/

/*============|| About us page styling start ||============*/
.aboutus_slide_box{
    position: relative;
    z-index: 9;
    mask: unset;
    -webkit-mask: unset;
}
.aboutus_slide_box .shadowbit-track{
    gap: 10px;
}
.aboutus_slide_box .marqueeimg-box{
    flex-shrink: 0;
    padding: 8px;
    border-radius: 12px;
    background-color: var(--white);
    border: 1px solid #75797F4D;
}
.aboutus_slide_box::before,.aboutus_slide_box::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 15%;
    height: 100%;
    z-index: 6;
    background: linear-gradient(90deg, transparent, white 0%, white 10%, transparent);
}
.aboutus_slide_box::after{
    left: unset;
    right: 0;
    background: linear-gradient(-90deg, transparent, white 0%, white 10%, transparent);
}
.aboutus_slide_box .marqueeimg-box img {
  border-radius: 8px;
  height: 280px;
  object-fit: cover;
  object-position: center;
}
.aboutus_slide_box .slick-slide{
    margin: 5px;
}
.wwa_img_left{
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.wwa_img_left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wwa_img_left img:hover,.main_industries_cont_left:hover img{
    transform: scale(1.01);
}
.who_we_are_count_box h2{
    font-size: 30px;
    font-weight: 700;
    color: var(--secondary-color);
}
.get_the_app_section{
    position: relative;
    z-index: 9;
    background-image: url('../img/get_the_app_bg.png');
    background-position: top, 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
/*============|| About us page styling end ||============*/

/*============|| Pricing page styling start ||============*/
.services_plans_box{
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #75797F80;
}
.services_plans_box_top h2{
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary-color);
}
.services_plans_price{
    border-radius: 25px;
    background: linear-gradient(180deg, rgba(94, 57, 251, 0.05) 0%, rgba(46, 4, 171, 0.05) 100%);
}
.services_plans_price h2{
    font-size: 70px;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 20px 15px;
}
.services_plans_price .primary_btn{
    background: var(--white);
    border: 1px solid #5E39FB;
    color: #5E39FB;
}
.services_plans_price .primary_btn:hover{
    color: var(--white);
}
.ervices_plans_box_list li{
    font-size: 18px;
    color: var(--secondary-color);
}
.ervices_plans_box_list li:not(:last-child){
    margin-bottom: 20px;
}
.services_plans_box.active{
    background: var(--primary-color);
    border-color: #0C013480;
}
.services_plans_box.active .services_plans_box_top h2,.services_plans_box.active .ervices_plans_box_list li{
    color: var(--white);
}
.services_plans_box.active .services_plans_box_top p{
    color: #AFAFAF;
}
.services_plans_box.active .services_plans_price{
    background: #FFFFFF1A;
}
.services_plans_box.active .ervices_plans_box_list li img{
    filter: grayscale(1) brightness(10);
}
/*============|| Pricing page styling end ||============*/

/*============|| contact us page styling start ||============*/
.contact_form_main{
    padding: 25px;
    border-radius: 12px;
    background-color: var(--white);
    box-shadow: 0px 0px 40px 0px #0000001A;
}
.contact_form_left{
    height: 100%;
    padding: 25px;
    overflow: hidden;
    border-radius: 12px;
    background: url('../img/contact_form_bg.png'),var(--primary-color);
    background-position: bottom right;
    background-repeat: no-repeat;
}
.contact_form_left .footer_social_list li .footer_social_link{
    background-color: #ffffff0d;
}
/*============|| contact us page styling end ||============*/

/*============|| Industries page styling start ||============*/
.our_industries_tabs_area .nav-tabs{
    border-color: #0C01344D;
}
.our_industries_tabs_area .nav-tabs li{
    width: 25%;
}
.our_industries_tabs_area .nav-tabs li a{
    padding: 15px;
    font-size: 22px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #75797F26;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.our_industries_tabs_area .nav-tabs li a.active{
    color: var(--white);
    background: var(--primary-color);
}
.main_industries_cont_left{
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #75797F4D;
    background-color: var(--white);
    overflow: hidden;
    height: 100%;
    min-height: 340px;
}
.main_industries_cont_left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.main_industries_cont_right{
    border-color: #75797F4D;
    background-color: var(--white);
}
.main_industries_cont_right .why_us_icon{
    background-color: #75797f1a;
}
.main_industries_cont_right .why_us_cont_cont p{
    color: var(--text);
}
.main_industries_cont_right:hover{
    border-color: #5E39FB;
    box-shadow: 0px 0px 40px 0px #5E39FB40;
}
.mb-60{
    margin-bottom: 60px;
}
.timeline-steps{
    position: absolute;
    top: 0;
    left: -140px;
    width: 60px;
    height: 60px;
    font-size: 28px;
    font-weight: 600;
    color: var(--text);
    border-radius: 50%;
    border: 1px solid #75797F99;
    background-color: #75797F1A;
}
.timeline-step_line::before{
    position: absolute;
    content: '';
    top: 60px;
    left: -110px;
    width: 2px;
    height: 100%;
    background: #75797F99;
}
.timeline-step_line::after {
    content: "";
    position: absolute;
    left: -110px;
    top: 60px;
    width: 2px;
    height: var(--fill-progress, 0%);
    background: #2E04AB;
    transition: height 0.2s linear;
}
.remove_step_line::before,.remove_step_line::after{
    display: none;
}
.timeline-step_line.active .timeline-steps{
    color: #2E04AB;
    border-color: #2E04AB;
    background: linear-gradient(180deg, rgba(94, 57, 251, 0.1) 0%, rgba(46, 4, 171, 0.1) 100%);
}
/* .timeline-step_line.active::before{
    background: #2E04AB;
} */
.main_industries_cont_list{
    color: var(--text);
}

/*============|| Industries page styling end ||============*/


/* 
.video_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0,0,0,0.85));
  z-index: 1;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
  height: calc(100% - 40px);
}
 */


.vertical_lines {
  z-index: 3;
  pointer-events: none;
  position: fixed;
  inset: 0% 0% auto;
}
.vertical_lines .u-container {
  position: relative;
}
.vertical_lines .line_vertical {
  background-color: #e0e0e0;
  width: 1px;
  height: 100vh;
  position: absolute;
  inset: 0% auto 0% -2%;
}
.vertical_lines .line_vertical.right {
  inset: 0% -2% 0% auto;
}
.vertical_lines .line_horizontal {
  background-color: #e0e0e0;
  width: 100%;
  height: 1px;
  position: absolute;
}
.happy_partners_section .shadowbit-track img{
    min-width: 150px;
}

/* Scroll to Top Button Base Styles */
.scrollToTopBtn {
    bottom: 23px;
    right: 15px;
    background-color: #522CE857;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
    border: 1px solid #FFFFFF33;
}

.scrollToTopBtn.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}
.scrollToTopBtn:hover {
    animation: bounce 0.5s;
    background-color: #522CE8
}
.scrollToTopBtn img{
    transform: rotate(270deg);
}