@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --theme-color: #0066A6;
    --theme-light: #4DA8E1;
    --body-color: #E9F1F7;
    --white-color: #fff;
    --black-color: #000;
    --main-btn-color: #F98613;
    --heading-color: #0C1F2A;
    --text-muted: #545454;
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Montserrat", sans-serif;
    --fs-banner: clamp(2.5rem, 6vw, 4.5rem);
    --fs-heading: clamp(2rem, 4vw, 2.8rem);
    --fs-subheading: clamp(1rem, 2vw, 1.25rem);
    --fs-body: 1rem;
    --lh-tight: 1.2;
    --lh-normal: 1.5;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --banner-font: var(--fw-bold) var(--fs-banner)/var(--lh-tight) var(--font-heading);
    --heading-font: var(--fw-semibold) var(--fs-heading)/var(--lh-tight) var(--font-heading);
    --sub-heading-font: var(--fw-regular) var(--fs-subheading)/1.4 var(--font-heading);
    --body-font: var(--fw-regular) var(--fs-body)/var(--lh-normal) var(--font-body);
    --btn-font: var(--fw-medium) 1rem/1rem var(--font-heading);
    --nav-font: var(--fw-regular) 1rem/1.2 var(--font-body);
    --footer-font: var(--fw-regular) 0.8125rem/1.75 var(--font-body);
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 32px;
    --radius-md: 12px;
    --radius-pill: 50px;
    --shadow-soft: 0px 12px 22px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1300px) {

    .container,
    .container-lg,
    .container-md,
    .container-xl,
    .container-xxl {
        max-width: 1280px !important;
    }
}

@media (max-width: 1300px) and (min-width: 991px) {

    .container,
    .container-lg,
    .container-md,
    .container-xl,
    .container-xxl {
        max-width: 1080px !important;
    }
}

html,
body {
  overflow-x: hidden;
}

*,
::before,
::after {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}


body {
    background-color: var(--white-color);
    font: var(--body-font);
    color: var(--heading-color);
}

h1 {
    font: var(--banner-font);
    letter-spacing: -0.02em;
}

h2 {
    font: var(--heading-font);
}

h3 {
    font: var(--font-heading);
}

h2 {
    font-family: "Anton", sans-serif;
    font-style: normal;
    color: var(--theme-color);
    font-weight: 400;
    font-size: 65px;
    line-height: 74px;
    letter-spacing: 0;
    text-transform: uppercase;
}

h3 {
    font-family: "Anton", sans-serif;
    font-style: normal;
    color: var(--theme-color);
    font-weight: 400;
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 0;
    text-transform: uppercase;
}

h3 span {
    text-transform: lowercase;
}

h4 {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0;

}

.lowercase {
    text-transform: lowercase;
}

p,
a {
    font: var(--font-heading);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0;
    font-weight: 500;
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
    -webkit-font-smoothing: antialiased;

}

a:hover {
    color: var(--theme-color);
}

.form-control,
.form-select,
button {
    transition: 0.3s ease-in-out;
    background: none;
    box-shadow: none;
    outline: 0px;
}

.form-control:focus,
.form-select:focus,
button:focus {
    border: 0px;
}

::-webkit-scrollbar {
    width: 0.35rem;
}

::-webkit-scrollbar-track {
    background: var(--theme-color);
}

::-webkit-scrollbar-thumb {
    background: var(--white-color);
}

::selection {
    color: rgb(255, 255, 255);
    background-color: rgb(62, 100, 175);
}

.main-btn.blue-btn {
    position: relative;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 80px;
    background: var(--heading-color);
    color: var(--white-color);
    font: var(--btn-font);
    transition: 0.3s ease-out;
}


.main-btn.blue-btn:hover {
    background-color: var(--main-btn-color);
    color: var(--white-color);
}

#navigation_bar .navbar-btn .main-btn.blue-btn:hover img {
    filter: brightness(0) invert(1);
}

.blue-btn.blue-btn {
    background-color: var(--theme-color);
}

.section-spacing {
    padding: clamp(4rem, 1rem + 2vw, 4rem) 0px 0px;
}

.container-fluid {
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}

picture {
    display: block;
}

.zoom-hover picture {
    overflow: hidden;
}

.zoom-hover picture img {
    transition: 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.zoom-hover:hover picture img {
    transform: scale(1.1);
}

.loader {
    position: fixed;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    background: url("../images/logo.svg") center center no-repeat rgb(255, 255, 255);
}

.swiper-wrapper {
    padding-bottom: 3rem;
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 20px;
    margin-bottom: 30px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(196, 196, 196);
    cursor: pointer;
    transition: 0.3s;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--main-btn-color);
    width: 10px !important;
    height: 10px !important;
    border-radius: 20px !important;
}

header {
    position: fixed;
    transition: top 0.6s ease-in-out;
    z-index: 999;
    width: 100%;
    padding: 0.6rem 0;
    top: 0;
}

#navigation_bar .black-logo {
    display: none;
}

#navigation_bar.nav-down .black-logo {
    display: block;
}

#navigation_bar .navbar-brand picture {
    display: inline-block;
}

#navigation_bar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.navbar-nav .nav-link,
.navbar-nav .nav-item {
  white-space: nowrap;
}

#navigation_bar .nav-link {
    font: var(--nav-font);
    color: var(--black-color);
    padding: 0.5rem 0.2rem;
    transition: 0.4s;
    border-radius: 6px;
    letter-spacing: normal;
    font-weight: 500;
}

#navigation_bar .nav-link:hover,
#navigation_bar .nav-link.active,
#navigation_bar.nav-down .nav-link:hover {
    color: var(--theme-color) !important;
}

#navigation_bar .nav-item.dropdown {
    position: relative !important;
}

#navigation_bar .nav-link.dropdown-toggle::after {
    background: url("../images/menu/dropdown-arrow.svg") 0% 0% / contain no-repeat;
    display: inline-block;
    height: 10px;
    width: 10px;
    border: 0px;
    position: relative;
    top: 4px;
    left: 5px;
}

#navigation_bar.nav-down {
    top: 0px;
    background: var(--white-color);
    margin-top: 0px;
    box-shadow: var(--shadow-soft);
}

#navigation_bar.nav-down .nav-link {
    color: var(--black-color) !important;
}

#navigation_bar.nav-up {
    top: -140px;
}

#navigation_bar a.navbar-brand {
    padding: 0px;
}

#navigation_bar .flag-select {
    position: relative;
    width: 23px;
    cursor: pointer;
    height: 15px;
    display: flex;
    align-items: center;
}


#navigation_bar .flag-select::after {
    content: "";
    background: url("../images/menu/dropdown-arrow.svg") center center / contain no-repeat;
    width: 10px;
    height: 10px;
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

#navigation_bar .flag-trigger {
    padding: 0px;
    background: none;
    border: 0px;
    display: flex;
    justify-content: center;
    width: 100%;
}

#navigation_bar .flag-trigger img {
    width: 24px;
    height: 18px;
    object-fit: cover;
}

#navigation_bar .flag-list {
    position: absolute;
    top: 200%;
    left: -10px;
    width: 60px;
    background: var(--white-color);
    border-radius: 6px;
    display: none;
    z-index: 10;
    padding: 1rem 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

#navigation_bar .flag-item {
    padding: 6px;
    text-align: center;
}

#navigation_bar .flag-item img {
    width: 24px;
    height: 18px;
}

#navigation_bar .flag-item:hover {
    background: var(--white-color);
}

#navigation_bar .navbar-right.desktop {
    display: flex;
    justify-content: space-between;
    width: fit-content;
    align-items: center;
    gap: 40px;
}

#navigation_bar .navbar-right.mobile {
    display: none !important;
}

#navigation_bar .navbar-btn .main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 6px;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
}


#navigation_bar .navbar-btn {
    display: flex;
    gap: 0.5rem;
}

#navigation_bar .navbar-btn .main-btn img {
    filter: brightness(0) invert(1);
}

#navigation_bar .navbar-btn .main-btn:hover img {
    filter: unset;
}

#navigation_bar .dropdown-menu-1 {
    max-width: 1054px;
    width: 1054px;
    border: 0px;
    background: #F4FAFF;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transform: translateX(-10%);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
    position: absolute !important;
    top: 150% !important;
    left: 0% !important;
    z-index: 999999 !important;
    display: block !important;
    right: 0px !important;
    padding: 0;
}

#navigation_bar .dropdown-menu-2 {
    width: auto;
    min-width: 230px;
    max-width: 330px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transform: translateX(-10%);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
    position: absolute !important;
    top: 150% !important;
    left: 0 !important;
    z-index: 999999 !important;
    display: block !important;
    padding: 0;
}

#navigation_bar .dropdown-menu-2,
#navigation_bar .dropdown-menu-2:hover,
#navigation_bar .dropdown-menu-2:focus,
#navigation_bar .dropdown-menu-2:focus-within {
    border-color: transparent !important;
}


#navigation_bar .nav-item.dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
}

#navigation_bar ul.dropdown-box {
    list-style: none;
    padding: 0;
}

#navigation_bar ul.dropdown-box-1 {
    background-color: var(--white-color);
    padding: 1rem 1rem;
    border-radius: 16px 0 0 16px;
    max-width: 100%;
}

#navigation_bar ul.dropdown-box-1 a.dropdown-item {
    gap: 8px;

}

#navigation_bar a.dropdown-item {
    display: flex;
    margin-bottom: 0rem;
    gap: 0px;
    transition: 0.3s ease-out;
    width: 100%;
}

#navigation_bar .dropdown-icon {
    display: block;
    width: 41px;
    height: 34px;
    flex: 0 0 15%;
}

#navigation_bar ul.dropdown-box-1 .dropdown-icon {
    flex: 0 0 13%;

}

li.nav-item.dropdown.single-menu .dropdown-icon {
    display: block;
    width: 40px;
    height: 34px;
    flex: 0 0 12% !important;
}

#navigation_bar .dropdown-content h3 {
    color: var(--black-color);
    line-height: normal;
    margin-bottom: 5px;
    font-size: 16px;
    font-family: var(--heading-font) important;
    text-transform: capitalize;
    font-weight: 500;
}

#navigation_bar .dropdown-content p {
    font-size: 0.8rem;
    line-height: normal;
    color: rgb(144, 144, 144);
}

#navigation_bar .dropdown-box li:last-child a,
#navigation_bar .dropdown-box li:last-child a p {
    margin-bottom: 0;
}

#navigation_bar .dropdown-item:focus,
#navigation_bar .dropdown-item:hover,
#navigation_bar .dropdown-item.active,
#navigation_bar .dropdown-item:active {
    background: unset;
    border: 0;
    outline: 0;
    box-shadow: unset;
}

#navigation_bar .dropdown-icon img {
    filter: grayscale(100%);
}

#navigation_bar .dropdown-item:focus .dropdown-icon img,
#navigation_bar .dropdown-item:hover .dropdown-icon img,
#navigation_bar .dropdown-item.active .dropdown-icon img,
#navigation_bar .dropdown-item:active .dropdown-icon img {
    filter: unset;
}

#navigation_bar .dropdown-item:focus .dropdown-content h3,
#navigation_bar .dropdown-item:hover .dropdown-content h3,
#navigation_bar .dropdown-item.active .dropdown-content h3,
#navigation_bar .dropdown-item:active .dropdown-content h3,
#navigation_bar .dropdown-item:focus .dropdown-content p,
#navigation_bar .dropdown-item:hover .dropdown-content p,
#navigation_bar .dropdown-item.active .dropdown-content p,
#navigation_bar .dropdown-item:active .dropdown-content p {
    color: var(--theme-color);
}

#navigation_bar ul.dropdown-box.dropdown-box-2,
#navigation_bar #inner-tabs-content {
    padding-top: 8px;
}

/* =====================================================
New Css 12 jan 2025 – FINAL WORKING (LINE + ARROW FIXED)
===================================================== */

#navigation_bar ul.dropdown-box li {
    position: relative;
}

/* ---------- Vertical blue line (li based) ---------- */
#navigation_bar ul.dropdown-box li::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -1px;
    width: 1px;
    height: 80%;
    background-color: #0066A6;
    opacity: 0;
}

#navigation_bar ul.dropdown-box.no-line li::before {
    display: none !important;
    content: none !important;
}

/* ---------- Make dropdown-item relative ---------- */
#navigation_bar ul.dropdown-box li>a.dropdown-item {
    position: relative;
}

/* ---------- Arrow (aligned with h3, NOT p) ---------- */
#navigation_bar ul.dropdown-box li>a.dropdown-item::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 8px;
    width: 6px;
    height: 14px;
    background: url(../images/menu/dropdown-right-arrow.svg) no-repeat center;
    background-size: contain;
    opacity: 0;
}

#navigation_bar ul.dropdown-box.no-line li>a.dropdown-item::after {
    display: none;
    content: none;
}

/* =====================================================
SHOW when INNER <a> is ACTIVE
    (Column 1 & Column 2)
    ===================================================== */

/* Vertical line */
#navigation_bar .dropdown-box-1 li:hover::before,
#navigation_bar .dropdown-box-2 li:hover::before,
#navigation_bar .dropdown-box-1 li:has(> a.dropdown-item.active)::before,
#navigation_bar .dropdown-box-2 li:has(> a.dropdown-item.active)::before {
    opacity: 1;
}

/* Arrow */
#navigation_bar .dropdown-box-1 li>a.dropdown-item:hover::after,
#navigation_bar .dropdown-box-2 li>a.dropdown-item:hover::after,
#navigation_bar .dropdown-box-1 li>a.dropdown-item.active::after,
#navigation_bar .dropdown-box-2 li>a.dropdown-item.active::after {
    opacity: 1;
}

/* =====================================================
    Disable for 3rd column
    ===================================================== */

#navigation_bar #inner-tabs-content li::before,
#navigation_bar #inner-tabs-content li>a::after {
    display: none !important;
}

#navigation_bar ul.dropdown-box.tabs-6 li>a.dropdown-item {
    position: relative;
    padding: 0.7rem;
}

.white-bg {
    background-color: var(--white-color);
    border-radius: 16px 0 0 16px;
    max-width: 100%;
}

#navigation_bar a.btn.main-btn.blue-btn {
    border-radius: 6px;
}

#navigation_bar .dropdown-menu.show {
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: none;
}

/* flag menu */
.country-dropdown,
.flag-select {
    position: relative;
    overflow: visible !important;
}

.flag-trigger img {
    width: 28px;
    height: auto;
    cursor: pointer;
}

/* dropdown box */
.flag-list {
    position: absolute;
    top: 120%;
    right: 0;
    background: #eef7fb;
    border-radius: 10px;
    padding: 10px 14px;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 9999;
}

/* hover open */
.flag-select:hover .flag-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* items */
.flag-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 500;
    color: #0a66c2;
    cursor: pointer;
}

.flag-item img {
    width: 22px;
}

/* hover effect */
.flag-item:hover {
    opacity: 0.8;
}

/* Home Page Start */



.main-page-wrapper {
    margin-top: 8rem;
}
#main-page-wrapper{    
    margin-top: 8rem;
}

.platform {
    margin-top: 2rem;
}

.platform-heading p {
    font-family: var(--font-heading);
    font-weight: 500;
    font-style: Medium;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0;
    margin-bottom: 5px;
    padding: 5px 0 15px;
}

.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 25px;

    background: var(--main-btn-color);
    color: var(--white-color);

    border-radius: 6.4px;
    font: var(--btn-font);
    text-decoration: none;

    position: relative;
    overflow: hidden;


}

.main-btn:hover {
    color: var(--white-color);
}

.main-btn__label {
    position: relative;
    z-index: 2;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: inline;
    color: inherit;
    font: inherit;
}


/* flair layer */
.main-btn__flair {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transform: scale(0);
    transform-origin: 0 0;
    will-change: transform;
    z-index: 1;
}

.main-btn__flair::before {
    content: "";
    position: absolute;
    width: 285%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--theme-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}




.platform-image picture {
    overflow: hidden;
    border-radius: 20px;
}



/*==================
    Breadcrumb
=======================*/
.breadcrumb-title ol.breadcrumb {
    display: flex;
    align-items: center;
}

.breadcrumb-title li.breadcrumb-item,
.breadcrumb-title li.breadcrumb-item a {
    font-family: var(--font-heading);
    color: #ACACAC;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0;
}

.breadcrumb-title li.breadcrumb-item.active {
    color: var(--main-btn-color);
}

.breadcrumb-title .breadcrumb {
    margin-bottom: 0px;
}

/*================================
RBI Approved Section
==================================*/

.RBI-approved-section {
    margin-top: -30px;
}

.RBI-approved-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    background-color: #F8F6F4;
    width: 534px;
    height: 73px;
    text-align: left;
}

.RBI-approved-content img {
    width: 45px;
}

.RBI-approved-content-right {
    display: flex;
    flex-direction: column;
    gap: 0px;
    height: 72px;
    padding-top: 10px;
}

.RBI-approved-content-right hr {
    color: #B57F11;
    margin: 0px;
}

.RBI-approved-content-right-top h4 {
    font-size: 12.1px;
    font-weight: 600;
    color: #545454;
    margin: 0px;
}

.RBI-approved-content-right-bottom p {
    font-size: 10.6px;
    color: #B57F11;
}

@media (max-width: 1300px) and (min-width: 992px) {
    .RBI-approved-section {
        margin-bottom: 20px;
    }
    .RBI-approved-content {
        width: 450px;
        height: 65px;
    }
    .RBI-approved-content-right-top h4 {
        font-size: 10.5px;
    }
    .RBI-approved-content-right-bottom p {
        font-size: 9.6px;
    }
}

@media (max-width: 992px) {
    .RBI-approved-section {
        margin-top: -15px;
        margin-bottom: 20px;
    }
    .RBI-approved-content {
        width: 380px;
        height: 55px;
    }
    .RBI-approved-content img {
        width: 35px;
    }
    .RBI-approved-content-right-top h4 {
        font-size: 9px;
    }
    .RBI-approved-content-right-bottom p {
        font-size: 7px;
    }
}


/*================================
 every-payment section start 
 =================================*/
#every-payment {
    padding: 80px 0;
}

.every-payment-content {
    padding-bottom: 50px;
}

.card-face.card-front img {
    border-radius: 20px;
}

.card-face.card-front picture {
    overflow: hidden;
    border-radius: 20px;
}

.card-face.card-front h4 {
    position: absolute;
    top: 25px;
    left: 20px;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 2%;
    text-transform: uppercase;
    color: var(--white-color);

}


.card-face.card-front {
    position: relative;
}

.card-face.card-back h4 {
    position: absolute;
    top: 25px;
    left: 25px;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 2%;
    text-transform: uppercase;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1s ease;
    transition: transform 1s cubic-bezier(.22, .61, .36, 1);
    border-radius: 20px;
}

.card-face {
    backface-visibility: hidden;
    border-radius: 20px;
}

.card-back {
    position: absolute;
    inset: 0;
    transform: rotateY(180deg);
    padding: 40px 25px;
    color: var(--white-color);
}

.card-face.card-back p {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0;
    color: var(--white-color);
    margin-top: 55px;
    padding-right: 25px;
}


/* DEFAULT STATE */
.payment-card {
    opacity: 1;
    transform: none;
    border-radius: 20px;
    transition: transform 0.9s cubic-bezier(.22, .61, .36, 1),
        background-color 0.6s ease;
}

.payment-cards {
    margin: 0 5rem;
}

/* ======================================
    Business Worldwide Section Start 
    =====================================*/
section#business-worldwide {
    padding: 20px 0 60px;
}

.row.business-worldwide-spacing {
    margin: 0 5rem;
}

.business-worldwide-icon {
    width: 63px;
    height: 63px;
}

.business-worldwide-para h3 {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 49.53px;
    line-height: 34.78px;
    letter-spacing: 0;
    color: var(--theme-color);
    padding: 15px 0 0px;
}

.business-heading p {
    font-family: var(--font-heading);
}

.business-worldwide-right {
    padding-left: 50px;
}

.business-worldwide-para p {
    margin-bottom: 0;
    font-size: 15px;
    font-family: var(--font-heading);
}

.business-worldwide-box {
    padding-top: 10px;
}

/* counter */
#business-worldwide .impact-counter {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

/* digit container */
#business-worldwide .digit-con {
    height: 60px;
    overflow: hidden;
    display: inline-block;
}

/* rolling strip */
#business-worldwide .digit-strip {
    position: relative;
    display: block;
    top: 0;
}

#business-worldwide .digit-strip span {
    display: block;
    height: 60px;
    line-height: 60px;
}

#business-worldwide .counter-symbol {
    display: inline-block;
    line-height: 60px;
    margin: 0 2px;
}

/* Payment Platform Section */

.payment-platform-heading p {
    margin-bottom: 0;
    font-family: var(--font-heading);
}

.payment-platform-wrapper {
    position: relative;
    padding: 70px 0 0;
}

.payment-platform-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85%;
    background-color: #F1FAFF;
    z-index: 0;
}

.payment-platform-wrapper>section {
    position: relative;
    z-index: 1;
}

/* ===============================
    card animation
    ================================ */
#payment-platform {
    width: 100%;
}

/* ===============================
    BOOTSTRAP FIX
    ================================ */
.payment-platform.container-fluid {
    padding: 0;
    height: 100%;
    overflow: visible;
}

/* ===============================
    FLEX WRAPPER
    ================================ */
.payment-platform-content {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 10px;
    padding: 50px 50px 0;
    align-items: center;
}

/* ===============================
    CARD BASE
    ================================ */
.platform-card {
    flex: 1;
    position: relative;
    height: 491px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s ease;
    background: #000;
}

/* ===============================
    CENTER CARD DEFAULT OPEN
    ================================ */
.platform-card.active {
    flex: 3;
}

/* ===============================
    IMAGE FULL COVER
    ================================ */
.platform-card picture,
.platform-card img {
    inset: 0;
    width: 100%;
    height: 100%;
}

.platform-card img {
    object-fit: cover;
    display: block;
}

/* ===============================
    HOVER EFFECT (WIDTH ONLY)
    ================================ */
.payment-platform-content:hover .platform-card {
    flex: 1;
}

.payment-platform-content .platform-card:hover {
    flex: 3;
}

/* ===============================
    DARK GRADIENT FOR IMAGE
    ================================ */
.platform-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.45));
    pointer-events: none;
}

/* ===============================
    INFO BOX (CLOSED STATE)
    ================================ */
.platform-inner-box {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    height: 198px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(220, 220, 220, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.6s ease;
    overflow: hidden;
    z-index: 2;
}

/* ===============================
    LEFT CONTENT
    ================================ */
.platform-left h2 {
    font-weight: 400;
    font-size: 21px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.platform-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

.platform-inner-box a.arrow-btn img {
    width: 44px;
    height: 44px;
}

/* ===============================
    RIGHT IMAGE (HIDDEN BY DEFAULT)
    ================================ */
.platform-right {
    opacity: 0;
    transform: translateX(40px);
    visibility: hidden;
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 3;
}

.platform-right .card-img {
    max-width: 180px;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.25));
}

/* ===============================
    CARD OPEN (ACTIVE / HOVER)
    ================================ */
.platform-card.active .platform-inner-box,
.platform-card:hover .platform-inner-box {
    height: 198px;
}

/* content should be above gradient */
.platform-inner-box {
    z-index: 3;
}

.platform-right {
    z-index: 3;
}

.payment-platform-content .platform-card:hover .platform-right {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.payment-platform-content.swiper {
    overflow: visible;
}

.payment-platform-content .swiper-wrapper {
    display: flex;
    gap: 10px;
}

.payment-platform-content .swiper-slide {
    width: auto !important;
}

/* Section One View Start */
section#one-view {
    padding: 70px 0;
}

.one-view-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.one-view-content picture {
    box-shadow: 0px -2px 50.9px 0px #0066A638;
    border-radius: 36px;
    width: 1150px;
}

.one-view-content h2 {
    padding-bottom: 50px;
}

/*Section Every Business Start*/
.business-tabs-slider-content div#nav-tab {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-top: 40px;
}

.every-business-title h2 {
    padding-bottom: 40px;
}

/* ===============================
    BUSINESS TABS STYLING
    ================================ */
.business-tabs-slider-content .nav-tabs {
    border: none;
    gap: 40px;
}

/* ===============================
    TAB BUTTON BASE STYLE
    ================================ */
.business-tabs-slider-content .nav-tabs .nav-link {
    background: transparent;
    border: none;
    color: #D9D9D9;
    font-weight: 400;
    font-size: 40px;
    line-height: 43px;
    letter-spacing: 5%;
    text-transform: uppercase;
    font-family: "Anton", sans-serif;
    padding: 0;
    transition: color 0.3s ease;
}

/* ===============================
    ACTIVE TAB STYLE
    ================================ */
.business-tabs-slider-content .nav-tabs .nav-link.active {
    color: var(--main-btn-color);
    background: transparent;
}

/* sub tabs start */
.common-sub-tabs .nav-tabs {
    border: none;
    gap: 7px !important;
}

.common-sub-tabs button.nav-link {
    font-family: var(--font-heading) !important;
    font-weight: 400 !important;
    font-style: Regular;
    font-size: 15px !important;
    line-height: 26px !important;
    letter-spacing: 0;
    color: var(--theme-color) !important;
    background-color: #F4FAFF !important;
    text-transform: capitalize !important;
    padding: 3px 20px !important;
    transition: color 0.3s ease;
    border-radius: 6px;
}

.common-sub-tabs .nav-tabs .nav-link.active {
    background: var(--main-btn-color) !important;
    color: #fff !important;
}

.subtab-bg-image {
    position: relative;
}

.sub-tab-bg-content {

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.sub-tab-bg-content span {
    font-family: var(--font-heading);
    background: #FFFFFFE5;
    padding: 8px 20px;
    border-radius: 100px;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
}

.sub-tab-bg-content h3 {
    font-family: "Anton", sans-serif;
    color: var(--theme-color) !important;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 31px;
    letter-spacing: 2%;
    text-align: center;
    text-transform: uppercase;
}

.sub-tab-bg-content p {
    color: var(--text-muted);
}

.subtab-bg-image {
    position: relative;
    height: 480px;
    overflow: hidden;
    border-radius: 16px;
}

/* IMAGES */
.subtab-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.subtab-image.active {
    opacity: 1;
    z-index: 1;
}

/* CONTENT */
.sub-tab-bg-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(220, 220, 220, 0.9);
    padding: 30px 28px;
    border-radius: 20px;
    width: 30%;
    height: auto;
    min-height: 350px;
    max-height: 80%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: all 0.5s ease;
}


.sub-tab-bg-content.active {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ARROWS */
.subtab-arrows {
    position: absolute;
    left: -90px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    gap: 12px;
    z-index: 3;
    justify-content: space-around;
    width: 60%;
}

/* Arrow button – BASE STYLE */
.subtab-arrows button.subtab-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;

    background: transparent;
    border: 1.5px solid var(--theme-color);
    color: var(--theme-color);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    line-height: 1;

    cursor: pointer;
    padding: 0;

    transition: border-color 0.25s ease,
        color 0.25s ease;
}

.subtab-arrows button.subtab-arrow.active {
    border-color: var(--main-btn-color);
    color: var(--main-btn-color);
}


/* new css extra sub content start */

/* Section Intelligent Start */
#intelligent {
    padding: 70px 0;
}

.intelligent-image {
    width: 100%;
    height: 100%;
}

.intelligent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
}

.intelligent-inner-box:hover {
    box-shadow: 0px -2px 50.9px rgba(0, 102, 166, 0.22);
    border-color: transparent;
}

.intelligent-inner-box {
    padding: 40px 35px;
    border-radius: 20px;

    border: 1px solid rgba(0, 0, 0, 0.1);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;

    height: 100%;
    background: #fff;

    transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.intelligent-icon {
    margin-bottom: 6px;
}

.intelligent-icon img {
    display: block;
}

.intelligent-inner-box h4 {
    font-family: "Anton", sans-serif;
    color: var(--theme-color);
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    margin: 0;
    margin-top: 6px;
}

.intelligent-inner-box p {
    font-size: 15px;
    line-height: 23px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    text-align: center;
    margin: 0;

}
.ready-to-go-left p{
    color: #fff;
}


/* Certified Section Start */

.certified-content {
    padding: 0 90px;
}

.certified-row {
    align-items: center;
}

.certified-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Go-Live Section Start */

#go-live {
    padding: 85px 0 0;
}

.go-live-left {
    width: 60%;
}

.go-live-left p {
    color: var(--text-muted);
    font-family: var(--font-heading);
}

.go-live-step p {
    color: var(--text-muted);
    min-height: 105px;
    margin-bottom: 0;
    overflow-wrap: break-word;
    word-break: break-word;
    font-family: var(--font-heading);
}

.go-live-step span.step-no {
    font-family: var(--font-heading);
    color: var(--main-btn-color);
    font-weight: 500;
    font-style: Medium;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: 0;
}

.go-live-step h5 {
    font-family: "Anton", sans-serif;
    color: var(--theme-color);
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0;
    text-transform: uppercase;
    padding-top: 10px;
}

.go-live-step {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0 20px;
}

/* IMAGE CONTROL */
.go-live-step-box img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.go-live-step-box {
    background-color: #F8F6F4;
    padding: 32px;
    border-radius: 20px;

    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.go-live-step-box:hover {
    box-shadow: 0px -1px 10.9px rgba(0, 30, 120, 0.22);
    border-color: transparent;
}

/* STEP 2 special treatment */
.go-live-step-box.step-wide {
    padding: 18px 20px;
}

.go-live-step-box.step-wide img {
    max-width: 110%;
    max-height: 100%;
}

@media (min-width: 1301px) {
    .go-live-step-box img {
        width: 200px;
    }
}

@media (min-width: 992px) and (max-width: 1300px) {
    .go-live-step p {
        padding-bottom: 80px;
    }
}

/*================ Progress Section Start=================== */
section#progress {
    padding: 40px 0 70px;
    margin-left: 3rem;
    overflow: hidden;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 20px;
}


.moment-progress-slider .card {
    height: 100%;
    text-align: left;
}

.moment-progress-slider {
    position: relative;
}

.swiper.moment-progress-slider p {
    color: var(--text-muted);
    font-family: var(--font-heading);
    margin-bottom: 0;
    padding: 25px 0 50px;
}

.progress-author h5 {
    font-family: var(--font-heading);
    color: var(--theme-color);
    font-weight: 500;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 0;
    margin-bottom: 0;
}

.progress-author span {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-weight: 400;
    font-style: Regular;
    font-size: 13px;
    line-height: 34.31px;
    letter-spacing: 0;
}

.progress-arrows {
    display: flex;
    gap: 12px;
}

.swiper.moment-progress-slider .swiper-wrapper {
    padding-bottom: 0rem;
}

.moment-progress.desktop {
    padding-left: 50px;
}

.progress-heading {
    padding-top: 20px;
}

/* Base button */
.progress-arrows button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--theme-color);
    color: var(--theme-color);
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: border-color 0.25s ease, color 0.25s ease;
}

.progress-arrows button.active {
    border-color: var(--main-btn-color);
    color: var(--main-btn-color);
    background: transparent;
}

.progress-image picture {
    overflow: hidden;
    border-radius: 16px;
}

.progress-row-content {
    position: relative;
}

.moment-progress-slider .swiper-slide {
    height: auto;
}

.moment-progress-slider .swiper-slide>div {
    height: 100%;
}

.moment-progress-slider .swiper-slide {
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    padding: 36px 40px;
    position: relative;

    display: flex;
    flex-direction: column;

    transition: all 0.3s ease;
}

.quote-box img {
    display: block;
}

.progress-desk-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 460px;
}



/*========== 
First Step Section Start 
=============== */
section#first-step {
    padding: 70px 0;
}

.first-step-content {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

/* Image */
.first-step-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Right overlay content */
.first-step-right {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);

    max-width: 420px;
    z-index: 2;
}

.first-step-right h2 {
    font-size: 55px;
    color: var(--white-color);
    line-height: 63px;
}

.first-step-right p {
    color: var(--white-color);
    font-family: var(--font-heading);
    font-weight: 400;
}

/* Trusted Section Start */

.business-worldwide-para h3 span {
    text-transform: capitalize;
}

#trusted {
    background-color: #002A45;
    padding: 70px 0;
}

.trusted-heading h2 {
    color: var(--white-color);
}

.trusted-heading p {
    color: var(--white-color);
    font-family: var(--font-heading);
    font-weight: 400;
}

.trusted-heading {
    padding-bottom: 40px;
}

.trusted-content {
    position: relative;
}

.trusted-content::before,
.trusted-content::after {
    content: "";
    position: absolute;
    top: 0;
    width: 35%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

/* LEFT FADE */
.trusted-content::before {
    left: 0;
    background: linear-gradient(to right,
            #002A45 0%,
            rgba(0, 42, 69, 0.85) 40%,
            rgba(0, 42, 69, 0) 100%);
}

/* RIGHT FADE */
.trusted-content::after {
    right: 0;
    background: linear-gradient(to left,
            #002A45 0%,
            rgba(0, 42, 69, 0.85) 40%,
            rgba(0, 42, 69, 0) 100%);
}

/* Swiper core fixes */

.trusted-slider {
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
}

.trusted-slider .swiper-wrapper {
    padding-bottom: 10px;
}

.trusted-slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.trusted-slider .swiper-slide {
    flex-shrink: 0;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trusted-slider img {
    border-radius: 50px;
    max-height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
}

.trusted-slider .swiper-slide {
    margin-right: 0px;
}

/* #main-page-wrapper section {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
} */
#main-page-wrapper section {
    transform: none;
    backface-visibility: visible;
    margin-bottom: 10px;
}



/* Footer css Start */
footer#site-footer {
    background-color: #F1F5FA;
    padding: 60px 0 50px;
}


.footer-main-heading {
    font-family: var(--font-heading);
    color: var(--theme-color);
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0;
    padding-bottom: 15px;
    border-bottom: 0.89px solid var(--text-muted);
    margin-bottom: 15px;
}

.footer-sub-heading {
    font-family: var(--font-heading);
    color: var(--theme-color);
    font-weight: 600;
    font-style: SemiBold;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0;
}

#site-footer h5 {
    font-family: var(--font-heading);
    color: var(--theme-color);
    font-weight: 600;
    font-style: SemiBold;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0;
}

#site-footer ul li a {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-weight: 500;
    font-style: Medium;
    font-size: 13px;
    line-height: 23px;
    letter-spacing: 0;
}

ul.footer-support li {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-weight: 500;
    font-style: Medium;
    font-size: 13px;
    letter-spacing: 0;
}

#site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img.support {
    margin-right: 9px !important;
}




#site-footer ul li a:hover {
    color: var(--theme-color);
}

h6.footer-main-heading {
    padding-top: 30px;
}

ul.footer-support li {
    padding: 5px 0;
}

a.flag-link img {
    margin-right: 5px;
}

ul.footer-support img {
    margin-right: 5px;
}

ul.footer-cert-logos {
    display: flex;
    justify-content: flex-start;
}

ul.footer-cert-logos li {
    margin-right: 30px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-logos {
    margin-top: 9rem;
    padding-top: 16px;
}

.footer-bottom {
    border-top: 0.89px solid var(--text-muted);
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.footer-bottom span,
.footer-bottom span a {
    color: var(--text-muted);
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    line-height: 23px;
    letter-spacing: 0;
}

.footer-bottom span a:hover {
    color: var(--theme-color);
}



a.main-btn.transperent {
    background: none;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
}

a.main-btn.transperent:hover {
    color: var(--white-color);
}




/* =========================================
Payment Gateway Page Start
===========================================*/

#secure {
    padding-bottom: 70px;
}

#secure a.main-btn.transperent {
    background: none;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
}

#secure a.main-btn.transperent:hover {
    color: var(--white-color);
}

#secure .secure-buttons {
    display: flex;
    gap: 25px;
}

.secure-buttons a.main-btn {
    margin-right: 15px;
}

#secure .secure-image picture {
    overflow: hidden;
    border-radius: 20px;
}

#secure .secure-left-box p {
    font: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    color: var(--text-muted);
    padding: 20px 0;
}




/* Section Use Airpay start */

#use-airpay .container-fluid {
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
}

.use-airpay-title p {
    margin-bottom: 0;
}


.use-airpay-swiper {
    width: 100%;
    padding: 2rem;
    padding-bottom: 60px;
    overflow: visible;
}

.use-airpay-content {
    overflow: visible;
}

.use-airpay-swiper .swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 16px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.use-airpay-swiper .swiper-slide {
    width: 550px;
}


.use-airpay-card {
    text-align: left;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-airpay-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 30px rgba(172, 214, 248, 0.644);
    z-index: 10;
}



.use-airpay-card-content {
    background: rgb(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    height: 165px;
    width: 360px;
    padding: 1rem;
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.use-airpay-card-content h4 {
    color: var(--theme-color);
}

@media (max-width: 991px) {
    .use-airpay .swiper-slide {
        width: 420px;
    }
    .use-airpay-card-content {
        width: 350px;
    }
}

@media (max-width: 767px) {
    .use-airpay-swiper {
        padding: 1rem 0.5rem;
    }

    .use-airpay .swiper-slide {
        max-width: 420px;
    }

    .use-airpay-card-1,
    .use-airpay-card-2,
    .use-airpay-card-3,
    .use-airpay-card-4,
    .use-airpay-card-5,
    .use-airpay-card-6 {
        max-width: 480px;
        height: 360px;
        padding: 10px;
    }
}

@media (max-width: 479px) {
    .use-airpay .swiper-slide {
        width: 390px;
    }

    .use-airpay .swiper-slide {
        width: 390px;
    }

    .use-airpay-card-1,
    .use-airpay-card-2,
    .use-airpay-card-3,
    .use-airpay-card-4,
    .use-airpay-card-5,
    .use-airpay-card-6 {
        max-width: 370px;
        height: 360px;
    }
}

/* Section 3 Start */

#simple-setup {
    background-color: #F8F6F4;
    padding: 60px 0;
}

.simple-setup-image picture {
    overflow: hidden;
    border-radius: 20px;
}

.setup-box h3 {
    line-height: 41px;
}

.setup-box h5 {
    font-family: var(--font-heading);
    color: var(--theme-color);
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    line-height: 29px;
    letter-spacing: 0;
}

.simple-setup-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}

.simple-setup-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 35px;
    width: 85%;
    height: 100%;

}

/* ======= */
.payments-options {
    padding-top: 50px;
}

.payments-options .payment-options-title h3 {
    line-height: 49px;
}

.payments-options .payments-options {
    padding: 80px 0;
    background: #fffaf6;
}

.payments-options .payment-options-title h3 {
    color: var(--theme-color);
    font-size: 36px;
}

.payments-options .payment-options-title p {
    margin-bottom: 15spx;

}

.payments-options .payment-option-box {
    background: var(--white-color);
    border-radius: 18px;
    padding: 13px 25px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.payments-options .payment-option-box .tag {
    font-family: var(--font-heading);
    color: var(--main-btn-color);
    font-weight: 500;
    font-style: Bold;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;

}

.payments-options .payment-option-box .logos {
    display: flex;
    gap: 0px;
    margin: 15px 0 6px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.payments-options .payment-option-box img {
    height: 28px;
    object-fit: contain;
}

.payments-options .payment-option-box small {
    font-family: var(--font-heading);
    color: var(--theme-color);
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    line-height: 23px;
    letter-spacing: 0;
    margin: 0 auto;
    display: block;
    width: 100%;
    text-align: center;
}

.payments-options .logo-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.payments-options .logo-item span {
    font-family: var(--font-heading);
    color: #ACACAC;
    font-weight: 500;
    font-size: 12px;
    line-height: 13px;
    letter-spacing: 0;
}


/* =============================
   Payment Charges Section Start
 ===============================*/

#payment-charges {
    padding: 60px 0;
}


.payment-charges-box {
    text-align: center;
    padding: 0 30px;
}

.payment-charges-box img {
    margin-bottom: 12px;
}

/* Heading */
.payment-charges-box p {
    color: var(--theme-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    line-height: 5px;
    padding-top: 15px;

}

.payment-charges-title h3 {
    line-height: 48px;
}

/* Description */
.payment-charges-box span {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0;
    text-align: center;

}

.payment-charges-content .row>div:not(:last-child) {
    border-right: 1px solid #D9D9D9;
}



/* =====================================================
   FAQ ACCORDION 
===================================================== */
#faq {
    padding: 50px 0;
}

.faq-title h3 {
    padding-bottom: 30px;
}




#faq .accordion-button {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    background: transparent;
}

/* Active title */
#faq .accordion-button:not(.collapsed) {
    color: var(--main-btn-color);
}

/* Body text */
#faq .accordion-body {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
}

/* Remove default accordion border */
#faq .accordion {
    border: none;
    --bs-accordion-border-width: 0;
}

/* Remove focus glow */
#faq .accordion-button:focus {
    outline: 0;
    box-shadow: none;
}

/* DEFAULT item = transparent */
/* Accordion item spacing control */
#faq .accordion-item {
    background-color: transparent;
    border: none;
    border-radius: 10px;
    margin-bottom: 0px;
    padding: 0;
}

/* Inner padding on header + body */
#faq .accordion-button {
    padding: 18px 24px;
}

#faq .accordion-body {
    padding: 12px 24px 20px;
}

/* ACTIVE background only */
#faq .accordion-item:has(.accordion-collapse.show) {
    background-color: #F8F6F4;
    border-radius: 10px;
    margin-bottom: 0;
}

#faq .accordion-item .accordion-collapse.show {
    background: transparent;
}

/* Default (closed) arrow down */
#faq .accordion-button::after {
    background-image: url("../images/accordion-down-arrow.svg");
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Active (open) = arrow UP + orange */
#faq .accordion-button:not(.collapsed)::after {
    background-image: url("../images/accordion-up-arrow.svg");
    /* up arrow */
    transform: rotate(0deg);
    filter: brightness(0) saturate(100%) invert(62%) sepia(94%) saturate(470%) hue-rotate(356deg);
}





/*=============================
    Ready To Go Section Start 
===============================*/

.ready-to-go-content img {
    border-radius: 0;
}

.ready-to-go-left h3 {
    color: var(--white-color);
    line-height: 44px;
    padding-bottom: 10px;
}

.ready-to-go-content {
    position: relative;
}

.ready-to-go-left {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 2;
}

.ready-to-go-left a.main-btn.transperent {
    background: transparent;
    border: 1px solid var(--white-color);
    box-sizing: border-box;
}

.ready-to-go-left a.main-btn.transperent:hover {
    background: transparent;
    border-color: transparent;
}

/* Subscriptions Page Start */
.airpay-subscriptions-title h3 {
    padding-bottom: 15px;
}

.key-features-title {
    padding-left: 3rem;
}

.airpay-subscriptions-box h4 {
    color: var(--theme-color);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0;
    z-index: 2;
}

.airpay-subscriptions-box p {
    font: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    color: var(--text-muted);
    margin-bottom: 0;
    padding: 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.airpay-subscriptions-box {
    padding: 30px 10px 30px 10px;
}

.airpay-subscriptions-inner-box {
    background-color: #F8F6F4;
    border-radius: 20px;
    height: 100%;
}

.airpay-subscriptions-swiper,
.airpay-subscriptions-swiper .swiper-wrapper {
    height: 100%;
    padding-bottom: 50px;
    padding-left: 10px;
}

.airpay-subscriptions-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.airpay-subscriptions-inner-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.airpay-subscriptions-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.subscription-box-image {
    margin-top: auto;
}

.subscription-box-image picture {
    overflow: hidden;
    border-radius: 20px;
}

.airpay-subscriptions-inner-box:hover {
    background-color: var(--main-btn-color);
    box-shadow: 0 6px 18px rgba(0, 102, 166, 0.18);

}

.airpay-subscriptions-inner-box:hover h4,
.airpay-subscriptions-inner-box:hover p {
    color: var(--white-color);
    transition: color 0.3s ease;
}

.airpay-subscriptions-title p {
    margin-bottom: 0;
    padding-bottom: 35px;
}

/* Why Choose Airpay Section Start */

#why-choose-airpay {
    background-color: #F1F5FA;
    padding: 60px 0;
}

.why-choose-airpay-box {
    background-color: var(--theme-color);
    border-radius: 20px;
    height: 100%;
}

.why-choose-airpay-box:hover {
    background-color: var(--main-btn-color);
}

.choose-content {
    padding: 25px 50px 45px;
}

.choose-content h4 {
    color: var(--white-color);
    margin-bottom: 0;
    padding: 20px 0;
}

.choose-content p {
    color: var(--white-color);
    margin-bottom: 0;
}

.why-choose-airpay-content h3 {
    color: var(--theme-color);
    padding-bottom: 35px;
}


/* Key Features Section Start */

#key-features {
    padding: 70px 0 50px;
    overflow: hidden;
}

.key-features-content>.row {
    align-items: stretch;
}

.key-features-content .col-lg-4,
.key-features-content .col-lg-8 {
    display: flex;
}



.key-features-content .col-lg-4 {
    position: relative;
}

.key-features-content .col-lg-4::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 230px;
    background: #D9D9D9;
    transform: translateY(-60%);
}



.key-features-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
    padding-bottom: 80px;
}

.key-features-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.key-features-content .swiper-slide {
    position: relative;
}

.key-features-content .swiper-slide:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #D9D9D9;
}


.key-features-swiper-wrap {
    position: relative;
    margin-left: 0px;
    overflow: hidden;
}

.key-features-swiper {
    overflow: visible;
    padding-left: -50px;
}

.choose-image picture {
    overflow: hidden;
    border-radius: 20px;
}

#why-choose-airpay .col-lg-8 {
    position: relative;
    overflow: hidden;
}

.key-features-box p {
    font-family: var(--heading-font);
    color: var(--theme-color) !important;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    padding-top: 20px;
}

.key-features-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    height: 100%;
    padding: 0px 20px 20px;
}


.key-features-box span {
    font-family: var(--heading-font);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0;
    text-align: center;
}

.key-features-box img {
    height: 40px;
}



/* Long Term Section Start */


#long-term {
    padding: 15px 0 60px;
}

.long-term-box {
    display: flex;
    gap: 20px;
    padding: 15px 0px;
    align-items: center;
}

.long-term-left {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding-right: 25px;
}

.long-term-right-content {
    padding-left: 30px;
}

.term-text p {
    margin-bottom: 0;
}

.long-term-left p span {
    font-family: var(--heading-font);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0;
}

.long-term-box p span {
    font-family: var(--heading-font);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0;
}

.long-term-image picture {
    overflow: hidden;
    border-radius: 20px;
}


/* Upi Autopay Section Start */
.upi-autopay-content-one.image picture {
    overflow: hidden;
    border-radius: 20px;
}


.upi-autopay-content p span {
    font-family: var(--heading-font);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0;
}

.upi-autopay-content {
    background-color: #F1F5FA;
    padding: 60px 70px;
}

.upi-autopay-title {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.upi-autopay-content-box {
    background-color: var(--white-color);
    padding: 20px 32px;
    height: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.upi-autopay-content-box p {
    margin-bottom: 0;
}

.autopay-content-title-two {
    padding: 65px 0 30px;
}


/* ===================
Virtual Accounts Page Start
=======================*/

.effortless-settlements-content {
    background-color: #F8F6F4;
    padding: 60px;
    border-radius: 20px;
}

.effortless-settlements-box {
    background-color: var(--white-color);
    padding: 35px 10px 10px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: background-color 0.7s ease, box-shadow 0.7s ease, transform 0.7s ease;
}

.effortless-settlements-box:hover {
    background-color: var(--theme-color);
    box-shadow: 0 6px 18px rgba(0, 102, 166, 0.18);
    transform: translateY(-4px);
}

.effortless-settlements-box:hover h4 {
    color: var(--white-color);
}

.effortless-settlements-box h4 {
    font-family: "Anton", sans-serif;
    color: var(--theme-color);
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 2%;
    text-align: center;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.effortless-settlements-heading {
    padding-bottom: 25px;
}

/* Unique Digital Section Start  */

section#unique-digital {
    padding: 60px 0;
}

.unique-digital-content {
    background-color: #F1F5FA;
    border-radius: 20px;
}

.unique-digital-text {
    padding: 0px 80px;
}

.unique-digital-image picture {
    overflow: hidden;
    border-radius: 20px;
}

.unique-digital-text h3 {
    padding-bottom: 15px;
}

.unique-digital-text {
    padding: 20px 50px;
}

.unique-digital-text p {
    margin-bottom: 0;
}



.unique-digital-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}




.virtual-accounts-swiper {
    padding-left: 3rem;
}

.virtual-accounts-swiper,
.virtual-accounts-swiper .swiper-wrapper {
    height: 100%;
    padding-bottom: 60px;
}

.virtual-accounts-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.virtual-accounts-swiper .airpay-subscriptions-box p {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
}

.virtual-accounts-swiper .airpay-subscriptions-box {
    padding: 30px 32px;
}

.airpay-subscriptions-title.virtual-accounts h3 {
    padding-bottom: 30px;
}



/*============================
 Why Business Section Start 
 =============================*/

#why-business {
    background-color: var(--theme-color);
    overflow: hidden;
}

.why-business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-choose-right-box {
    padding: 50px;
}

.why-business-content {
    position: relative;
}

.tick-icon-image {
    position: absolute;
    top: 25px;
    right: 25px;
}

.choose-box {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 35px 25px;
    position: relative;
    height: 100%;
}

.choose-box:hover {
    background-color: var(--main-btn-color);
}

.choose-box:hover .tick-icon-image img {
    filter: brightness(0) invert(1);
}


.choose-box h4 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 20px;
    color: var(--theme-color);
    line-height: 29px;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.choose-box p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.why-business-title h3 {
    color: var(--white-color);
}

section#why-business {
    margin: 25px 0;
}

.choose-box p {
    line-height: 22px;
}

#why-business .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.why-business-image {
    width: 100%;
}

.why-choose-right-box {
    padding: 0 50px;
}



/*=============================
 Instant Benefits Section Start 
 =============================*/


#instant-benefits {
    padding: 60px 0;
}

.instant-choose-box {
    background-color: #F1F5FA;
    border-radius: 20px;
    position: relative;
    padding: 45px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.instant-choose-box h4 {
    color: var(--theme-color);
    min-height: 60px;
    margin: 0 0 14px;
    display: flex;
    align-items: flex-start;
}

.instant-tick-icon-image {
    position: absolute;
    top: 15px;
    right: 15px;
}


.instant-choose-box p {
    margin-bottom: 0;
}

.instant-choose-box:hover {
    background-color: #FFF5EC;
    box-shadow: 0 6px 18px rgba(0, 102, 166, 0.18);
}


/* ===================
   Accounts Work Page Start
=======================*/
section#accounts-work {
    background-color: #F8F6F4;
    padding: 60px 0;
}

.accounts-work-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
}

.accounts-work-content-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.accounts-work-content-left-points {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accounts-work-content-left-point {
    display: flex;
    justify-content: flex-start;
    align-items: top;
    gap: 1rem;
}

.number-bubble {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-color: var(--main-btn-color);
    color: white;
    font-size: 15px;
}

.point-content p {
    text-align: left;
    width: 310px;
}

.accounts-work-content-right img {
    width: 865;
}

#accounts-work a.main-btn.transperent {
    background: none;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
}

#accounts-work a.main-btn.transperent:hover {
    color: var(--white-color);
}

#accounts-work .secure-buttons {
    text-align: center;
    padding-top: 35px;
}

@media (min-width: 992px) and (max-width: 1300px) {
    .accounts-work-content-right img {
        width: 600px;
    }
}

@media (max-width: 991px) {
    .accounts-work-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    .accounts-work-content-right img {
        width: 600px;
    }
}

@media (max-width: 767px) {
    .accounts-work-content-right img {
        width: 540px;
    }
}

@media (max-width: 575px) {
    .accounts-work-content-right img {
        width: 420px;
    }
}



/* ============================
   Dash Checkout Page Start
===============================*/

.secure-left-box.checkout h4 {
    color: var(--theme-color);
    margin-bottom: 0;
    line-height: 21px;
    padding-top: 10px;
}

.secure-left-box.checkout p span {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0%;
}

.secure-left-box.checkout p:first-of-type {
    padding-bottom: 0 !important;
    margin-bottom: 0;
}

/* flawless experience Section Start*/

#flawless-experience {
    background-color: #F8F6F4;
    padding: 60px 0;
}

.flawless-box {
    background-color: var(--white-color);
    height: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 30px;
    flex-direction: column;
    text-align: center;
}

.flawless-box p {
    margin-bottom: 0;
}

.flawless-box:hover {
    box-shadow: 0 6px 18px rgba(0, 102, 166, 0.18);
}

/* drop offs section stat*/

#drop-offs {
    padding: 60px 0 25px;
    overflow: hidden;
}

.drop-offs-card {
    background-color: #f3f7fb;
    border-radius: 20px;
    padding: 200px 40px 35px;
    position: relative;
    text-align: center;
}
.drop-offs-card:hover {
    box-shadow: 0 6px 18px rgba(0, 102, 166, 0.18);
}


/* Mobile Image */
.drop-offs-image {
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 278px;
}

.drop-offs-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tick + Text */
.drop-offs-badge {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.drop-offs-badge img {
    width: 38px;
    height: 38px;
}

/* Text */
.drop-offs-badge p {
    font-family: var(--font-heading);
    color: #4b5a68;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    margin: 0;
}

/* Swiper overflow fix */
#drop-offs .swiper {
    overflow: visible;
}

.drop-offs-heading {
    padding-bottom: 10rem;
}

#drop-offs .swiper {
    height: 100%;
}

#drop-offs .swiper-wrapper {
    align-items: stretch;
}

#drop-offs .swiper-slide {
    height: auto;
    display: flex;
}

.drop-offs-card {
    height: 100%;
    width: 100%;
}

/* Integration Easy Section Start */

.integration-left {
    background-color:#0066A6;
    border-radius: 20px;
    height: 100%;
    padding: 50px 70px;
}

.integration-left h4 {
    font-family: "Anton", sans-serif;
    color: var(--white-color);
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 41px;
    letter-spacing: 0%;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.integration-left h3 {
    color: var(--white-color);
    padding-bottom: 25px;
    margin-bottom: 0;
}

.integration-right picture {
    overflow: hidden;
    border-radius: 20px;
}

.integration-coding-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.integration-coding-box p {
    font-family: var(--font-heading);
    color: var(--white-color);
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    margin-bottom: 0;
}

.integration-coding-box p span {
    font-family: var(--font-heading);
    color: var(--white-color);
    font-weight: 700;
    font-style: Medium;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
}

/* Payment Option Checkout Section Start */

section.payments-options.checkout {
    padding: 60px 0 70px;
}

.logo-item.checkout {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

section.payments-options.checkout .payment-options-title {
    padding-bottom: 15px;
}

/* convert more section start */

#convert-more {
    margin-left: 3rem;
    overflow: hidden;
}

.progress-row-content {
    align-items: flex-start;
}

.convert-more-box {
    background: #F1F5FA;
    border-radius: 14px;
    overflow: hidden;
}
.convert-more-box:hover {
    box-shadow: 0 6px 18px rgba(0, 102, 166, 0.18);
}
.convert-more-box picture,
.convert-more-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.convert-more-box p {
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.convert-more-slider .swiper-slide {
    height: auto;
}

.convert-more-heading p {
    margin: 0;
    padding: 30px 0;
}

/* Why Brand Section Start */

#why-brand {
    padding: 25px 0 70px;
}


.why-brand-image picture {
    overflow: hidden;
    border-radius: 20px;
}

.why-brand-blue-box {
    display: flex;
    align-items: center;
    height: 100%;
    background-color: #0066A6;
    border-radius: 100px;
    padding: 12px 45px 12px 15px;
    width: auto;
    gap: 10px;
}
.why-brand-blue-box:hover {
    background-color: var(--main-btn-color);
}
.why-brand-blue-box:hover img {
    filter: brightness(0) invert(1);
}
.why-brand-blue-box p {
    margin-bottom: 0;
    color:#0066A6;
}

.why-brand-heading {
    padding-bottom: 25px;
}
.why-brand-right-content .why-brand-blue-box p {
    color: #fff;
}


/* Your Brand Section Start */

section#your-brand {
    background-color:#0066A6;
    padding: 70px 0;
    margin: 30px 0 50px;
}

.your-brand-heading p,
.your-brand-heading h3 {
    color: var(--white-color);
}

.your-brand-image {
    position: relative;
    display: inline-block;
}

.your-brand-image picture {
    overflow: hidden;
    border-radius: 20px;
}

/*.your-brand-image::before {
    content: "";
    position: absolute;
    top: 25px;
    left: -25px;
    width: 100%;
    height: 100%;
    background: #264660;
    border-radius: 18px;
    z-index: 1;
}*/


.your-brand-image img {
    border-radius: 18px;
    position: relative;
    z-index: 2;
}

.why-brand-blue-box.your-brand {
    background-color: #fff;
}
.why-brand-blue-box.your-brand:hover {
    background-color: var(--main-btn-color);
}
.why-brand-blue-box.your-brand:hover img {
    filter: brightness(0) invert(1);
}
.why-brand-blue-box.your-brand:hover p{
    color: #fff;
}





@media (min-width: 992px) {

    /*============================
         grid boxes manage intelligent 
     =============================*/
    .intelligent-swiper {
        overflow: visible;
    }

    .intelligent-swiper .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        transform: none !important;
    }

    .intelligent-swiper .swiper-slide {
        width: auto !important;
    }
    /* ===========================
         grid boxes manage go-live 
    ================================*/
    .go-live-swiper {
        overflow: visible;
    }

    .go-live-swiper .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        transform: none !important;
    }

    .go-live-swiper .swiper-slide {
        width: auto !important;
    }

    .go-live-swiper .swiper-pagination {
        display: none;
    }

    /*================================ 
    every-payment section 
=================================*/

    /* ONLY hovered card flips (90% effect) */
    .payment-card:hover .card-inner {
        transform: rotateY(162deg);
    }

    /* tilt positions — ONLY on hovered card */
    .payment-card.tilt-left:hover {
        transform: translateY(0) rotate(0deg);
        background-color: #002A45;
    }

    .payment-card.tilt-center:hover {
        transform: translateY(0) rotate(0deg);
        background: var(--theme-color);
    }

    .payment-card.tilt-right:hover {
        transform: translateY(0) rotate(0deg);
        background-color: #002A45;
    }

    /* default delay */
    .payment-card,
    .payment-card .card-inner {
        transition-delay: 0.15s;
    }

    /* hovered card = instant response */
    .payment-card:hover,
    .payment-card:hover .card-inner {
        transition-delay: 0s;
    }





}



section#airpay-subscriptions {
    will-change: transform, opacity;
}



@media (min-width: 1440px) {

    .key-features-title {
        padding-left: 5rem;
    }

    #progress {
        margin-left: 5rem !important;
    }

}

/**/

.global-clients-section{
    padding-bottom: 50px;
}
.global-clients-card-content {
    padding: 13px 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    background: #0066A6;
    border-radius: 70px;
    margin-top: 20px;
    height: 76px;
}
.global-clients-card-content p {
    margin: 0;
    font-size: 20px;
    color: #fff;
}
.global-clients-section .section-header h3 {
    margin-bottom: 40px;
}
#main-page-wrapper section.airpay-exim-can-do-section {
    background: #F1F5FA;
    padding: 50px 0;
    margin-bottom: 50px;
}
.airpay-exim-box {
    display: flex;
    flex-direction: row-reverse;
    gap: 29px;
    background: #FFFFFF;
    padding: 34px;
    margin-bottom: 20px;
    border-radius: 20px;
}
.airpay-exim-box-text h5 {
    color: #0066A6;
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
    margin-bottom: 25px;
}
.airpay-exim-box-text p {
    margin-bottom: 0;
    line-height: 19px;
}
.airpay-exim-can-do-section .section-header h3 {
    margin-bottom: 30px;
    text-transform: inherit;
}
.global-businesses-section .section-header h3 {
    margin-bottom: 30px;
    text-transform: inherit;
}
.global-businesses-card {
    background: #F8F6F4;
    display: inline-block;
    padding: 13px 20px;
    border-radius: 100px;
    height: 50px;
    margin-bottom: 10px;
}
.global-businesses-card-content p{
    margin-bottom: 0;
    color: #0066A6;
}
.global-businesses-card-content {
    display: flex;
    gap: 15px;
}

.how-it-works-step h3 {
    font-size: 24px;
    line-height: 25px;
    margin-bottom: 15px;
}
.how-it-works-left {
    background: #0066A6;
    padding: 90px;
    border-radius: 10px;
}
.how-it-works-left h3 {
    color: #fff;
}
.how-it-works-left p{
    color: #fff;
}
.global-businesses-section{
    padding-bottom: 50px;
}