html {
    scroll-behavior: smooth;
    font-size: 16px;
    overscroll-behavior-y: contain;
    overflow-x: hidden;

}

* {
    box-sizing: border-box;
    list-style: none;
    text-decoration: none !important;
    padding: 0;
    margin: 0;
}

body {
    overflow-x: hidden;
    font-family: "Space Grotesk", sans-serif;
    font-family: "Golos Text", sans-serif;
    background-color: #060d15;
    background-color: white;
    color: black;
    line-height: normal;
    overscroll-behavior-y: contain;

}


#main-container {
    min-height: 100vh;
    overflow: visible;
    position: relative;
    will-change: transform;
}


ul {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
}


.cursor {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999999;
    color: white;
    font-size: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* mix-blend-mode: difference; */
    pointer-events: none;
    overflow: hidden;

}

/* header-css-start */

#header {
    width: 100%;
    display: inline-block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 160px;

}

.logo a {
    display: inline-block;
}

.logo a img {
    width: 100%;
}

.nav-bar ul {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-bar>ul>li>a {
    color: black;
    display: flex;
    padding: 10px 0;
    overflow: hidden;
    text-transform: uppercase;
}

.nav-bar>ul>li>a:hover span {
    animation: fadeIn 0.4s ease 0.1s forwards;
}

.nav-bar>ul>li>a span:nth-child(1) {
    animation-delay: 0.05s;
}

.nav-bar>ul>li>a span:nth-child(2) {
    animation-delay: 0.1s;
}

.nav-bar>ul>li>a span:nth-child(3) {
    animation-delay: 0.15s;
}

.nav-bar>ul>li>a span:nth-child(4) {
    animation-delay: 0.2s;
}

.nav-bar>ul>li>a span:nth-child(5) {
    animation-delay: 0.25s;
}

.nav-bar>ul>li>a span:nth-child(6) {
    animation-delay: 0.3s;
}

.nav-bar>ul>li>a span:nth-child(7) {
    animation-delay: 0.35s;
}

.nav-bar>ul>li>a span:nth-child(8) {
    animation-delay: 0.4s;
}

.nav-bar>ul>li>a span:nth-child(9) {
    animation-delay: 0.45s;
}

.demo a {
    display: flex;
    padding: 12px 26px;
    background: #0511AA;
    background: linear-gradient(25deg, rgba(5, 17, 170, 1) 27%, rgba(2, 37, 253, 1) 100%);
    color: white;
    border-radius: 120px;
    transition: 0.5s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.left-navs {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

div#menu-btn-1 {
    display: flex;
    align-items: center;
    gap: 5px;
    display: none;
    cursor: pointer;
}

.header-bottom {

    padding: 16px 0;
    /* background-image: url('../images/header_bg.png');
    background-size: contain; */
    position: relative;

}

.header-bottom::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('../images/header_bg.png');
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.7;
    /* filter: blur(10px); */
}

/* .sticky .header-bottom{
    background-color: black;
} */

#nav-mobile {
    display: none;
}



/* banner-css-start */

canvas {
    background-image: url('../images/scene/1.webp');
    background-size: cover;
    object-fit: cover;

}


canvas {
    height: 100vh;
    width: 100%;
    position: relative;
    /* min-height: 100vh; */
}

/* banner-css-start */

#banner-main {
    width: 100%;
    padding: 60px 0;
    position: absolute;
    top: 0;
    height: 100vh;
    left: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-content .demo {
    display: inline-flex;
    margin-top: 15px;
}

.banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.banner-content h1 {
    font-size: 48px;
    color: black;
    font-weight: 600;
    line-height: normal;


}

.banner-content h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 36px;
    color: black;
    font-weight: 600;
    line-height: normal;
    color: #FF0000;
}

/* about-home-css */


#about-home {
    display: flex;
    padding: 60px 0;
    width: 100%;
}

.about-home-main {
    display: flex;
    width: 100%;
    margin-top: 50px;
    align-items: center;

}

.abouthome-left {
    width: 50%;
}

.abouthome-left video {
    width: 100%;
}

.abouthome-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
}

.abouthome-right .demo {
    display: inline-flex;
}

.about-home-headings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-home-headings h2 {
    font-size: 32px;
    color: black;
    font-weight: 500;

}

.about-home-headings h3 {
    font-size: 42px;
    color: black;
    font-weight: 500;
    font-family: "Space Grotesk", sans-serif;

}

/* presence-box-css */

/* .presence-boxes {
    display: flex;
    row-gap: 15px;
    margin-top: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.presece-box {
    padding: 18px 14px;
    background: white;
    display: flex;
    gap: 16px;
    border-radius: 2px;
    width: 48.50%;
    transition: 0.3s;
    cursor: pointer;
    box-shadow: 0 0 10px #00000017;
    align-items: center;
}

.presece-box:hover {
    transform: translateY(-10px);

}

.pre-box-icon img {
    width: 40px;
}

.presece-box p {
    font-size: 18px;
} */



.presence-boxes {
    display: flex;
    /* gap: 20px; */
    margin-top: 40px;
    justify-content: space-between;
}

.presece-box {
    padding: 20px 16px;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 6px;
    width: 24%;
    transition: 0.3s;
}

.presece-box:hover {
    transform: translateY(-10px);

}

.pre-box-icon img {
    height: 45px;
}

.presece-box p {
    font-size: 18px;
}


.about-ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-ul ul {
    display: flex;
    flex-direction: column;
    gap: 8px;


}

.about-ul ul li {
    position: relative;
    padding-left: 25px;

}

.about-ul ul li::after {
    content: '';
    background-position: top left;
    background-size: contain;
    width: 20px;
    height: 20px;
    top: 3px;
    left: 0;
    background-image: url('../images/instant-get.png');
    position: absolute;
    background-repeat: no-repeat;
    position: absolute;
}


.about-ul ul li span {
    font-weight: 500;
}

/* step-css-start */

section.how-it-does {
    background-color: black;
    color: white;

}

.dow-app {
    display: flex;
    gap: 10px;
}

.dow-app a img {
    width: 120px;
}

.how-it-works {
    /* grid-column-gap: 5rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch; */
    display: flex;
    position: relative;
}

.step-images img {
    width: 50%;
    position: absolute;
    top: 0;
}

.steps {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    width: 50%;

}

.step.active {
    opacity: 1;
    transform: translateX(0);
}

.step {

    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    opacity: 1;
    transition: all 0.3s ease;
    gap: 20px;
}

/* .step-images {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    display: flex;
    position: relative;
    top: 0;
} */


.right-image {
    width: 50%;
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh !important;

}

.right-image img {
    width: 50%;
    max-width: 500px;
    border-radius: 20px;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.step-point {
    font-size: 16px;
    font-weight: 600;
    color: white;
    position: relative;
}

.step-point::after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 80%;
    height: 1px;
    background-color: white;
    left: 0;
}

.step-heading {
    font-size: 64px;
    font-weight: 700;
}

.step-sub {
    font-size: 18px;
}


/* feature-css-strat */



#features {
    display: flex;
    width: 100%;
    padding: 60px 0;
    overflow-x: hidden;
}

.feature-heading h2 {
    font-size: 48px;
}

/* .feature{
    display: flex;
  } */



.features-grid {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.column-left,
.column-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left-bottom {
    display: flex;
    gap: 20px;
}

.left-bottom .feature {
    width: 50%;
}

.feature {
    padding: 24px;
    border-radius: 16px;
    background: #f3f3f3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}


.neelteck-product-details .tegline {
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgb(229 229 229);
    padding: 4px 12px;
    border-radius: 40px;
    color: #0512ad;
    display: inline-block;
}

/* Individual Backgrounds */
.scanner {
    background: #8a73ff;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 0px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sync {
    background: black;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sync .feature-content {
    gap: 10px;
}

.crm {
    background: #00d3ec;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.share {
    background: #eaeeff;
    color: #000;
    display: flex;
    gap: 20px;
    padding-bottom: 0;
}

.share .feature-image-b img {
    width: 250px;
    height: 100%;
}

.share .feature-content {
    justify-content: center;
    gap: 10px;
}

.signature {
    background: #0b7dff;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 0;

}

.swiper-wrapperss {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.swiper-wrapperss img {
    width: 40%;
}

.feature-heading {
    margin-bottom: 40px;
}

.feature h3 {
    font-size: 32px;
}

.feature .heading-feature {
    font-size: 20px;
}

.feature-image-b img {
    width: 100%;
}

.sync .feature-image-b img {
    width: 50px;
}

.crm .feature-image-b img {
    width: 50px;
}

.crm .feature-content {
    gap: 10px;
}



/* neel-teck-sos-card-css */



div#neeleck-products {
    display: flex;
    width: 100%;
    padding: 60px 0;
}

.neelteck-products {
    display: flex;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 100px;
}

.neelteck-product-left {
    width: 50%;
    overflow: hidden;
    display: flex;
    /* flex-direction: column; */
    gap: 20px;
}

.neelteck-product-details {
    width: 50%;
}


.sub-images-products {
    display: flex;
    gap: 10px;
    margin: 2px;
}

.neelteck-product-img img {
    width: 100%;
}

.sub-product-img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 0 2px #0000002f;
    padding: 5px 0;

}

.sub-product-img img {
    max-width: 90px;

}

.product-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.product-heading h2 {
    font-size: 52px;
    max-width: 75%;
    margin: auto;
}

.neelteck-product-details h3 {
    font-size: 32px;
    font-weight: 600;
}

.neelteck-product-details h3 span {
    font-size: 18px;
    display: flex;
    font-weight: 400;
}

.price-product {
    text-decoration: line-through !important;

    font-size: 28px;
    font-weight: 700;
    color: #888888;

}


.item-meta {
    display: flex;
    align-items: center;
}

.discount-original-price {
    font-size: 28px;
    font-weight: 700;
    color: #d33f49;
    padding-left: 20px;

}

.offer-per {
    font-size: 14px;
    padding-left: 6px;
}

/* .product-overview p{
    color: #58616e;
} */

.neelteck-product-details {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-overview {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-buulet-point {
    padding: 30px 20px;
    background: #f5f5f5;
    border-radius: 4px;
}

.product-buulet-point ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 10px;
}

.product-buulet-point ul li {
    list-style: disc;
}

.btn-1 {
    gap: 20px;
}

.neelteck-product-img {

    width: 100%;
    background: #e9e9e9;
    /* background: -webkit-linear-gradient(to right, #0511aa, #031cd7, #0221ed);
    background: linear-gradient(to right, #0511aa, #031cd7, #0221ed); */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
}

.tabcontent {
    display: none;
    position: relative;
    padding: 50px 0;




}

.tabcontent.active-1 {
    display: flex;
}


.neelteck-products:last-child {
    margin-bottom: 0;
}

.product-img-back {
    display: none;
}

/* .sub-main-img:hover .product-img-back {
    display: block;
}

.sub-main-img:hover .product-img-front {
    display: none;
} */

.product-img-back img {
    width: 100%;
}



/* whatsapp-css */

.whats-app {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: end;
    gap: 8px;
    z-index: 99;
    flex-direction: column;

}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2db742;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    cursor: pointer;
    position: relative;

}

.btn-popup-text {
    font-size: 12px;
    background-color: #f5f7f9;
    padding: 8px;
    border-radius: 2px;
    transition: 0.4s;
    position: relative;
    cursor: pointer;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;

}

.whatsapp-icon .fa-xmark {
    display: none;
}

.whatsapp-body {
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    background-color: white;
    width: 340px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.5s;
    position: fixed;
    right: 25px;
    bottom: 90px;
}

.whatsapp-headr {
    display: flex;
    padding: 20px;
    background: #2db742;
    color: white;
    gap: 10px;
}

.wa-header-icon {
    font-size: 40px;
}

.wa-header-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wa-header-text p {
    font-size: 12px;
}

.wa-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.wa-body span {
    font-size: 12px;
    color: #a5abb7;
}

.wa-profile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.wa-profile {
    width: 48px;
    height: 48px;
    background: url('../images/customer-care.png') center center / cover no-repeat;
}

.whatsapp-dp {
    padding: 10px;
    background-color: #f5f7f9;
    border-left: 2px solid #2db742;
    display: flex;
    align-items: center;
    gap: 10px;

}

.wa-pf-text h6 {
    font-size: 14px;
    color: black;
}

.wa-pf-text span {
    font-size: 10px;
}

.wa-pf-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 48px);
}

.wa-pf-wa i {
    font-size: 34px;
    color: #2db742;
}

.whatsapp-toggle .whatsapp-body {
    opacity: 1;
    overflow: visible;
    visibility: visible;
    bottom: 110px;
}

.whatsapp-toggle .btn-popup-text {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: translateY(20px);
    position: relative;
    pointer-events: none;

}

.powerd-by-logo img {
    width: 14px;
}

.powerd-by-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-icon::after {
    position: absolute;
    background: url(../images/cross.svg) 50% / 30px auto no-repeat;
    background-size: 12px auto;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.3s;
    transform: scale(0) rotate(-1turn);
}

.whatsapp-icon::before {
    position: absolute;
    background: url(../images/whats-app.svg) 50% / 30px auto no-repeat;
    background-size: 25px auto;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 0.3s;


}

.whatsapp-toggle .whatsapp-icon::after {
    transform: scale(1) rotate(0);
    opacity: 1;
}

.whatsapp-toggle .whatsapp-icon::before {
    opacity: 0;
    transform: scale(0) rotate(-1turn);

}


.btn-1 a {
    display: flex;
    padding: 14px 30px;
    background: #0511AA;
    background: linear-gradient(25deg, rgba(5, 17, 170, 1) 27%, rgba(2, 37, 253, 1) 100%);
    color: white;
    border-radius: 120px;
    transition: 0.5s;
    align-items: center;
    gap: 8px;
}

.btn-1 a i {
    font-size: 14px;
}

.btn-1 {
    display: flex;
    margin-top: 10px;
    gap: 20px;
}

.btn-1 a:hover {
    background: #0511AA;
    background: linear-gradient(205deg, rgba(5, 17, 170, 1) 27%, rgba(2, 37, 253, 1) 100%);
    transition: 0.5s;
}


.refund-u {
    background-color: black;
    border-radius: 16px;
}

.refund-you {
    overflow-x: hidden;
}

.secure-img {
    filter: invert(1);
}


/* how-it-works-css */



/* Main Image Slider */

.mainSwiper {
    width: 100%;
    max-width: 700px;
    margin: auto;
}

.mainSwiper .swiper-slide img {
    width: 100%;
    border-radius: 12px;
}

/* Steps Slider (desktop only) */


.thumbSwiper .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
    opacity: 1;
    transition: 0.3s;
    position: relative;
}

.thumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.step-box small {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.step-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.step-box h5 {
    font-weight: 700;
    font-size: 24px;

}

.step-box p {
    font-size: 16px;
    color: #333;
    max-width: 250px;
}

/* Progress Bar */
.progress-bar {
    height: 3px;
    width: 0;
    background: #000;
    transition: width linear;
    position: relative;
    margin-bottom: 10px;
    z-index: 9;
}

.step-box::after {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f5f5f5;
    content: "";
    width: 100%;
    height: 3px;
    z-index: -1;
}

.thumbSwiper {
    width: 100%;
    margin-top: 50px;
}

.swiper.thumbSwiper {
    height: auto;
}

section#step-process {
    display: flex;
    width: 100%;
    padding: 60px 0 10px 0;
}

.steps-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    display: none;
}

.steps-mobile .step-box img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
}

.sub-heading h2 {
    font-size: 36px;
    font-weight: 500;
    text-align: center;
}

.sub-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-direction: column;
    gap: 15px;
}


/* review-css-start */


section#reviews {
    padding: 60px 0;
    display: flex;
}

.reviws-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.reviws-heading h2 {
    font-size: 48px;
    font-weight: 600;
}

.reviws-heading {
    max-width: 900px;
    margin: auto;
    text-align: center;
    margin-bottom: 40px;

}

.our-reviews {
    column-count: 3;
    column-gap: 20px;

}

.reviewer-img img {
    width: 100%;

}

.review-box {
    break-inside: avoid;
    background-color: #f5f5f5;
    padding: 30px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.review-name {
    font-size: 20px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 5px;

}

.review-name span {
    font-size: 12px;
}

.review-rating i {

    color: transparent;
    background: linear-gradient(25deg, rgba(5, 17, 170, 1) 27%, rgba(2, 37, 253, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.review-text p {
    color: hsl(0 0% 27%);
}

.reviewer-img {
    border-radius: 10px;
    overflow: hidden;
}


/* accordian-css-star */

#faqs-accordians {
    padding-top: 40px;
    padding-bottom: 60px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion__item {
    background-color: white;
    border-top: none;
    transition: 0.5s;
}

.accordion__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    cursor: pointer;
    background-color: black;
    position: relative;

}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding: 0px 20px;
    color: white;
    background-color: black;
}

.accordion__title h3 {
    font-size: 16px;
    font-weight: 500;
    color: white;
    margin-bottom: 0;
}

.icons-plus-minus span {
    font-size: 24px;
    color: white;
    transition: 0.5s;

}

.tab-open .icons-plus-minus span:nth-child(1) {
    display: none;
}

.tab-open .icons-plus-minus span:nth-child(2) {
    display: block;
}

.accordion__content p {
    padding-bottom: 15px;
    text-align: justify;
    font-style: italic;
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-size: 14px;
}

.accordion__item:hover .accordion__title .icons-plus-minus {
    transform: rotate(360deg);
    transition: 0.3s;
}

.icons-plus-minus span:nth-child(2) {
    display: none;
}

.faqs-acco {
    max-width: 75%;
    margin: auto;
}

/* flip-image-css-start */

.flip-card {
    background-color: transparent;
    width: 22rem;
    /* fixed width */
    height: 200px;
    /* fixed height */
    perspective: 1000px;
    /* 3D effect */
    margin: auto;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.8s ease-in-out;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: .625rem;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.nfc-img-radio {
    border: 1px solid #000 !important;
    box-shadow: 8px 8px 10px rgba(0, 0, 0, .35) !important;
    height: 100%;
    width: 100%;
    border-radius: .625rem;
    overflow: hidden;
}

.nfc-img-radio img {
    width: 100%;
    height: 100%;
}

.uv-sticker .nfc-img-radio img {
    object-fit: contain;
}

.uv-sticker .card {
    background-color: transparent;
    border: none !important;
    box-shadow: none !important;
}

/* footer-css */

footer {
    display: flex;
    padding: 60px 0;
    width: 100%;
    background-color: #f5f5f5;

}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    width: 200px;
}

.footer-logo a img {
    width: 100%;
}

.socail-media ul {
    display: flex;
    gap: 15px;
}

.socail-media ul li a {
    font-size: 18px;
    color: white;
    background-color: white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    border-radius: 50%;
    position: relative;

}





.footer-icons {
    margin-top: 30px;
}



.socail-media ul li:nth-child(1) a span i {
    color: #1877F2;
}

.socail-media ul li:nth-child(2) a span i {
    color: #E4405F;
}

.socail-media ul li:nth-child(3) a span i {
    color: black;
}

.socail-media ul li:nth-child(4) a span i {
    color: #0A66C2;
}

.socail-media ul li:nth-child(5) a span i {
    color: #FF0000;
}

section#step-mobile-view {
    display: none;
}

/* contact-form-css */

#contact-form-enquery {
    padding: 60px 0;
    font-family: "Poppins", sans-serif;
}

.contact-wrap {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-wrap h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #111;
}

.contactForm .form-group {
    margin-bottom: 20px;
}

.contactForm .label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    font-size: 14px;
    color: #111;

}

.text.pl-3 {
    width: calc(100% - 55px);
}

.contactForm .form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding: 10px 5px;
    font-size: 16px;
    box-shadow: none;
    font-weight: 100;


}

.contactForm .form-control:focus {
    border-color: #0511AA;
    outline: none;
    box-shadow: none;
}

.contactForm textarea.form-control {
    resize: none;
    height: 120px;
}

/* Button */
.contactForm .btn {
    background: #0511AA;
    background: linear-gradient(25deg, rgba(5, 17, 170, 1) 27%, rgba(2, 37, 253, 1) 100%);
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contactForm .btn:hover {
    background: #0511AA;
    background: linear-gradient(25deg, rgba(2, 37, 253, 1) 100%, rgba(5, 17, 170, 1) 27%);
}

/* Left Info Box */
.info-wrap {
    color: #fff;
    border-radius: 8px 0 0 8px;
    background: #041ace;
}

.info-wrap h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.info-wrap p {
    font-size: 14px;
    margin-bottom: 30px;
}

.dbox {
    margin-bottom: 20px;
}

.dbox .icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    margin-right: 15px;
}

.dbox .text span {
    font-weight: 600;
    display: block;
    font-size: 14px;
}

.dbox .text p {
    margin: 0;
    font-size: 14px;
}

.dbox .text a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.dbox .text a:hover {
    text-decoration: underline;
}


#message {
    resize: vertical;
}

.contactForm .form-control {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 0;
}

textarea.form-control {
    height: inherit !important;
}

h2.heading-section {
    font-size: 38px;
}

@media screen and (max-width:992px) {


    div#menu-btn-1 {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-bar {
        width: 95%;
        position: fixed;
        top: 75px;
        left: 50%;
        background-color: white;
        height: auto;
        z-index: 999;
        transition: 0.5s;
        transform: translateX(-50%);
        border-radius: 10px;
        display: none;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .header-bottom.active-navbar .nav-bar {
        display: block;
    }



    .nav-bar ul {
        display: flex;
        justify-content: center;
        gap: 30px;
        align-items: center;
        flex-direction: column;
        padding: 40px;
        width: 100%;
    }

    .nav-bar>ul>li {
        width: 100%;
    }

    .nav-bar>ul>li>a {
        width: 100%;
        justify-content: center;
    }

    .header-bottom::after {
        background-size: cover;
    }

    .abouthome-left {
        width: 100%;
    }

    .abouthome-right {
        width: 100%;
        gap: 30px;
    }

    .about-home-main {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .presence-boxes {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .presece-box {
        width: 49%;
    }

    .step-heading {
        font-size: 60px;
        font-weight: 700;
    }

    .features-grid {
        flex-direction: column;
    }

    .column-left,
    .column-right {
        width: 100%;
    }

    .product-heading h2 {
        font-size: 46px;
        max-width: 100%;
        margin: auto;
    }

    .neelteck-products {
        flex-direction: column;
    }

    .neelteck-product-left {
        width: 100%;
    }

    .neelteck-product-details {
        width: 100%;
    }

    .neelteck-product-img {

        padding: 80px 0;
    }

    .neelteck-products:nth-child(odd) {
        flex-direction: column-reverse;
    }

    .secure-img {
        width: 100%;
    }

    .faqs-acco {
        max-width: 85%;
    }


    .tri-gap {
        gap: 30px;
    }


}

@media screen and (max-width:768px) {

    .feature-heading h2 {
        font-size: 42px;
    }

    canvas {
        background-image: url('../images/mscene/m1.webp');
        background-size: cover;
        object-fit: cover;

    }

    .container {
        max-width: 100%;
    }

    .nav-bar ul {
        gap: 20px;

    }

    .our-reviews {
        column-count: 2;
    }

    .faqs-acco {
        max-width: 95%;
    }

    .how-it-does {
        display: none;
    }

    /* step-mobile-css */

    .step-mobile-res {
        display: flex;
        flex-direction: column;
    }

    .step-mobile-res {
        display: flex;
        flex-direction: column;

    }



    .step-mobile-text {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: start;
        color: white;
    }



    .step-mobile-img img {
        width: 100%;
    }

    #step-mobile-view {
        width: 100%;
        overflow-x: hidden;
    }

    .first-step-mobile {
        padding: 60px 10px;
        background: #000000;
    }

    #step-mobile-view .step-first-mb2:nth-child(2) .first-step-mobile {
        background-color: #1a1f5b;
        border-radius: 60px 60px 0 0;
    }

    #step-mobile-view .step-first-mb3:nth-child(3) .first-step-mobile {
        background-color: #1D24CA;
        border-radius: 60px 60px 0 0;
    }

    .step-first-mb2 {
        background-color: #000000;
    }

    .step-first-mb3 {
        background: #1a1f5b;
    }

    .step-first-mb3 {
        background: #1a1f5b;
    }

    section#step-mobile-view {
        display: block;
    }

    .mainSwiper {
        display: none;
    }

    .thumbSwiper {
        display: none;
    }

    .steps-mobile {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .step-box p {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width:576px) {

    .footer-main {
    gap: 20px;
    flex-direction: column;
}

    section#step-process {

        padding: 10px 0 10px 0;
    }

    .share{
        padding-bottom: 24px;
    }

    .step-heading {
        font-size: 56px;
    }

    .nav-bar>ul>li>a {
        padding: 6px 0;

    }

    .whatsapp-btn {

        gap: 8px;
    }

    .whats-app {

        right: 15px;
        bottom: 15px;
    }

    .banner-content h2 {
        font-size: 32px;

    }

    .banner-content h1 {
        font-size: 38px;
    }

    .left-navs {
        gap: 20px;

    }

    .presece-box {
        width: 100%;
        padding: 30px 20px;
    }

    .about-home-headings h3 {
        font-size: 36px;
    }

    .about-home-main {
        margin-top: 40px;
    }

    .first-step-mobile {
        padding-bottom: 20px;
    }

    .our-reviews {
        column-count: 1;
    }

    .nav-bar ul {
        gap: 15px;

        padding: 40px;
    }

    .left-bottom .feature {
        width: 100%;
    }

    .left-bottom .feature {
        width: 100%;
    }

    .left-bottom {

        flex-direction: column;
    }

    .column-left,
    .column-right {
        gap: 30px;
    }

    .left-bottom {
        gap: 30px;

    }

    .features-grid {
        gap: 30px;

    }

    .share {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .neelteck-product-img {
        padding: 60px 0;
    }

    .neelteck-products {
        margin-bottom: 70px;
    }
}

@media screen and (max-width:468px) {
    .product-heading h2 {
        font-size: 36px;
    }

    .step-heading {
        font-size: 52px;
    }

    #features {

        padding-bottom: 20px;
    }

    .left-navs {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .logo {
        width: 140px;
    }

    .demo a {

        font-size: 14px;
        padding: 10px 20px;
    }

    .left-navs .demo a {
        font-size: 14px;
        padding: 8px 16px;
    }

    .presence-boxes {
        row-gap: 30px;
    }

    #faqs-accordians {
        padding-top: 40px;

    }

    .flip-card {

        width: 20rem;
        height: 190px;

    }

    .neelteck-product-img {
        padding: 50px 0;
    }

    div#menu-btn-1 {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .btn-1 a {
        padding: 12px 26px;
    }




}

@media screen and (max-width:389px) {

    .banner-content {
        gap: 5px;
    }

    .logo {
        width: 120px;
    }

    .feature-heading h2 {
        font-size: 40px;
    }

    .btn-1 {
        display: flex;
        margin-top: 10px;
        gap: 10px;
    }

    .neelteck-product-img {
        padding: 40px 0;
    }

    .flip-card {
        width: 18rem;
        height: 180px;
    }

    .banner-content h1 {
        font-size: 34px;
    }

    .banner-content h2 {
        font-size: 26px;
    }

    .step-heading {
        font-size: 50px;
    }

    .about-home-headings h3 {
        font-size: 34px;
    }
}