@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--montserrat-font);
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

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

:root {
    --dark-blue: #311e70;
    --black-color: #111013;
    --white-color: #fff;
    --red-color: #fc3660;
    --light-gray: #707071;

    --purple-title-color: #a88cff;
    --yellow-title-color: #ffc001;
    --green-title-color: #52b2b2;
    --lightBlue-title-color: #6aafe8;
    --blue-title-color: #1393f2;
    --pink-title-color: #f38ff2;
    --lightGreen-title-color: #5aba7e;
    --brightGreen-color: #1fbb53;
    --coral-color: #f78c84;
    --gray-tone: #78747e;
    --darkYellow-title-color: #ffc001;
    --darkGray-title-color: #8296a0;

    --montserrat-font: "Montserrat", sans-serif;
    --inter-font: "Inter", sans-serif;
}

a {
    margin: 0;
    text-decoration: none;
    -o-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

ul li {
    list-style-type: none;
}

figure {
    margin: 0;
}

img {
    margin: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

a,
input,
button,
select {
    margin: 0;
    outline: none;
    box-shadow: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

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

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

progress,
input[type="range"],
input[type="radio"],
input[type="checkbox"] {
    accent-color: var(--black-color);
}

.outlineBtn {
    border: 1px solid var(--black-color);
    color: var(--black-color);
}

.blackBtn-small {
    color: var(--white-color);
    background-color: var(--black-color);
    border: 1px solid var(--black-color);
}

.outlineBtn,
.blackBtn-small {
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 20px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

.redBtn {
    background-color: var(--red-color);
    border: 1px solid var(--red-color);
    border-radius: 10px;
    color: var(--white-color);
    padding: 15px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

.blackBtn-small:hover {
    border: 1px solid var(--black-color);
    background-color: transparent;
    color: var(--black-color);
}

.outlineBtn:hover {
    border-color: var(--red-color);
    color: var(--red-color);
}

.redBtn:hover {
    background-color: transparent;
    color: var(--red-color);
}

.container {
    max-width: 1440px;
    padding: 0 20px;
    margin: 0 auto;
}

.globalHeading {
    color: var(--dark-blue);
    font-size: 62px;
    font-weight: 800;
    text-transform: uppercase;
}

.section_title {
    color: var(--black-color);
    font-size: 42px;
    font-weight: 700;
    line-height: 51px;
    margin: 2.5rem 0;
    text-align: center;
    text-transform: uppercase;
}

.section_description {
    color: #29292b;
    font-size: 18px;
    font-weight: 500;
    line-height: 37px;
    margin: 0 auto 3rem auto;
    max-width: 90%;
    text-align: center;
}

/* Fixed Vertical text */
.vertical-text {
    color: var(--black-color);
    display: flex;
    font-size: 16px;
    font-weight: 600;
    padding: 0 2rem;
    position: fixed;
    top: calc(50% - 110px);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    z-index: 10;
}

.bannerHeading {
    color: var(--black-color);
    /* font-size: 80px; */
    font-size: clamp(2.5rem, 3.756vw + 1.62rem, 5rem);
    font-weight: 900;
    max-width: 700px;
    text-transform: uppercase;
}

.bannerDisc {
    color: var(--light-gray);
    font-size: 18px;
    font-weight: 400;
    line-height: 37px;
    max-width: 700px;
}

/*========= Header =========*/
header {
    padding: 20px 0;
    position: relative;
    z-index: 1000;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.1);
    background-color: var(--white-color);
}

header .container {
    max-width: 90%;
    padding: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .menuBtn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

header .menuBtn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--dark-blue);
    transition:
        transform 0.3s linear,
        background-color 0.3s ease;
}

header nav .closeBtn {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--dark-blue);
    cursor: pointer;
}

header nav {
    display: flex;
    align-items: center;
    transition: transform 0.3s linear;
}

header nav ul {
    display: inline-flex;
    align-items: center;
    gap: 50px;
    margin-right: 60px;
}

header nav ul li .navLink {
    color: var(--dark-blue);
    font-family: var(--montserrat-font);
    /* font-size: 16px; */
    font-size: clamp(0.875rem, 0.445vw + 0.599rem, 1rem);
    font-weight: 600;
    line-height: 17.6px;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    padding: 20px 0;
}

header nav ul li .navLink::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--dark-blue);
    transition: all 0.3s linear;
}

header nav ul li .navLink.active,
header nav ul li .navLink.active::before,
header nav ul li .navLink:hover::before {
    width: 100%;
}

/* Dropdown container */
header .dropdown {
    position: relative;
}

/* Hide the dropdown menu by default */
header .dropdownMenu {
    position: fixed;
    top: 75px;
    left: 0;
    display: none;
    list-style: none;
    background-color: #000;
    padding: 2rem 5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
    width: 100%;
}

header .dropdown .navLink {
    position: relative;
}

header .dropdown .navLink::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 53%;
    transform: translateY(-50%);
    background: url("../image/icon/side_menu_ldropdown_icon.svg");
    width: 9px;
    height: 5px;
    transition: all 0.3s ease-in-out;
}

header .dropdownMenu .dropdown_heading {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

header .dropdownMenu .navbarInner {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    -webkit-column-gap: 20px;
    column-gap: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 20px;
}

header .dropdownMenu .navbarInner .dropdownLink {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
    width: fit-content;
    text-transform: uppercase;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

header .dropdownMenu .navbarInner .dropdownLink.active,
header .dropdownMenu .navbarInner .dropdownLink:hover {
    color: var(--red-color);
}

/* Make the dropdown visible on hover or focus */
header .dropdown:focus-within .dropdownMenu,
header .dropdown:hover .dropdownMenu {
    display: block;
}

/* Ensure the dropdown is initially hidden */
header .dropdown>.dropdownMenu {
    display: none;
}

header nav .mobileHeaderBtn {
    display: flex;
    align-items: center;
    gap: 10px;
}

/*================= Footer Sec =================*/
footer {
    padding: 4rem 5rem;
}

footer .ftrLogoRow {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

footer .ftrLogo {
    height: 60px;
}

footer .ftrLogoLine {
    border: 1px solid #edd6db;
    margin-left: 20px;
    width: 100%;
}

footer .ftrLogoDot {
    max-width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ff8e8e;
}

footer .ftrGrid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    -webkit-column-gap: 2rem;
    gap: 2rem;
}

footer .ftrGridBox .ftrListFlex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    -webkit-column-gap: 2rem;
    column-gap: 2rem;
}

footer .ftrGrid .ftrGridBox .ftrHeading {
    color: var(--dark-blue);
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: clamp(0.625rem, 1.29vw + 0.282rem, 1.25rem);
}

footer .ftrGrid .ftrGridBox .line {
    background-color: #ff8e8e;
    width: 30px;
    height: 5px;
    margin-bottom: 20px;
}

footer .ftrGridBox ul li {
    margin-bottom: 1rem;
}

footer .ftrGridBox ul li:nth-last-child(1) {
    margin-bottom: 0;
}

footer .ftrGridBox ul li a {
    color: var(--dark-blue);
    display: inline-block;
}

footer .ftrGridBox ul li a:hover {
    color: var(--red-color);
}

footer .ftrGridBox ul li .contactFtrLink img {
    margin-right: 0.5rem;
}

footer .ftrSocial {
    display: flex;
    align-items: center;
    justify-content: end;
    -webkit-column-gap: 1rem;
    gap: 1rem;
    margin-top: 2rem;
}

footer .ftrSocial .ftrSocialLink {
    max-width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f8f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

footer .ftrSocial .ftrSocialLink img {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

footer .ftrSocial .ftrSocialLink:hover img {
    transform: scale(0.8);
}

.bottomFtr {
    padding: 2rem 5rem;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.bottomFtr p {
    color: #939393;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    max-width: 900px;
}

/*================= Hero Sec =================*/
.hero_sec {
    background-image: url("../image/heroBackgroundImage.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 12px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: center;
    padding: 3rem 0;
}

.hero_sec .wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 0 3.5rem;
    width: 100%;
}

.hero_sec .content .bannerDisc,
.hero_sec .content .heroBtn {
    margin-top: 40px;
}

.hero_sec .content .heroBtn .redBtn {
    margin-right: 10px;
    max-width: 180px;
    width: 100%;
}

.hero_sec .content .heroBtn .outlineBtn {
    max-width: 220px;
    width: 100%;
}

.hero_sec .wrapper .heroImage {
    display: flex;
    justify-content: center;
   
}

.hero_sec .wrapper .heroImage img {
    max-width: 100%;
    height: 100%;
    user-select: none;
    pointer-events: none;
     align-items: center;
    height: fit-content;
}

/*====== Crypto Wallet Sec ======*/
.walletBoxWrapper {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.cryptoWallet_sec {
    background-color: #f9f8ff;
    background-image:
        url("../image/icon/cryptoWallet_lwaveLine.svg"),
        url("../image/icon/cryptoWallet_dots.svg");
    background-position:
        97% 8%,
        8% 97%;
    background-repeat: no-repeat, no-repeat;
    padding: 5rem 3rem;
    display: flex;
    align-items: center;
}

.walletBoxWrapper .walletBoxContent .small-title {
    color: var(--purple-title-color);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.walletBoxWrapper .walletBoxContent .main-title {
    color: var(--dark-blue);
    font-size: 62px;
    font-weight: 800;
    text-transform: uppercase;
    max-width: 700px;
    margin-top: 40px;
}

.walletBoxWrapper .walletBoxContent p {
    color: var(--dark-blue);
    font-size: 17px;
    font-weight: 500;
    line-height: 40px;
    max-width: 615px;
    margin-top: 20px;
}

.walletBoxWrapper .walletBoxContent .checkoutOn {
    align-items: center;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.walletBoxWrapper .walletBoxContent .checkoutOn .cta-btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.walletBoxWrapper .walletBoxContent .checkoutOn .cta-btn .btn {
    background-color: initial;
    border: 1px solid var(--dark-blue);
    border-radius: 10px;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.walletBoxWrapper .walletBoxContent .checkoutOn .cta-btn .btn img {
    height: 24px;
    width: 24px;
}

.walletBoxWrapper .walletBoxContent .section_btn {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.walletBoxWrapper .walletBoxContent .section_btn .blackBtn-small {
    max-width: 200px;
    width: 100%;
}

/*====== mShopify Sec ======*/
.mshopify_sec {
    background-color: #f4fff7;
    background-image:
        /* url("../image/icon/whatsflow_right_BG.svg"), */
        url("../image/icon/mshopify_left_BG.svg");
    background-position:
        /*  48% 85%, */
        5% 95%;
    background-repeat: no-repeat, no-repeat;
    padding: 5rem 3rem 5rem;
    display: flex;
    align-items: center;
}

.mshopify_sec .walletBoxWrapper .walletBoxContent .small-title {
    color: var(--gray-tone);
}

/*====== whatsflow Sec ======*/
.whatsflow_sec {
    background-color: #f4fff7;
    background-image:
        url("../image/icon/whatsflow_right_BG.svg"),
        url("../image/icon/whatsflow_left_BG.svg");
    background-position:
        48% 85%,
        5% 95%;
    background-repeat: no-repeat, no-repeat;
    padding: 5rem 3rem 5rem;
    display: flex;
    align-items: center;
}

.whatsflow_sec .walletBoxWrapper .walletBoxContent .small-title {
    color: var(--brightGreen-color);
}

/*====== BTG Sec ======*/
.BTG_sec {
    background-color: #fff;
    background-image:
        url("../image/icon/BTG_right_BG.svg"),
        url("../image/icon/BTG_left_bg.svg");
    background-position:
        90% 5%,
        45% 10%;
    background-repeat: no-repeat, no-repeat;
    padding: 5rem 3rem 5rem;
    display: flex;
    align-items: center;
}

.BTG_sec .walletBoxWrapper .walletBoxContent .small-title {
    color: var(--coral-color);
}

/*====== BNB Wallet Sec ======*/
.BNBWallet_sec {
    background-color: #fff;
    background-image:
        url("../image/icon/BNB_about_right_BG.svg"),
        url("../image/icon/BNB_about_left_BG.svg");
    background-position:
        97% 8%,
        8% 8%;
    background-repeat: no-repeat, no-repeat;
    padding: 5rem 3rem 5rem;
    display: flex;
    align-items: center;
}

.BNBWallet_sec .walletBoxWrapper .walletBoxContent .small-title {
    color: var(--darkYellow-title-color);
}

/*====== Doctor on Demand Sec ======*/
.DoctoronDemand_sec {
    background-color: #f2f8f8;
    background-image: url("../image/icon/doctorOnDemand_triangle.svg");
    background-position: 50% 10%;
    background-repeat: no-repeat;
}

.DoctoronDemand_sec .walletBoxWrapper {
    column-gap: 90px;
}

/*====== Swift Control UI Sec ======*/
.swiftControl_ui_sec {
    background-color: #fff;
    background-image:
        url("../image/icon/SC_about_right_BG.svg"),
        url("../image/icon/BNB_about_left_BG.svg");
    background-position:
        97% 8%,
        8% 8%;
    background-repeat: no-repeat, no-repeat;
    padding: 5rem 3rem 5rem;
    display: flex;
    align-items: center;
}

.swiftControl_ui_sec .walletBoxWrapper .walletBoxContent .small-title {
    color: var(--lightBlue-title-color);
}

/*====== Tiktok Readymade Sec ======*/
.tiktokReadymadeScript_sec {
    background-color: #f2f8ff;
    background-image:
        url("../image/icon/TIK_about_left_BG.svg"),
        url("../image/icon/TIK_about_right_BG.svg");
    background-position:
        97% 8%,
        8% 97%;
    background-repeat: no-repeat, no-repeat;
}

.tiktokReadymadeScript_sec .walletBoxWrapper {
    column-gap: 90px;
}

.tiktokReadymadeScript_sec .walletBoxWrapper .walletBoxContent .small-title {
    color: var(--blue-title-color);
}

/*====== Instagram Sec ======*/
.instagramReadymadeScript_sec {
    background-color: #fff;
    background-image: url("../image/icon/Instasoft_center_BG.svg");
    background-position: 50% 10%;
    background-repeat: no-repeat;
}

.instagramReadymadeScript_sec .walletBoxWrapper .walletBoxContent .small-title {
    color: var(--pink-title-color);
}

/*====== Food Recipe Book Sec ======*/
.foodrecipeBookScript_sec {
    background-color: #f5fff9;
    background-image:
        url("../image/icon/foodRacipe_left_BG.svg"),
        url("../image/icon/foodRecipe_right_BG.svg");
    background-position:
        97% 8%,
        8% 97%;
    background-repeat: no-repeat, no-repeat;
}

.foodrecipeBookScript_sec .walletBoxWrapper {
    column-gap: 90px;
}

.foodrecipeBookScript_sec .walletBoxWrapper .walletBoxContent .small-title {
    color: var(--lightGreen-title-color);
}

/*====== Car Rental Sec ======*/
.carRental_sec {
    background-color: #fff2cc;
    background-image: url("../image/icon/Carrental_center_BG.svg");
    background-position: 50% 10%;
    background-repeat: no-repeat;
}

.carRental_sec .walletBoxWrapper .walletBoxContent .small-title {
    color: var(--darkYellow-title-color);
}

/*================= FAQs Sec =================*/
.FAQs_sec {
    background-color: #fff9f9;
    background-image:
        url("../image/FAQ-left_BG.webp"), url("../image/FAQ-right_BG.webp");
    background-position:
        100% 0,
        -11% 50%;
    background-repeat: no-repeat, no-repeat;
    align-items: center;
    background-color: #fff9f9;
    display: flex;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 4rem 0;
}

.FAQs_sec .globalHeading {
    text-align: center;
    margin-bottom: 3rem;
}

.FAQs_sec .FAQs_box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 64px rgba(224, 224, 224, 0.25);
    width: 900px;
    padding-bottom: 1px;
    margin-bottom: 0.5rem;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.FAQs_sec .FAQs_box .FAQs_header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 20px;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.FAQs_sec .FAQs_box .FAQs_header img {
    user-select: none;
    pointer-events: none;
}

.FAQs_sec .FAQs_box .FAQs_question {
    color: var(--dark-blue);
    font-size: 16px;
    font-weight: 600;
    margin-right: 8px;
    display: flex;
}

.FAQs_sec .FAQs_box .FAQs_ans_box {
    background: #fafaff;
    border-radius: 5px;
    margin: 0 10px 10px;
    padding: 15px;
    display: none;
    overflow: hidden;
    height: 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.FAQs_sec .FAQs_box .FAQs_ans_box.open {
    display: flex;
    height: 100%;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.FAQs_sec .FAQs_box .FAQs_ans {
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
}

/*================= Dedicated Support Sec =================*/
.dedicatedSupport_sec {
    background-image: url("../image/dedicatedSupport-Bg.webp");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 4rem 0;
}

.dedicatedSupport_sec .walletBoxWrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
}

.dedicatedSupport_sec .walletBoxContent .small-title {
    color: #ff8e8e;
    margin-bottom: 1rem;
}

/*================= Testimonial Sec =================*/
.testimonial_sec {
    padding: 151px 0 100px 0;
    background-color: #fff9f9;
}

.testimonial_sec .testimonial-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    padding: 0 4rem;
    gap: 1rem;
}

.testimonial_sec .testimonial-container .smallHeading {
    color: #ff8e8e;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.testimonial_sec .testimonialImageBox {
    background: url("../image/icon/testimonial-sec-box.svg") no-repeat;
    background-size: 100% 100%;
    height: 350px;
    width: 100%;
    display: flex;
    justify-content: center;
    /* overflow: hidden; */
    padding: 2.5rem 3rem 4.5rem;
    position: relative;
}

.testimonial_sec .testimonialImageBox .innerBox .userProfile {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial_sec .testimonialImageBox .innerBox .userProfile .profilePic {
    background-color: var(--white-color);
    max-width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial_sec .testimonialImageBox .innerBox .userProfile .profilePic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial_sec .testimonialImageBox .innerBox .userName {
    color: var(--black-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial_sec .testimonialImageBox .innerBox .projectName {
    color: #767474;
    font-size: 16px;
    font-weight: 400;
}

.testimonial_sec .testimonialImageBox .innerBox p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
    color: var(--black-color);
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
}

.testimonial_sec .testimonial_swiper {
    max-width: 440px;
    width: 100%;
    height: fit-content;
    margin: 0 auto;
}

.testimonial_sec .testimonialSwiperBtn {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    /* gap: 20px; */
    gap: 50px;
    position: absolute;
    bottom: -1rem;
    right: 3rem;
}

.testimonialSwiperBtn .swiper-button-next:after,
.testimonialSwiperBtn .swiper-button-prev:after {
    content: "";
}

.testimonialSwiperBtn .swiper-button-next,
.testimonialSwiperBtn .swiper-button-prev {
    max-width: 50px;
    min-width: 50px;
    height: 50px;
    border: 2px solid var(--black-color) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
    cursor: pointer;
    user-select: none;
    margin-top: 0;
    position: static;
    background-color: transparent;
}

.testimonialSwiperBtn .swiper-button-next img,
.testimonialSwiperBtn .swiper-button-prev img {
    height: 30px;
    transition: all 0.3s ease;
}

.testimonialSwiperBtn .swiper-button-next:hover,
.testimonialSwiperBtn .swiper-button-prev:hover {
    background-color: #fbe8e5;
    border-color: #fbe8e5;
}

.testimonialSwiperBtn .swiper-button-disabled {
    border: 2px solid var(--black-color) !important;
    background-color: transparent !important;
    cursor: not-allowed !important;
    opacity: 0.4 !important;
    visibility: visible !important;
    display: flex !important;
    pointer-events: none !important;
}

.testimonialSwiperBtn .swiper-button-disabled img {
    opacity: 1 !important;
}

/*=================
 Crypto Wallet Page 
=================*/
.cryptoWalletHero {
    background-image: url("../image/cryptoWallet/Crypto-banner-BG.webp");
}

/*----- Advance Feature Sec -----*/
.advanceFeatures_sec {
    align-items: center;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: center;
    padding: 240px 120px 225px 120px;
}

.mShopifyFeature_container {
    padding: 0px !important;
}

.advanceFeatures_sec .advanceFeatures_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.5rem;
    -webkit-column-gap: 1.5rem;
    gap: 44px;
}

.advanceFeatures_sec .advanceFeatures_grid .advanceFeature_box {
    background-color: var(--white-color);
    padding: 28px 32px 48px 32px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 124px hsla(0, 0%, 87%, 0.25);
    max-width: 614px;
}

.advanceFeatures_sec .advanceFeatures_grid .advanceFeature_box .topPart {
    display: flex;
    align-items: center;
    margin-bottom: 1.75rem;
}

.advanceFeatures_sec .advanceFeatures_grid .advanceFeature_box .topPart .iconBox {
    min-width: 101px;
    max-width: 101px;
    height: 101px;
    border-radius: 10px;
    background: #f8f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 35px;
}

.advanceFeatures_sec .advanceFeatures_grid .advanceFeature_box .topPart .iconBox img {
    width: 55px;
    height: 55px;
}

.advanceFeatures_sec .advanceFeatures_grid .advanceFeature_box .topPart h3 {
    color: var(--black-color);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 325px;
}

.advanceFeatures_sec .advanceFeatures_grid .advanceFeature_box p {
    color: #29292b;
    font-size: 20px;
    font-weight: 400;
    line-height: 37px;
}

/*======= Who is it For Sec =======*/
.whoIsItFor_sec {
    padding: 80px 0;
    background-color: #fff7fc;
}

.whoIsItFor_sec .section_title {
    text-align: center;
    margin-bottom: 50px;
}

.whoIsItFor_category {
    margin-bottom: 60px;
}

.category_heading {
    color: var(--black-color);
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.whoIsItFor_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.whoIsItFor_card {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whoIsItFor_card:hover {
    background-color: #f8f5ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(49, 30, 112, 0.12);
}

.cryptoWallet_advanceFeatureBG_sec {
    background-image: url("../image/cryptoWallet/AdvanceFeatures-BG.webp");
}

/*======= Free Download Sec =======*/
.freeDownloadApp_sec {
    padding-top: 3rem;
    padding-bottom: 100px;
    padding-left: 40px;
    padding-right: 40px;
}

.cryptoWallet_freeDownloadApp_bg {
    background-image: url("../image/cryptoWallet/Crypto-Wallet-freeAppDownload-BG.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 12px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.shadow_left,
.shadow_right {
    display: none;
}

.left_slide_btn {
    background-color: white;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--dark-blue);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.right_slide_btn {
    background-color: white;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--dark-blue);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.webPanel_row {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.freeDownloadApp_sec .desktopImage {
    text-align: center;
    width: 100%;
    position: relative;
}

.freeDownloadApp_sec .mobileSLider {
    display: none;
}

/*======= Web Panel Sec =======*/
.webPanel_Img {
    display: flex;
    justify-content: center;
}

.webPanel_sec {
    padding: 100px 0;
    background-image: url("../image/cryptoWallet/Web-Panel-BG.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.web_panel_section_description {
    margin-bottom: 124px;
}

/* Web Panel Swiper */
.webPanel_row {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.webPanel_swiper {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    border-radius: clamp(0.625rem, 2.347vw + 0.075rem, 2.188rem);
}

.webPanel_swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    border: 3px solid hsla(0, 0%, 100%, 0.51);
    border-radius: clamp(0.625rem, 2.347vw + 0.075rem, 2.188rem);
    -webkit-filter: drop-shadow(0 0 185px hsla(0, 0%, 64%, 0.17));
    filter: drop-shadow(0 0 185px rgba(163, 163, 163, 0.17));
}

.webPanelBtn-prev,
.webPanelBtn-next {
    position: static;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #311e70;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 0;
}

.webPanelBtn-prev:after,
.webPanelBtn-next:after {
    content: none;
}

.webPanelBtn-prev:hover,
.webPanelBtn-next:hover {
    background-color: #311e70;
}

.webPanelBtn-prev:hover svg path,
.webPanelBtn-next:hover svg path {
    stroke: #fff;
}

.video_section_title {
    margin-top: 0 !important;
}

.video_section_description {
    max-width: 1033px;
}

/*==== Crypto Wallet Sec ====*/
.cryptoWallet_video_sec {
    padding-top: 206px;
    padding-bottom: 212px;
}

/*==== Technology Sec ====*/
.technology_sec {
    background-color: #f2f8ff;
    background-image: url("./image/cryptoWallet/TechnologySec-BG.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: center;
    padding: 72px 0;
}

.technology_title {
    margin-top: 0 !important;
    color: var(--dark-blue);
}

.technology_description {
    color: var(--dark-blue);
}

.technology_sec .techGrid {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.technology_sec .techGrid .techBox {
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 124px hsla(0, 0%, 87%, 0.25);
    padding: 3rem 2rem;
    width: 250px;
    margin: 0 auto;
}

.technology_sec .techGrid .techBox h5 {
    color: var(--black-color);
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    margin-top: 1.5rem;
}

/*==== Available to Download Sec ====*/
.available_download_container {
    max-width: 1515px !important;
}

.available_download_sec {
    background-color: #10063b;
    background-image: url("../image/Download-Section.webp");
    color: var(--white-color);
    padding: 0 2rem;
}

.available_download_sec .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.available_download_sec .wrapper .content h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin-top: 20px;
    max-width: 705px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.available_download_sec .wrapper .content p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 37px;
    max-width: 700px;
    margin-bottom: 2rem;
}

.available_download_sec .wrapper .download_btns {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.available_download_sec .wrapper .download_btns .downloadBtn {
    border: 1px solid var(--white-color);
    color: var(--white-color);
    border-radius: 10px;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    width: fit-content;
}

.available_download_sec .wrapper .download_btns .downloadBtn span {
    text-transform: uppercase;
    font-size: 10px;
    line-height: 16px;
    display: block;
}

.available_download_sec .wrapper .download_btns .downloadBtn h6 {
    font-size: 14px;

    font-weight: 700;
}

/*===== Get Free Quotes Sec =====*/
.getFreeQuote_sec {
    background-image: url("../image/getFreeQuote-Bg.webp");
    background-position: 50%;
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
    padding: 4rem 0;
}

.getFreeQuote_sec .walletBoxWrapper {
    justify-content: space-around;
}

.getFreeQuote_sec ul {
    padding-left: 20px;
    margin-top: 24px;
}

.getFreeQuote_sec ul li {
    list-style-type: disc;
    font-family: var(--montserrat-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.getFreeQuote_sec ul li:last-child {
    margin-bottom: 0;
}

/* faq_section */

.faq_contianer {
    padding: 127px 187px 185px 183px;
}

.faq_content {
    max-width: 1200px;
    margin: 0 auto;
}

.faq_title {
    margin-top: 0;
    margin-bottom: 68px;
    color: var(--dark-blue);
}

.que_card {
    padding: 24px;
    background: #faf9ff;
    border-radius: 12px;
}

.question {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--montserrat-font);
    line-height: 37px;
    color: var(--dark-blue);
}

/* Book The Game FAQ Background */
.btg-faq-section .que_card {
    background: #fffaf5;
}

.faq_toggle {
    margin-top: 5px;
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    background: #f2f2f2;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle_box {
    display: flex;
    align-items: start;
    justify-content: start;
}

.que_box {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.que_wrapper {
    display: flex;
    justify-content: space-between;
}

.answer {
    max-width: 991px;
    font-family: var(--montserrat-font);
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: var(--dark-blue);
}

.que_content {
    flex: 1;
}

.que_wrapper {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

/* Blue border when open */
.que_card--open {
    border: 1.5px solid #1a8fe3;
}

.question_answer_wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/*=================================
     Doctor On Demand Page 
=================================*/
.doctorOnDemandHero {
    background-image: url("../image/doctorOnDemand/doctorOnDemand_Hero_BG.webp");
}

/* Book Appointment Sec */
.doctorOnDemandBookAppointment_sec {
    background-color: #f2f8f8;
    padding: 5rem 3rem;
    display: flex;
    align-items: center;
}

.doctorOnDemandBookAppointment_sec .walletBoxWrapper .walletBoxContent .small-title {
    color: var(--green-title-color);
}

/* About Feature */
.doctorOnDemand_advanceFeatureBG_sec {
    background-image: url("../image/doctorOnDemand/Features-BG-Appointment-Booking.webp");
    background-position: 50%;
    background-size: contain;
    flex-direction: column;
    justify-content: center;
}

.doctorOnDemand_advanceFeatureBG_sec .advanceFeatures_grid .advanceFeature_box .topPart .iconBox {
    background: #f9f9f9;
}

/*=================================
    TikTok Clone Page 
=================================*/
.tiktokCloneHero {
    background-image: url("../image/tiktok/TIKtok_main_BG.webp");
}

/* Tiktok Source Code Sec */
.tiktokSourceCode_sec {
    background-color: #f2f8ff;
    padding: 5rem 3rem;
    display: flex;
    align-items: center;
}

.tiktokSourceCode_sec .walletBoxWrapper .walletBoxContent .small-title {
    color: var(--blue-title-color);
}

/* About Feature */
.tiktokFeatureBG_sec {
    background-image: url("../image/tiktok/Features-BG.webp");
    background-position: 50%;
    background-size: contain;
    flex-direction: column;
    justify-content: center;
}

.tiktokFeatureBG_sec .advanceFeatures_grid .advanceFeature_box .topPart .iconBox {
    background: #f7fafd;
}

/*=================================
    Instagram Clone Page 
=================================*/
.instagramCloneHero {
    background-image: url("../image/instagram/instagramHero_BG.webp");
}

/* Instagram Source Code Sec */
.instagramSourceCode_sec {
    background-color: #fdf8ff;
    padding: 5rem 3rem;
    display: flex;
    align-items: center;
}

.instagramSourceCode_sec .walletBoxWrapper .walletBoxContent .small-title {
    color: var(--pink-title-color);
}

/* About Feature */
.instagramFeatureBG_sec {
    background-image: url("../image/instagram/Features-BG.webp");
    background-position: 50%;
    background-size: contain;
    flex-direction: column;
    justify-content: center;
}

.instagramFeatureBG_sec .advanceFeatures_grid .advanceFeature_box .topPart .iconBox {
    background: #f8f5ff;
}

/*=================================
    Food Recipe Book Page 
=================================*/
.foodRecipeBookHero {
    background-image: url("../image/foodRecipeBook/foodRecipeBookHero_BG.webp");
}

/* Food Recipe Book Script Sec */
.FoodRecipeBookReadyScript_sec {
    background-color: #f5fff9;
    padding: 5rem 3rem;
    display: flex;
    align-items: center;
}

.FoodRecipeBookReadyScript_sec .walletBoxWrapper .walletBoxContent .small-title {
    color: var(--lightGreen-title-color);
}

/* About Feature */
.foodRecipeBookFeatureBG_sec {
    background-image: url("../image/foodRecipeBook/foodScriptBook_Features_BG.webp");
    background-position: 50%;
    background-size: contain;
    flex-direction: column;
    justify-content: center;
}

.foodRecipeBookFeatureBG_sec .advanceFeatures_grid .advanceFeature_box .topPart .iconBox {
    background: #f5fff9;
}

/*=================================
    Car Rental Page 
=================================*/
.carRentalHero {
    background-image: url("../image/carRental/carRental_hero_BG.webp");
}

/* Food Recipe Book Script Sec */
.carRentalAbout_sec {
    background-color: #fff4db;
    padding: 5rem 3rem;
    display: flex;
    align-items: center;
}

.carRentalAbout_sec .walletBoxWrapper .walletBoxContent .small-title {
    color: var(--darkYellow-title-color);
}

/* About Feature */
.carRentalFeatureBG_sec {
    background-image: url("../image/carRental/carRental_Features_BG.webp");
    background-position: 50%;
    background-size: contain;
    flex-direction: column;
    justify-content: center;
}

.carRentalFeatureBG_sec .advanceFeatures_grid .advanceFeature_box .topPart .iconBox {
    background: #f9f9f9;
}

.carRentalScriptSwiper {
    padding-bottom: 2rem;
}

/*----- MShopify Page -----*/
.mShopifyHero {
    background-image: url("../image/mShopify/mShopify_heroBg.webp");
}

/* mShopify About Sec */
.mShopifyAbout_sec {
    background-color: rgb(130, 150, 160, 10%);
    padding: 0rem 3rem;
    display: flex;
    align-items: center;
}

.mShopifyProblemStatement_sec {
    padding: 5.6875rem 7.5rem;
}

.mShopifyProblemStatement_container {
    padding: 0px !important;
}

.problem_statement_disc {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.problem_statement_title {
    margin-top: 0 !important;
    margin-bottom: 4.25rem;
}

.problem_statement_subtitle {
    font-family: var(--montserrat-font);
    font-weight: 700;
    font-size: 24px;
    line-height: 37px;
    margin-bottom: 8px;
    color: var(--black-color);
}

.problem_statement_disc li {
    font-family: var(--inter-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 37px;
    color: var(--black-color);
    list-style-type: disc;
    list-style-position: outside;
    margin-bottom: 0.8rem;
}

.problem_content {
    margin-bottom: 3.75rem;
}

.solution_subtitle {
    margin-bottom: 19px;
}

.solution_disc li {
    margin-bottom: 4px !important;
    line-height: 100%;
}

.mShopifyAbout_sec .walletBoxWrapper .walletBoxContent {
    padding: 3.3rem 0;
}

.mShopifyAbout_sec .walletBoxWrapper .walletBoxContent .main-title {
    margin-top: 30px;
}

.mShopifyAbout_sec .walletBoxWrapper .walletBoxContent .small-title {
    color: var(--darkGray-title-color);
}

.mShopifyFeatureBG_sec {
    background-image: url("../image/mShopify/featureBg.webp");
    background-position: top;
    background-size: cover;
    flex-direction: column;
    justify-content: center;
}

.mShopifyWhatYouWillGet_sec {
    padding: 6.25rem 7.5rem;
    background-color: #f7f9fc;
}

/* WYW Grid */
.wyw_container {
    max-width: 1275px;
    margin: 0 auto;
}

.wyw_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Last card (Installation) spans 2 rows */
.wyw_card--span {
    grid-row: span 2;
    gap: 62px !important;
}

.wyw_card {
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 16px 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wyw_card_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.wyw_card_title {
    font-family: var(--montserrat-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    color: var(--black-color);
}

.wyw_card_icon {
    min-width: 42px;
    width: 42px;
    height: 42px;
    background-color: #f3f3f3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wyw_card_icon svg {
    width: 24px;
    height: 24px;
}

.wyw_card_desc {
    font-family: var(--inter-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 19px;
    color: #111013b2;
}

/* Badge */
.wyw_badge {
    display: inline-block;
    background-color: #5aba7e;
    color: #fff;
    font-family: var(--montserrat-font);
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 40px;
    margin-top: 4px;
}

/* Steps (Installation card) */
.wyw_steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wyw_step_label {
    display: block;
    font-family: var(--montserrat-font);
    font-size: 12px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.wyw_step p {
    font-family: var(--montserrat-font);
    font-size: 12px;
    font-weight: 400;
    color: #111013b2;
    line-height: 16px;
}

.mShopifyFeatureBG_sec .advanceFeatures_grid .advanceFeature_box .topPart .iconBox {
    background: #f9f9f9;
}

.mShopifyFeatureBG_sec .section_title {
    color: var(--dark-blue);
}

.mShopify_freeDownloadApp_bg {
    position: relative;
}

.mShopify_freeDownloadApp_bg .dots_icon {
    position: absolute;
    top: 10px;
    right: 10%;
    user-select: none;
    pointer-events: none;
}

.mShopifyMobileVideo_sec,
.customerPanel_sec {
    position: relative;
}

.mShopifyMobileVideo_sec>*,
.customerPanel_sec>* {
    position: relative;
    z-index: 1;
}

.mShopifyMobileVideo_sec .topCrystal {
    position: absolute;
    top: clamp(0rem, 4.545vw - 2.159rem, 1.25rem);
    right: 10%;
    z-index: 1;
}

.mShopifyMobileVideo_sec .btmCrystal {
    position: absolute;
    bottom: 20%;
    left: 10%;
    z-index: 1;
}

.web_panel_section_title {
    margin-bottom: 44px !important;
    margin-top: 0px !important;
}

.wyw_title {
    margin-bottom: 4rem;
    margin-top: 0px !important;
}

.applicationFlow_container {
    max-width: 1515px !important;
    margin: 0 auto;
}

.application_flow_section_title {
    margin-bottom: 43px !important;
    margin-top: 0px !important;
}

.mShopify_comparison_sec {
    position: relative;
    padding: 100px 110px 142px 120px;
}

.comparison_title {
    padding: 80px;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

.bg_right {
    position: absolute;
    right: 0;
    top: 50px;
    z-index: -1;
}

.bg_left {
    position: absolute;
    left: 28px;
    bottom: 20px;
    z-index: -1;
}

/* Comparison Table */
.comparison_container {
    max-width: 1282px;
    margin: 0 auto;
}

/* Wrapper — position:relative so the floating card anchors to it */
.comp_table_wrapper {
    position: relative;
    border: 1px solid #dce3ef;
    border-radius: 16px;
    overflow: visible;
    margin-top: 60px;
    background: #fff;
}

/* Inner div clips the table corners to the border-radius.
   Outer wrapper stays overflow:visible so the floating card can extend above/below. */
.comp_table_inner {
    border-radius: 16px;
}

/* ─── Table base ─── */
.comp_table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

/* ─── Header cells <th> ─── */
.comp_th {
    padding: 28px 20px;
    font-family: var(--montserrat-font);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    color: #111013;
    background-color: #f6f8fa;
    border-bottom: 1px solid #dce3ef;
    border-right: 1px solid #dce3ef;
}

.comp_th:last-child {
    border-right: none;
}

/* Remove competing border to allow MShopify column left border to show */
.comp_table th:first-child,
.comp_table td:first-child {
    border-right: none !important;
}

/* Features column th — left aligned */
.comp_th--feature {
    text-align: center;
    padding: 31px 50px;
    font-size: 18px;
    border-radius: 16px 0 0 0;
}

/* 3rd th: Shopify store subscription */
.comp_table thead tr th:nth-child(3) {
    padding: 25px 44px;
}

/* 4th th: Development from scratch */
.comp_table thead tr th:nth-child(4) {
    padding: 25px 44px;
    border-radius: 0 16px 0 0;
}

/* MShopify column styling (2nd column) — part of the floating card */
.comp_table th:nth-child(2),
.comp_table td:nth-child(2) {
    position: relative;
    border-right: 1px solid #3b2882 !important;
    border-left: 1px solid #3b2882 !important;
    background: transparent !important;
    /* background moved to pseudo-element for shadow visibility */
    z-index: 10;
}

.comp_table th:nth-child(2)::before,
.comp_table td:nth-child(2)::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    box-shadow: 0px 0px 50px 0px #a6b9cd;
    z-index: -1;
    pointer-events: none;
    clip-path: inset(0 -100px 0 -100px);
    /* Only show shadow on sides */
}

/* Horizontal dividers between rows inside the card */
.comp_table tbody tr:not(:last-child) td:nth-child(2) {
    border-bottom: 1px solid #e0e4f0;
}

/* ─── Body cells <td> ─── */
.comp_td {
    position: relative;
    padding: 24px 20px;
    font-family: var(--montserrat-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
    border-bottom: 1px solid #dce3ef;
    border-right: 1px solid #dce3ef;
}

.comp_td:last-child {
    border-right: none;
}

/* Last row — no bottom border */
.comp_table tbody tr:last-child td {
    border-bottom: none;
}

/* Round bottom-left corner */
.comp_table tbody tr:last-child td:nth-child(1) {
    border-radius: 0 0 0 16px;
}

/* Round bottom-right corner */
.comp_table tbody tr:last-child td:nth-child(4) {
    border-radius: 0 0 16px 0;
}

/* Label (Features) column cells — bold left aligned */
.comp_td--label {
    font-family: var(--montserrat-font);
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
    padding-left: 40px;
}

/* MShopify placeholder td — no border */
/* MShopify placeholder td — part of the floating card */
.comp_td.comp_td--placeholder {
    position: relative;
    border-right: 1.5px solid #3b2882 !important;
    border-left: 1.5px solid #3b2882 !important;
    background: #fff !important;
    z-index: 10;
}

/* Horizontal dividers between rows inside the card */
.comp_table tbody tr:not(:last-child) .comp_td--placeholder {
    border-bottom: 1px solid #e0e4f0;
}

/* ─── Alternating row background ─── */
/* Even tbody rows → #F6F8FA */
.comp_table tbody tr:nth-child(even) td:not(.comp_td--placeholder) {
    background-color: #f6f8fa;
}

/* ─── MShopify floating card ─── */
.mshopify_floating_card {
    position: absolute;
    left: 25%;
    width: 25%;
    top: -50px;
    background: #fff;
    border: 1.5px solid #3b2882;
    border-radius: 16px;
    box-shadow:
        0 -8px 32px rgba(49, 30, 112, 0.18),
        0 8px 32px rgba(49, 30, 112, 0.18);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.top_header {
    position: relative;
}

/* Obsolete placeholder class removed */

/* Purple header */
.mshopify_card_header {
    position: absolute;
    top: -41px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 3px);
    border: 1.5px solid #3b2882;
    border-bottom: none;
    box-shadow: 0 -8px 32px rgba(49, 30, 112, 0.18);
    background: linear-gradient(170deg, #3b2882 0%, #2a1c6e 100%);
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    font-family: var(--montserrat-font);
    line-height: 1.2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 140px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    box-shadow: 0px 0px 50px 0px #a6b9cd;
    clip-path: inset(-100px -100px 0 -100px);
    /* Hide shadow on bottom edge */
    /* header row height (90px) + raised top (50px) */
}

/* Data rows inside the card */
.mshopify_card_row {
    min-height: 105px;
    width: calc(100% + 3px);
    background-color: white;
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--montserrat-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    color: #000000;
    border: 1.5px solid #3b2882;
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0px 0px 50px 0px #a6b9cd;
    clip-path: inset(0 -100px -100px -100px);
    /* Hide shadow on top edge */
}

/*======= Pocket Story Page =======*/
.pocketStoryHero {
    background-image: url("../image/pocket-story/pocket-story-heroBg.webp");
    background-size: 100%;
    padding-bottom: 5rem;
}

/*======= CrushPops Page =======*/
.crushPops_Hero {
    background-image: url("../image/crushPops/crushPops_heroBg.webp");
    background-size: 100%;
    padding-bottom: 5rem;
}

/*=================================
    Contact Us Page 
=================================*/
.contactUs_banner_sec {
    background-color: #f2f8ff;
    background-image: url("../image/contactUs_banner.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left 0%;
    padding: 4rem 1rem;
    height: auto;
}

.contactUs_banner_sec .wrapper {
    display: flex;
    justify-content: space-around;
}

.contactUs_banner_sec .wrapper ul {
    margin-top: 2rem;
}

.contactUs_banner_sec .wrapper ul li a {
    display: inline-flex;
    color: var(--dark-blue);
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contactUs_banner_sec .wrapper .map {
    margin-top: 2rem;
    height: 200px;
}

.contactUs_banner_sec .contactForm {
    background-color: var(--white-color);
    background: url("../image/tiktok/Features-BG.webp");
    background-position: top;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0px 3px 20px 0px #00000012;
    position: relative;
    height: fit-content;
}

.contactForm .formFlex {
    display: flex;
    align-items: center;
    gap: 1rem;
    row-gap: 0;
}

.contactForm .input_group {
    width: 100%;
    margin-bottom: 1.5rem;
}

.contactForm .input_group label {
    display: inline-block;
    margin-left: 3px;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
}

.contactForm .input_group textarea {
    resize: none;
}

.contactForm .input_group textarea,
.contactForm .input_group input {
    width: 100%;
    padding: 0.7rem;
    border-radius: 5px;
    border: 1px solid #00000035;
}

.contactForm .blackBtn-small {
    padding: 12px 24px;
}

/*=================================
    Blogs Page 
=================================*/
.blogBanner_sec {
    background-image: url("../image/blogBanner_BG.webp");
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
    min-height: 200px;
    padding: 3rem 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogBanner_sec h3 {
    color: var(--red-color);
}

.blogsContent_sec {
    padding: 4rem 0;
}

.blogWrapper_grid {
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    row-gap: 2rem;
}

.blogWrapper_grid .blogBox {
    overflow: hidden;
}

.blogWrapper_grid .blogBox .imageBox {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.blogWrapper_grid .blogBox .imageBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogWrapper_grid .blogBox .date {
    font-size: 14px;
    margin-bottom: 0.8rem;
}

.blogWrapper_grid .blogBox .blogTitle {
    color: var(--black-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: block;
}

.blogWrapper_grid .blogBox p {
    font-size: 16px;
    line-height: 22px;
    color: var(--light-gray);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogWrapper_grid .blogBox .outlineBtn {
    padding: 8px 18px;
    border-radius: 5px;
}

/*============= Blog Detail Page =============*/
.blogDetails_sec {
    padding: 4rem 0;
}

.blogDetails_sec .wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.blogDetails_sec .mainDetailBox {
    max-width: 900px;
    width: 100%;
}

.blogDetails_sec .mainDetailBox .bigImage {
    height: 400px;
}

.blogDetails_sec .mainDetailBox .bigImage img {
    height: 100%;
    object-fit: cover;
}

.blogDetails_sec .mainDetailBox .blogHeading {
    font-size: clamp(1.375rem, 0.377vw + 1.285rem, 1.625rem);
    margin: 1rem 0 0.5rem 0;
}

.blogDetails_sec .mainDetailBox .date {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 1.5rem;
}

.blogDetails_sec .mainDetailBox p {
    margin-bottom: 1rem;
}

.blogDetails_sec .recentPost_box {
    max-width: 400px;
}

.blogDetails_sec .recentPost_box h2 {
    margin-bottom: 0.5rem;
}

.blogDetails_sec .recentPost_box .line {
    width: 80px;
    height: 5px;
    background-color: var(--red-color);
    margin-bottom: 1.5rem;
}

.blogDetails_sec .recentPost_box .recentPost {
    display: flex;
    gap: 0.8rem;
    color: var(--black-color);
    padding: 1rem 0;
    border-bottom: 1px solid #e5e4e3;
}

.blogDetails_sec .recentPost_box .recentPost:last-child {
    border-bottom: 0;
}

.blogDetails_sec .recentPost_box .recentPost .imageBox {
    max-width: 70px;
    min-width: 70px;
    height: 50px;
    border-radius: 5px;
}

.blogDetails_sec .recentPost_box .recentPost .imageBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogDetails_sec .recentPost_box .recentPost .date {
    font-size: 12px;
    margin-bottom: 0.3rem;
}

.blogDetails_sec .recentPost_box .recentPost h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*========== whatsApp Cl Page ==========*/
.whatsappCloneHero {
    background-image: url("../image/whatsapp/whatsapp_hero_BG.webp");
}

.whatsapp-bannerHeading {
    font-size: 60px !important;
    line-height: 98px !important;
}

.problem_statement_disc_2 {
    font-family: var(--montserrat-font);
    font-size: 18px;
    line-height: 37px;
    color: var(--black-color);
    margin-bottom: 40px;
}

.problem_statement_disc_2 li {
    font-family: var(--inter-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 37px;
    color: var(--black-color);
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.problem_statement_disc_2 li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 5px;
    height: 5px;
    background-color: var(--black-color);
    border-radius: 50%;
}

.problem_content_2 {
    margin-bottom: 40px;
}

.problem_statement_disc_2 {
    padding-left: 0;
}

.whatsappAbout_title {
    color: #5aba7e !important;
}

.whatsappAbout_sec {
    background-color: #edf9f1;
    padding: 0rem 3rem;
    display: flex;
    align-items: center;
}

.whatsappFeatureBG_sec {
    background-image: url("../image/whatsapp/Features-BG.webp");
    background-position: 50%;
    background-size: contain;
    flex-direction: column;
    justify-content: center;
}

.advanceFeature_box li {
    font-family: var(--montserrat-font);
    font-size: 20px;
    line-height: 37px;
    color: #10063b;
    font-weight: 400;
    list-style: none;
    position: relative;
    padding-left: 25px;
}

.advanceFeature_box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 4px;
    height: 4px;
    background-color: #10063b;
    border-radius: 50%;
}

.whatsapp_iconBox {
    background-color: #f5fff0 !important;
}

.whatsapp_benifites_sec {
    padding: 100px;
    background-color: #f4fff4;
}

.whatsapp_benifites_container {
    max-width: 1312px;
    margin: 0 auto;
}

.whatsapp_benifites_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
}

.whatsapp_benifites_card {
    padding: 22px;
    border-radius: 12px;
    background-color: white;
}

.whatsapp_benifites_card_top {
    margin-bottom: 12px;
}

.whatsapp_benifites_card_title {
    font-family: var(--montserrat-font);
    font-size: 18px;
    line-height: 21px;
    color: var(--black-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.whatsapp_benifites_card li {
    font-family: var(--montserrat-font);
    font-size: 14px;
    line-height: 19px;
    color: #111013b3;
    font-weight: 400;
    list-style: none;
    position: relative;
    padding-left: 18px;
}

.whatsapp_benifites_card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    background-color: #111013b3;
    border-radius: 50%;
}

.whatsapp_admin_panel_sec {
    background: linear-gradient(237.08deg, #25a64f -41.1%, #edf9f1 110.09%);
    padding: 90px 0 100px 0;
    position: relative;
}

.whatsapp_admin_panel_container {
    max-width: 1440px;
    margin: 0 auto;
}

.whatsapp_admin_panel_Img {
    flex: 1;
    min-width: 0;
}

.whatsapp_admin_panel_Img img {
    display: block;
    width: 100%;
    height: auto;
}

.whatsapp_admin_panel_swiper {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.whatsapp_admin_panel_swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.whatsapp_admin_panel_row {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.whatsapp_shadow_left,
.whatsapp_shadow_right {
    display: none;
}

.left_slide_btn,
.right_slide_btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #311e70;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.left_slide_btn:hover,
.right_slide_btn:hover {
    background-color: #311e70;
}

.left_slide_btn:hover svg path,
.right_slide_btn:hover svg path {
    stroke: #fff;
}

.whatsappVideoContainer {
    position: relative;
}

.floating_icons {
    position: absolute;
}

.gallery_icon {
    top: 30px;
    right: 10px;
}

.camera_icon {
    bottom: 0px;
    left: 10px;
}

.customerPanel_sec {
    padding-bottom: 124px;
    padding-top: 106px;
}

/*========== BookTheGame About Sec ==========*/
.bookTheGameAbout_sec {
    background-color: #fffaf5;
    padding: 0rem 3rem;
    display: flex;
    align-items: center;
}

.bookTheGameAboutWrapper {
    gap: 73px;
}

.bookTheGameAbout_title {
    color: #5aba7e !important;
}

.bookTheGameFeatureBG_sec {
    background-image: url("../image/BTG/Feature-BG.webp");
}

.BTG_iconBox {
    background-color: #fff8f8 !important;
}

/*========== Sitemap Page ==========*/
.sitemap_sec {
    padding: 0 4rem;
}

.sitemap_sec .wrapper {
    margin-bottom: 3rem;
}

.sitemap_sec .wrapper h2 {
    margin-bottom: 1rem;
}

.sitemap_sec .wrapper .gridBox {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.sitemap_sec .wrapper .gridBox a {
    color: var(--black-color);
    display: inline-block;
}

.sitemap_sec .wrapper .gridBox a:hover {
    color: var(--red-color);
}