:root {
    --primary-color: #502478;
    --theme-color: #502478;
    --text-dark: #222;
    --text-light: #555;
    --bg-light: #fafafa;
    --heading-font: "Figtree", sans-serif;
    --body-font: "Inter", sans-serif;
    
}

body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

img {
    max-width: 100%;
}

* {
    transition: 0.2s;
}

.figtree {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.inter {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/*swiper buttons*/
    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
        border: 1px solid #fff;
        /* white border */
        border-radius: 50%;
        background: transparent;
        /* transparent inside */
        color: #fff;
        /* arrow color */
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .swiper-button-next::after {
        font-size: 14px;
        padding-left: 15px;
    }

    .swiper-button-prev::after {
        font-size: 14px;
        padding-right: 15px;
    }

    .swiper-button-next::before,
    .swiper-button-prev::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 12px;
        transform: translateY(-50%);
        width: 23px;
        height: 2px;
        background: #fff;
        z-index: -1;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: rgba(255, 255, 255, 0.1);
        /* light hover effect */
    }

    .swiper-pagination-bullets {
        position: absolute;
    }

    .swiper-pagination-bullets .swiper-pagination-bullet {
        background: #fff;
    }
/*end*/
/* sr-only style */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}
/*end*/
/*header */
    .hide-header .main-header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999;
        transition: 0.3s;
        transform: translateY(-300px);
    }

    .scrolled .main-header {
        transform: translateY(0px);
    }

    .hide-header .site-header {
        box-shadow: 0 1px 50px rgb(0 0 0 / 5%);
    }

    .top-header {
        background-color: black;
        color: white;
        display: flex;
        justify-content: center;
        padding: 12px 0;
    }

    .top-header a {
        color: #fff;
        margin: 0;
        padding: 2px 20px;
        text-decoration: none;
        font-weight: 700;
        position: relative;
        padding-bottom: 5px;
        font-family: var(--heading-font);
        font-size: 16px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .top-header a:hover {
        color: rgb(255 255 255 / 70%);
    }

    .top-header a.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        width: 100%;
        background-color: #F4F4F2;
    }

    .top-header a:hover::after {
        background-color: rgb(255 255 255 / 70%);
    }

    /* Bottom white header */
    .bottom-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 20px 15px 20px;
        background-color: #FFF;
    }

    .logo {
        display: flex;
    	align-items: flex-start;
        font-size: 24px;
        font-weight: bold;
    }

    .logo img {
        height: 40px;
        margin-right: 8px;
    }

    .logo .logotext {
        font-family: var(--heading-font);
        font-size: 45px;
        margin-left: 5px;
        line-height: 1;
        font-weight: 600;
        color: transparent;
        background: linear-gradient(90deg, #502478 0%, rgba(39, 44, 124, 0.86) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-300px) scale(0);
        transition: 0.3s;
    }

    .logo .logotext.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0px) scale(1);
    }


    ul.nav-menu-items {
        padding: 0;
        margin: 0;
        z-index: 2;
    }

    .nav-menu-items li {
        list-style: none;
        position: relative;
        z-index: 1;
    }
    .nav-menu-items .sub-menu > li{
        padding: 5px 0;
    }
    .nav-menu-items .sub-menu {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        z-index: -1;
        top: 100%;
        right: 0;
        background: #fff;
        padding: 10px;
        transform: translateY(-100%) rotateX(90deg);
        min-width: 180px;
        border-radius: 3px;
        box-shadow: 0 15px 20px rgb(0 0 0 / 10%);
    }

    .nav-menu-items li:hover>.sub-menu,
    .nav-menu-items .sub-menu.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0%) rotateX(0deg);
    }

    .right-links {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .right-links a {
        text-decoration: none;
        color: #323232;
        font-weight: 500;
        font-weight: 500;
        font-size: 20px;
        font-family: var(--heading-font);
        margin: 0 10px;
        transition: 0.3s;
        display: inline-block;
    }

    .right-links .sub-menu a {
        font-size: 16px;
        display: block;
    }

    .right-links a.menu-mute {
        color: #381B53;
    }

    .right-links a.menu-mute.btn-outline {
        padding: 5px 20px;
        transition: 0.3s;
    }

    .right-links a:not(.menu-mute):hover,
    .right-links a.menu-mute.btn-outline:hover {
        transform: scale(1.1);
    }

    .right-links a.menu-mute.btn-outline:hover,
    .right-links a.menu-mute.btn-outline.active {
        background: #735093;
        color: #fff;
        border-color: #967CAE;
    }

    .right-links a.menu-app-cta {
        display: inline-block;
        position: relative;
        z-index: 1;
        margin: 0;
    }

    .right-links a.menu-app-cta.right-bdr::after {
        content: "";
        position: absolute;
        right: -12px;
        top: -5px;
        height: calc(100% + 10px);
        width: 1px;
        background: #8E8E8E;
        transition: 0.2s;
    }

    .right-links a.menu-app-cta.right-bdr:hover::after {
        transform: translateX(-2px) scale(0.9);
    }

    .btn-outline {
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
        padding: 6px 12px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: bold;
    }

    .icon {
        height: 24px;
        width: 24px;
    }

    .dropdown {
        position: relative;
    }

    .dropdown::after {
        content: '\f107';
        font: normal normal normal 14px/1 FontAwesome;
        font-size: 12px;
        margin-left: 5px;
        color: inherit;
    }
/* end */

/* hero section */
    .hero {
        position: relative;
        height: 80vh;
        margin: 10px auto 40px;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        background-position: top center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .hero.contact {
        height: 65vh;
    }

    .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(66, 88, 108, 0.36) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.6) 80%);
    }

    .hero-content {
        position: relative;
        z-index: 1;
        padding: 20px;
        max-width: 95%;
    }

    .contact .hero-content {
        margin-bottom: 240px;
    }

    .hero-content p {
        font-size: 24px;
        margin: 20px 0px 40px;
    }

    .college .hero-content p,
    .business .hero-content p,
    .about .hero-content p {
        font-size: 30px;
    }

    .hero .tag {
        border-radius: 999px;
        text-decoration: none;
        transition: all 0.3s ease;
        background: var(--theme-color) !important;
        color: #fff;
        text-align: center;
        display: inline-block;
        padding: 7px 30px;
        border: none;
        position: relative;
        z-index: 1;
        overflow: hidden;
        font-weight: 500;
        font-size: 16px;
        margin-bottom: 20px;
        font-family: var(--body-font);
    }

    .hero .tag::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0.55%, rgba(255, 255, 255, 0) 100%);
        z-index: 1;
    }

    .badge {
        display: inline-block;
        background-color: #6b21a8;
        padding: 6px 18px;
        font-size: 14px;
        border-radius: 999px;
        margin-bottom: 20px;
        font-weight: 500;
    }

    .hero h1 {
        font-size: 85px;
        font-family: var(--heading-font);
        margin: 0 0 15px;
        font-weight: 700;
    }

    .hero.college h1,
    .hero.smallheading h1 {
        font-size: 65px;
        margin-bottom: 30px;
    }

    .hero p.subtitle {
        font-size: 30px;
        font-family: var(--heading-font);
        font-weight: 500;
        margin: 20px 0 35px;
    }

    .store-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 60px;
    }

    .store-buttons img {
        height: 50px;
        transition: transform 0.2s ease;
    }

    .store-buttons img:hover {
        transform: scale(1.05);
    }

    .store-buttons a img {
        cursor: pointer;
    }

    .store-buttons img:not(a img) {
        cursor: default;
    }

    .scroll-down {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        font-size: 16px;
        color: white;
        animation: bounce 2s infinite;
        font-family: var(--heading-font);
        font-weight: 400;
    }

    .scroll-down::after {
        content: url(/wp-content/uploads/2025/09/arrow.png);
        object-fit: cover;
        display: block;
        margin-top: 5px;
        height: 50px;
        width: auto;
    }
/* end */

/* logo */
    .logo-slider-section {
        padding: 0px 0px;
        text-align: center;
        overflow: hidden;
        z-index: 2;
        position: relative;
    }

    .logo-heading {
        color: #323232;
        font-size: 30px;
        font-weight: 500;
        font-family: var(--heading-font);
    }

    .logoSwiper,
    .logoSwiper2 {
        padding: 0px 0;
        overflow: hidden;
    }

    .logoSwiper .swiper-slide,
    .logoSwiper2 .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logoSwiper2 .swiper-wrapper{
        /*justify-content: center;*/
    }
    .sldr-ttl{
        padding: 0 15px;
    }
    .logoSwiper img,
    .logoSwiper2 img {
        width: 180px;
        max-height: 80px;
        max-width: 100%;
        object-fit: contain;
        filter: none,
            grayscale(0.3);
            transition: 0.3s ease;
        aspect-ratio: 2 / 1;
        background: #ffffff;
        padding: 0 0px;
        border-radius: 0px;
    }

    .logoSwiper img:hover,
    .logoSwiper2 img:hover {
        filter: none;
        /*transform: scale(1.05);*/
    }
/* end */

/* slider */
    .bglight-sec {
        border-radius: 20px;
        padding: 70px 15px 0px;
        overflow: hidden;
        position: relative;
        z-index: 2;
    }

    .bglight-sec::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: calc(100% - 180px);
        width: 100%;
        background: rgb(247 247 245);
        z-index: -1;
        border-radius: 20px 20px 20px 20px;
    }

    .sliderinfo {
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .sliderinfo h2 {
        font-family: var(--heading-font);
        font-weight: 700;
        font-style: Bold;
        font-size: 38px;
        text-align: center;
    }

    .sliderinfo .tab {
        background-color: #502478;
    }

    .tabs-wrapper {
        border: 1px solid #E0E0E0;
        padding: 0 20px;
        border-radius: 14px;
        width: 880px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .tab-link {
        text-decoration: none;
        color: #4F4F4F;
        position: relative;
        padding: 16px 15px;
        text-align: center;
        font-weight: 600;
        font-family: var(--heading-font);
        font-size: 18px;
        position: relative;
    }

    .tab-link:not(:last-child) {
        border-right: 1px solid #f1f1f1;
    }

    .tab-link.active {
        color: #502478;
        font-weight: 600;
    }

    .tab-link.active::after,
    .tab-link.active::before {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0%;
        transform: translateX(0%);
        height: 4px;
        background: #967cae;
        border-radius: 5px;
        width: 100%;
        transition: 0.3s;
    }

    .tab-link.active::after {
        background: #502478;
        width: var(--progress-x, 0%);
        z-index: 2;
    }

    .tab-link.active::after {
        animation: progress var(--progress-duration) linear forwards;
    }

    @keyframes progress {
        from {
            width: 0;
        }

        to {
            width: 100%;
        }
    }

    .badge-launch {
        background: #f3e8ff;
        color: var(--primary-color);
        font-size: 12px;
        font-weight: 600;
        padding: 2px 8px;
        border-radius: 20px;
        margin-left: 6px;
        position: absolute;
        top: calc(0% - 11px);
        left: 50%;
        width: 120px;
        transform: translateX(-50%);
    }

    .wealthSwiper {
        overflow: visible;
    }

    .welth_cont {
        color: #3D3D3D;
        margin: 30px 0 0px;
        padding-bottom: 130px;
        position: relative;
        z-index: 1;
        min-height: 380px;
    }

    .welth_cont::after {
        content: "";
        position: absolute;
        right: -9%;
        top: -8%;
        width: 540px;
        aspect-ratio: 3 / 2;
        background: url(/wp-content/uploads/2025/09/background-image.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
    }

    .welth_cont h3 {
        margin-bottom: 25px;
        font-family: var(--heading-font);
        font-size: 29px;
        font-weight: 600 !important;
    }

    .welth_cont h3 .text-primar {
        font-weight: 700;
    }

    .welth_cont p {
        font-family: var(--body-font);
        font-size: 18px;
    }

    .skw-img {
        position: absolute;
        left: 50%;
        transform: translate(-10%, 0%);
    }

    .skw-img img {
        max-width: 300px;
    }

    .text-primar {
        color: #502478;
    }

    .wealthSwiper .swiper-button-next,
    .wealthSwiper .swiper-button-prev {
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
    }

    .wealthSwiper .swiper-button-next {
        right: -5%;
    }

    .wealthSwiper .swiper-button-prev {
        left: -5%;
    }

    .wealthSwiper .swiper-button-next::after {
        font-size: 14px;
        padding-left: 15px;
    }

    .wealthSwiper .swiper-button-prev::after {
        font-size: 14px;
        padding-right: 15px;
    }

    .wealthSwiper .swiper-button-next::before,
    .wealthSwiper .swiper-button-prev::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 12px;
        transform: translateY(-50%);
        width: 23px;
        height: 2px;
        background: #502478;
        z-index: -1;
    }

    .feature-strip {
        display: flex;
        align-items: center;
        background-color: #f1e9fb;
        padding: 20px 0;
        border-radius: 15px;
        position: relative;
        margin: 85px auto 0 auto;
        max-width: unset;
        width: 100%;
        z-index: -1;
    }

    .feature-strip::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
        height: 100px;
        width: calc(110% + 12px);
        background: rgb(247 247 245);
        z-index: -2;
        border-radius: 0 0 20px 20px;
        display: none;
    }

    .feature-strip::after {
        content: "";
        position: absolute;
        left: -6%;
        top: 0;
        height: 100%;
        width: 112%;
        background: #f1e9fb;
        border-radius: 15px;
        z-index: -2;
    }

    .feature-strip .feature {
        text-align: center;
        font-size: 14px;
        color: #381B53;
        display: flex;
        align-items: center;
        gap: 0px;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        font-family: var(--body-font);
        font-weight: 600;
    }

    .feature img, .feature svg {
        height: 34px;
        margin-bottom: 8px;
        width: 34px;
        object-fit: contain;
    }
/* end */

/* info */
    .info-section {
        padding: 0px 0 80px;
        overflow: hidden;
    }

    .info-icon {
        font-size: 24px;
        font-weight: bold;
        color: #000;
        max-width: 320px;
        max-height: 100px;
    }

    .info-icon img {
        max-width: 100%;
        width: 100%;
        max-height: 100%;
        object-fit: contain;
        max-width: 186px;
        margin-bottom: 15px;
    }

    .info-icon h4 {
        font-family: var(--heading-font);
        font-weight: 500;
        font-size: 30px;
        text-align: center;
    }
/* end */

/* testimonial */
    .testimonial-slider {
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        overflow: hidden;
        z-index: 1;
        border-radius: 30px;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
    }

    .business .testimonial-slider {
        background-position: top center;
    }

    .testimonial-slider::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(177.16deg, rgba(0, 0, 0, 0.32) 2.32%, rgba(0, 0, 0, 0.8) 54.1%, rgba(0, 0, 0, 0.8) 68.77%);
        z-index: -1;
    }

    .testimo {
        min-height: 60vh;
        margin: 0;
    }

    .testimonial-slider .testmoni-ttl {
        font-family: var(--heading-font);
        font-size: 38px;
        font-weight: 700;
        text-align: center;
        color: #fff;
        margin-top: 80px;
    }

    .testimonial-slider .swiper {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .content-box {
        color: #fff;
        text-align: center;
        /*height: 80%;*/
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }

    .content-box p {
        font-size: 18px;
        font-weight: 400;
        font-family: var(--body-font);
        margin-left: auto;
        margin-right: auto;
        max-width: 776px;
    }

    .content-box h2 {
        margin-bottom: 45px;
    }

    .content-box .author {
        margin-top: 20px;
        display: flex;
        align-items: center;
        text-align: center;
        flex-direction: row;
        justify-content: center;
    }

    .content-box .author img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-bottom: 0px;
    }

    .content-box .details {
        text-align: left;
        margin-left: 15px;
    }

    .content-box .details h4 {
        margin-bottom: 1px;
        font-size: 20px;
        font-weight: 800;
    }

    .content-box .details span {
        font-size: 12px;
        color: #D9D9D9;
        font-weight: 600;
    }

    .testimonial-slider .swiper-pagination-bullets {
        bottom: 30px;
    }
/* end */

/* paichart */
    .bglight-graph {
        background: rgb(247 247 245);
        border-radius: 30px;
        overflow: hidden;
        padding: 50px 30px 20px;
    }

    .bglight-graph h2 {
        font-size: 38px;
        color: #323232;
        margin-bottom: 30px;
        font-family: var(--heading-font);
    }

    .bglight-graph h3 {
        font-size: 30px;
        color: #323232;
        font-family: var(--body-font);
    }

    .bglight-graph h3 strong {
        font-size: 38px;
    }

    .bglight-graph .cont-sec {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 50px;
        padding: 60px 20px;
    }

    .cont-sec .d-flex {
        max-width: 1000px;
        width: 100%;
        margin: 0 auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    /* Left Buttons */
    .graphsec .tabs {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .graphsec .tab-btn {
        padding: 15px 30px;
        border-radius: 10px;
        background: #fff;
        color: #323232;
        font-weight: 500;
        font-size: 24px;
        font-family: var(--body-font);
        cursor: pointer;
        transition: 0.3s;
        border: 1px solid #ECECEC;
        box-shadow: 0px 2px 6px 2px #00000026, 0px 1px 2px 0px #0000004D;
        text-align: center;
        margin-top: 20px;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .graphsec .tab-btn.active {
        background: #967CAE;
        color: #fff;
        border-color: #967CAE;
    }

    .graphsec .tab-btn.active::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 3px;
        background: #EDE7F7;
        border-radius: 4px;
        z-index: 1;
    }

    .graphsec .tab-btn.active::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: var(--progress, 0%);
        height: 3px;
        background: #381B53;
        border-radius: 4px;
        z-index: 2;
        transition: 0.3s;
    }

    /* Right Image */
    .graphsec .image-container {
        max-width: 600px;
    }

    .graphsec .image-container img {
        width: 100%;
        border-radius: 10px;
        display: none;
        aspect-ratio: 200 / 97;
        object-fit: contain;
    }

    .graphsec .image-container img.active {
        display: block;
    }

    .graphsec .note {
        font-size: 12px;
        color: #666;
        margin-top: 10px;
    }

    .graphsec .tnc-sec p {
        color: #00000099;
        font-size: 12px;
    }
/* end */

/* secure part */
    .secure-section {
        padding: 60px 20px;
        position: relative;
        overflow: hidden;
    }

    .secure-icon {
        font-size: 60px;
        margin-bottom: 20px;
        text-align: center;
    }

    .secure-section h2 {
        font-size: 38px;
        font-weight: 700;
        text-align: center;
        color: #323232;
        margin-top: 50px;
        margin-bottom: 40px;
        font-family: var(--heading-font);
    }

    .secure-section p {
        font-size: 30px;
        color: #4E4E4E;
        margin-bottom: 40px;
        text-align: center;
        font-weight: 400;
        font-family: var(--heading-font);
    }

    .secure-features {
        display: flex;
        justify-content: space-around;
        gap: 50px;
        flex-wrap: wrap;
        align-items: center;
        padding: 30px 0;
        border-top: 1px solid rgb(42 42 42 / 30%);
        border-bottom: 1px solid rgb(42 42 42 / 30%);
    }

    .feature {
        font-size: 22px;
        color: #323232;
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: var(--heading-font);
    	    font-weight: normal;
    }

    .feature span.icon {
        color: #333;
        width: 24px;
        height: 24px;
    }

    .feature span.icon img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        margin-bottom: 12px;
    }
/* end */

/*backed by*/
    .backedby {
        position: relative;
        z-index: 1;
        overflow: hidden;
        margin-bottom: 100px;
    }

    .backedby .logo-heading {
        font-size: 38px;
        font-weight: 600;
        font-family: var(--heading-font);
    }

    .backedby.about-p .logo-heading {
        font-weight: 700;
    }
    .backedby .bakced-logos{
        pointer-events: none;
    }
    .sldr-ttl h4 {
        color: #4E4E4E;
        font-size: 23px;
        text-align: left;
        font-weight: 600;
        font-family: var(--heading-font);
    }

    .bakced-logos {
        overflow: hidden;
    }

/*end*/

/* highlight */
    .cta-sec {
        padding-top: 80px;
    }

    .app-section {
        /* background: #735093; */
        border-radius: 30px;
        padding: 50px 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0px auto;
        color: #fff;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
    }

    .app-section>.row {
        width: 100%;
    }

    .app-text {
        margin: 10px 0 30px;
    }

    .app-text h2 {
        font-size: 38px;
        font-weight: 600;
        line-height: 1.8;
        margin-bottom: 40px;
        font-family: var(--heading-font);
    }

    .app-text p {
        font-size: 22px;
        margin-bottom: 25px;
        color: #FFFFFF;
        font-family: var(--body-font);
    	font-weight: normal;
    }

    .app-text .store-buttons {
        display: flex;
        gap: 15px;
        justify-content: flex-start;
        margin-top: 50px;
        margin-bottom: 0;
    }

    .store-buttons img {
        height: 60px;
        cursor: pointer;
        transition: transform 0.2s ease;
        width: 200px;
        background: #ffffff;
        border-radius: 10px;
        object-fit: contain;
    }

    .store-buttons.dark img {
        background: #000;
    }

    .store-buttons img:hover {
        transform: scale(1.05);
    }

    .app-image {}

    .app-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
        position: absolute;
        bottom: 0;
        right: 15px;
    }

/* end */

/* all faq page  */
    .categories {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }

    .faq-item {
        position: relative;
        display: block;
        padding: 15px 0 15px 0;
        padding-right: 55px;
        color: #323232;
        font-weight: 500;
        font-size: 22px;
        /* background: rgb(0 0 0 / 0%); */
        border-bottom: 1px solid #8C9196;
    }

    .faq-item:hover {
        /* background: #242446; */
    }

    .faq-item h4 {
        margin: 0;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .faq-item p {
        margin-top: 8px;
        display: none;
        color: #4e4949;
        font-size: 14px;
    }

    .faq-item.open p {
        display: block;
    }

    .faq-title {
        font-size: 45px;
        font-weight: 700;
        line-height: 48px;
        text-align: center;
        background: linear-gradient(90deg, #735093, #381B53);
        color: white;
        padding: 30px 20px;
        border-radius: 12px;
        margin-bottom: 20px;
        display: inline-block;
        width: 100%;
        /*height: 80px; */
        margin-top: 12px;
        font-family: var(--heading-font);
    }

    .faq_explore .explore-container{
        padding: 0;
        border: none;
    }
    .faq_explore .explore-title{
        display: none;
    }
    .categories {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin-top: 30px;
        margin-bottom: 0px;
        flex-wrap: wrap;
    }

    .categories button {
        border: 1px solid #967CAE;
        padding: 8px 16px;
        color: #381B53;
        border-radius: 50px;
        font-size: 22px;
        font-weight: 500;
        line-height: 27px;
        font-family: figtree;
        cursor: pointer;
        transition: all 0.3s ease;
            background: white;
    }


    .categories button.active,
    .categories button:hover {
        background: #735093;
        color: white;
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .faq-title {
            font-size: 34px;
            line-height: 41px;
            padding: 20px 20px;
            border-radius: 12px;
        }

        .categories {
            display: block;
            overflow: auto;
            white-space: nowrap;
            margin: 0;
        }
        .categories button{
            display: inline-block;
            margin: 0 8px 0 0;
            font-size: 14px;
        }
        .faq_explore .explore-container{
            padding: 20px;
            border: 1px solid #e0dfe3;
        }
        .faq_explore .explore-title{
            display: block;
        }
    }

/* end */

/* FAQ */
    .faq {
        overflow: hidden;
        padding-bottom: 10px;
    }

    .faq .main_hd {
        color: #323232;
        font-size: 38px;
        margin-bottom: 50px;
        font-weight: 700;
        font-family: var(--heading-font);
    }

    .faq .accordion-item {
        border: none;
        border-radius: 0px;
        overflow: hidden;
        margin-bottom: 20px;
        background: rgb(0 0 0 / 0%);
        box-shadow: none;
        border-bottom: 1px solid rgb(140 145 150 / 30%);
    }

    .faq .accordion-header {
        padding: 0;
        background: transparent;
    }

    .faq .accordion-header {}

    .faq .accordion-header .accordion-button {
        position: relative;
        display: block;
        padding: 15px 0 15px 0;
        padding-right: 55px;
        color: #323232;
        font-weight: 500;
        font-size: 22px;
        background: rgb(0 0 0 / 0%);
        border: none;
        box-shadow: none;
        font-family: var(--heading-font);
    }

    .faq .accordion-button:focus {
        border: none;
        box-shadow: none;
    }

    .faq .accordion-header .accordion-button::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0px;
        transform: translateY(-50%);
        width: 4px;
        height: 47%;
        background: var(--primary-color);
        border-radius: 5px;
        display: none;
    }

    .faq .accordion-header .accordion-button[aria-expanded="true"] {
        color: var(--primary-color);
    }

    .faq .accordion-header .accordion-button:after {
        content: "\f107";
        font-family: FontAwesome;
        font-size: 14px;
        color: inherit;
        width: 30px;
        height: 30px;
        border-radius: 50px;
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        align-content: center;
        background: rgb(0 0 0 / 0%);
    }

    .faq .accordion-header .accordion-button[aria-expanded="true"]:after {
        content: "\f106";
    }

    .faq .accordion-body {
        border: none !important;
        padding: 5px 0 20px 0;
        color: var(--text-light);
        font-family: var(--body-font);
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        opacity: 0.9;
    }

    .dnld_btn,
    .theme-btn {
        /*box-shadow: 3.8px 3.8px 7.6px 0px #B8C5CA;*/
        background: #502478;
        padding: 7px 15px;
        text-align: center;
        width: 280px;
        max-width: 100%;
        display: inline-block;
        border-radius: 12px;
        font-size: 24px;
        color: #F4F4F2;
        text-decoration: none !important;
        cursor: pointer;
        font-family: var(--heading-font);
        transition: 0.3s;
        font-weight: 400;
    }

    .dnld_btn:hover,
    .theme-btn:hover {
        transform: scale(1.1);
        background: #381B53;
        color: #F4F4F2;
    }

/* end */

/* footer */
    .foot {
        background: #F4F4F2;
        padding: 50px 30px;
        color: #7B7B7B;
        font-size: 14px;
        line-height: 1.6;
        border-radius: 30px;
        margin: 50px auto;
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        color: var(--primary-color);
        text-decoration: underline;
        background-color: rgb(228 224 230);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-social a svg {
        width: 20px;
        height: 20px;
    }

    .footer-logo {
        font-size: 26px;
        font-weight: bold;
        color: #6c3dbf;
    }

    .footer-social {
        display: flex;
        gap: 12px;
        margin: 15px 0;
    }

    .footer-social a img {
        width: 22px;
        height: 22px;
    }

    .footer-apps {
        display: flex;
        gap: 12px;
    }

    .footer-apps img {
        height: 40px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-links h4 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 10px;
        color: #000;
        font-family: var(--heading-font);
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links ul li {
        margin-bottom: 8px;
    }

    .footer-links ul li a {
        color: #7B7B7B;
        text-decoration: none;
        font-family: var(--body-font);
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .footer-links ul li a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        padding-bottom: 15px;
        padding-top: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        font-size: 13px;
        color: #666;
    }

    .tagx {
        display: flex;
        gap: 90px;
        align-items: center;
        letter-spacing: 1px;
        font-size: 14px;
        font-family: var(--body-font);
        color: #7B7B7B;
    	font-weight: 500;
    }

    .footer-bottom a {
        color: #7B7B7B;
        margin: 0 10px;
        text-decoration: none !important;
    }

    .footer-bottom a:hover {
        text-decoration: underline;
    }

    .footer-info {
        margin-top: 30px;
        font-size: 14px;
        color: #959595;
        line-height: 1.7;
        letter-spacing: 1px;
        font-family: var(--body-font);
        font-weight: 300;
    }

    .footer-info h5 {
        margin: 40px 0 30px;
        font-size: 14px;
        color: #959595;
        line-height: 1.7;
        letter-spacing: 1px;
        font-family: var(--body-font);
        font-weight: 300;
    }

    .footer-info p>strong {
        font-weight: 400;
    }

/* end */

/* bussiness page */
    .how-it-works {
        padding: 60px 20px;
        font-family: Arial, sans-serif;
    }

    .hiw {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        align-items: center;
        max-width: 1100px;
        margin: auto;
        gap: 40px;
    }

    .how-left {
        flex: 1;
        position: relative;
        overflow: hidden;
    }

    .how-img {
        width: 95%;
        /* border-radius: 12px; */
        margin-right: 0;
        margin-left: 5%;
    }

    .business .how-img {
        margin-left: 0;
        margin-right: auto;
    }

    .how-tags {
        position: absolute;
        bottom: 20px;
        left: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .how-tags span {
        background: white;
        padding: 6px 12px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        font-size: 14px;
    }

    .how-right {
        flex: 1;
    }

    .how-right h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .how-right p {
        margin-bottom: 30px;
        color: #555;
    }

    .how-it-works .steps {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .how-it-works .step {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 18px;
        transition: 0.3s;
        border-radius: 10px;
        border: 1px solid #A3A3A3;
        padding: 10px;
        overflow: hidden;
        position: relative;
        z-index: 1;
        cursor: pointer;
    }

    /*.how-it-works .number {
        display: inline-block;
        min-width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid #999;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: #999;
        transition: all 0.4s ease;
    }*/
    .how-it-works .number {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 500;
        font-family: var(--heading-font);
        font-size: 20px;
        color: #333;
        position: relative;
        background: conic-gradient(#502478 var(--progress-r, 0%), #DBC8EC var(--progress-r, 0%));
    }

    .how-it-works .number::before {
        content: "";
        position: absolute;
        inset: 3px;
        /* thickness of ring */
        border-radius: 50%;
        background: #f8f6fa;
        /* center background */
        z-index: -1;
    }

    .how-it-works .number {
        z-index: 1;
    }

    .how-it-works .text {
        flex: 1;
        overflow: hidden;
    }

    .how-it-works .text h3 {
        font-size: 24px;
        margin: 0;
        font-family: var(--body-font);
        font-weight: 500;
        margin-top: 16px;
        margin-bottom: 12px;
    }

    .how-it-works .active .text h3 {
        color: #502478;
    }

    .how-it-works .text p {
        font-size: 18px;
        color: #4E4E4E;
        font-family: var(--body-font);
        font-weight: 400;
        margin-bottom: 6px;
        position: absolute;
        visibility: hidden;
        opacity: 0;
        transform: rotateX(90deg);
        transition: 0.5s;
        height: 0%;
    }

    .how-it-works .step.active .text p {
        position: relative;
        visibility: visible;
        opacity: 1;
        transform: rotateX(0deg);
        height: 100%;
    }

    .how-it-works .heading {
        text-align: center;
        padding-bottom: 40px;
        padding-top: 50px;
    }

    .how-it-works .heading h2 {
        font-family: var(--heading-font);
        font-weight: 700;
        font-size: 38px;
        text-align: center;
        color: #323232;
    }

    .how-it-works .heading p {
        color: #323232;
        font-size: 24px;
        font-family: var(--body-font);
        font-weight: 500;
    }

    .great-teams {
        border-radius: 20px;
        border: 1px solid #B5B5B5;
        text-align: center;
        padding: 40px;
    }

    .great-teams .cta {
        margin-bottom: 10px;
    }

    .great-teams-title h2 {
        font-size: 38px;
        letter-spacing: 1px;
        font-weight: 600;
        font-family: var(--heading-font);
        line-height: 1.6;
        margin-bottom: 20px;
        color: #323232;
    }

    .great-teams-title h2 strong {
        font-weight: inherit;
    }

    .great-teams-title p {
        font-size: 18px;
        font-weight: 500;
        font-family: var(--body-font);
        margin-bottom: 30px;
        color: #4e4e4e;
    }

    .great-teams-title span {
        color: #502478;
    }

/* why choose */
.why-choose {
    padding: 60px 20px;
    background: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.whc {
    max-width: 1180px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.why-ch {
    background-color: #F4F4F4;
    padding-bottom: 90px;
    padding-top: 80px;
    border-radius: 30px;
}

.whcc {
    /* max-width: 1100px; */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 115px;
}

.why-left {
    flex: 1;
    color: #323232;
    font-size: 16px;
    font-family: 'Inter';
}

.why-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.why-left h2 span {
    color: #502478;
    /* root brand color */
}

.why-left h4 {
    color: #502478;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.about .why-left h4 {
    font-size: 24px;
    font-family: var(--body-font);
}

.about .why-left p {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 22px;
}

.why-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-left ul li {
    font-size: 20px;
    margin-bottom: 12px;
    color: #323232;
    position: relative;
    font-family: var(--body-font);
}

.why-left ul li .icon {
    height: 24px;
    width: 20px;
    padding-right: 7px;
}

.why-left ul li svg {
    margin-right: 5px;
    width: 18px;
}

.why-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.img-box {
    position: relative;
    display: inline-block;
}

.img-box img {
    width: 100%;
    max-width: 430px;
    border-radius: 12px;
    z-index: 2;
    position: relative;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.why-choose.about .img-box img {
    aspect-ratio: 3 / 2;
}

.img-box .circle {
    position: absolute;
    top: -30px;
    right: 42px;
    width: 240px;
    aspect-ratio: 1;
    border: 2px solid #90908F;
    border-radius: 50%;
    z-index: 1;
}

.alt-position .img-box .circle {
    right: unset;
    left: -72px;
}

.img-box .small-circle {
    position: absolute;
    top: -5px;
    left: -30px;
    width: 60px;
    aspect-ratio: 1;
    border: 2px solid #AEAEAE;
    border-radius: 50%;
    z-index: 1;
}

.alt-position .img-box .small-circle {
    left: 215px;
}

/* fetured */
.features {
    padding: 60px 20px;
    background: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.feat {
    margin: auto;
    display: flex;
    gap: 100px;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.feature-box {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.feature-box::after {
    content: "";
    position: absolute;
    right: -50px;
    top: 10px;
    height: calc(100% - 20px);
    width: 1px;
    background: #E4E4E4;
}

.feature-box:last-child::after {
    display: none;
}

.feature-box img {
    height: 65px;
    object-fit: contain;
    margin-bottom: 12px;
}

.feature-box .icon img {
    width: 50px;
    height: auto;
}

.feature-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #222;
    font-family: var(--heading-font);
    margin-top: 20px;
}

.feature-box p {
    font-size: 24px;
    color: #333333;
    margin-top: 26px;
    font-family: var(--body-font);
    font-weight: 400;
}

.feat .feature-box p {
    margin-top: 32px;
}

/* why matters */
.why-matters {
    padding: 60px 20px;
    background: #fff;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

.why-matters h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #323232;
    font-family: var(--heading-font);
}

.why-matters .subtitle {
    font-size: 24px;
    color: #323232;
    margin-bottom: 50px;
    line-height: 1.2;
    font-family: var(--body-font);
}

.stats {
    display: flex;
    /* grid-template-columns: repeat(3, 1fr); */
    /* gap: 25px; */
    margin-bottom: 30px;
    flex-direction: row;
    /* align-content: center; */
    justify-content: space-evenly;
}

.stat-box {
    border: 1px solid #B5B5B5;
    border-radius: 12px;
    padding: 35px 30px 20px;
    max-width: 100%;
    width: 380px;
}

.stat-box h3 {
    font-size: 38px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.stat-box p {
    font-size: 24px;
    color: #333333;
    line-height: 1.5;
}

.why-matters .cta {
    margin: 40px 0 15px 0;
}

.cta .btn {
    box-shadow: 0px 4px 4px 0px #00000040;
}


/* end */
/* security */
.security-section {
    position: relative;
    background: url(/wp-content/uploads/2025/09/security.jpg) no-repeat center center / cover;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    height: 600px;
    display: flex;
    align-items: center;
}

.security-section .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(255 255 255), rgb(255 255 255 / 84%), rgb(255 255 255 / 0%));
    z-index: 1;
}

.security-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    justify-content: flex-end;
}

.security-content {
    color: #323232;
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding-left: 650px;
    padding-top: 235px;
    width: 100%;
}

.security-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.security-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-content ul li {
    margin-bottom: 12px;
    position: relative;
    font-size: 22px;
    font-family: var(--body-font);
    padding-left: 30px;
}

.security-content ul li img {
    width: 20px;
    top: 5px;
    position: absolute;
    left: 0;
}

/* collage */
.career-section {
    padding: 50px 20px;
    text-align: center;
    /* center align text */
    display: flex;
    justify-content: center;
}

.career-content {
    max-width: 1000px;
    /* keeps text nicely readable */
}

.career-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: var(--heading-font);
}

.career-content h2 span {
    color: #502478;
}

.career-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    font-family: var(--body-font);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.college .career-content p{
	max-width: 970px;
}
.hiiw {
    background-color: #F4F4F4;
    border-radius: 30px;
    padding-bottom: 20px;
}

.metrics-section {
    padding: 40px 20px;
}

.metrics-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    text-align: center;
    align-items: center;
}
.metrics-wrapper .metric-divider:last-child{
	display: none;
}
.metric-item {
    min-width: 200px;
}

.metric-item h3 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.metric-item p {
    font-size: 30px;
    color: #333;
    margin: 0;
    font-family: var(--heading-font);
    line-height: 1.4;
}

.metric-divider {
    width: 1px;
    height: 150px;
    background-color: #ddd;
}

.dcap-section {
    padding: 60px 0px;
    text-align: center;
}

.dcap-section .dcap {
    background-color: #F4F4F4;
    padding: 14px;
    border-radius: 30px;
    padding-bottom: 50px;
}

.dcap-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 70px;
    margin-top: 50px;
    font-family: var(--heading-font);
}

.dcap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.dcap-card {
    border: 1px solid #B5B5B5;
    border-radius: 17px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.dcap-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #6a0dad;
    /* Purple accent */
}

.dcap-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--heading-font);
    color: #323232;
}

.dcap-card p {
    font-size: 18px;
    color: #4E4E4E;
    font-weight: 500;
    margin: 0;
    font-family: var(--body-font);
}

.join-now-sec {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.join-now-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 5%;
    background: #F4F4F4;
    border-radius: 30px;
    margin: 40px auto;
}

.join-now-left {
    flex: 1;
    min-width: 280px;
}

.join-now-left h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: var(--heading-font);
    line-height: 1.8;
}

.join-now-left h2 span {
    color: #502478;
}

.join-now-left p {
    font-size: 22px;
    margin-bottom: 45px;
    color: #323232;
    font-weight: 500;
    font-family: var(--body-font);
}

.join-now-btn {
    box-shadow: 0px 4px 4px 0px #00000040;
    /*    display: inline-block;
    background: #502478;
    color: #fff;
    padding: 4px 60px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;*/
}

.join-now-btn:hover {
    /*background: #570b9b;*/
}

.join-now-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 280px;
}

.join-now-imgbox {
    position: relative;
}

.join-now-img {
    max-width: 320px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

/* Floating tags */
.join-now-tag {
    position: absolute;
    background: #fff;
    padding: 6px 18px;
    border-radius: 7px;
    font-size: 14px;
    /* font-weight: 500; */
    color: #67636A;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
    top: 163px;
    left: 210px;
}

/* Positioning tags */
.tag-a {
    top: 15%;
    left: 10px;
}

.tag-b {
    top: 34%;
    right: -50px;
}

.tag-c {
    left: -49px;
    top: 126px;

}

.tag-d {
    width: 36%;
}

/* contact page */
/* Overlay Background */
.form-overlay-sec {
    position: relative;
    align-items: flex-start;
    z-index: 9;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* Box */
.form-overlay-box {
    background: #fff;
    padding: 50px 5%;
    border-radius: 14px;
    width: 90%;
    max-width: 980px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.3s ease;
    margin-top: -320px;
}

/* Close button */
.form-overlay-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    display: none;
}

/* Tabs */
.form-overlay-tabs {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 25px;
    border: 1px solid rgb(220 220 220 / 50%);
    border-radius: 12px;
}

.form-overlay-tab {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--heading-font);
    padding: 10px 20px;
    cursor: pointer;
    color: #4F4F4F;
    transition: all 0.3s ease;
	min-width: 174px;
}

.form-overlay-tab.active {
    color: #502478;
    border-bottom: 2px solid #502478;
}

.form-overlay-divider {
    width: 1px;
    height: 20px;
    background: #ddd;
    margin: 0 10px;
}
textarea {
    resize: vertical;
    padding: 12px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s;
    width: 100%;
    height: 100px;
}
.form-overlay-btn {
    background: #502478 !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 44px !important;
    border-radius: 6px !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
    /* width: 200px; */
    box-shadow: 0px 4px 4px 0px #00000040 !important;
    margin-top: 20px !important;
    font-family: var(--heading-font) !important;
     /*margin-left: 63px; */
}
/* Form styling */
.form-overlay-form {
    display: none;
    flex-direction: column;
    gap: 18px;
}

.form-overlay-form.active {
    display: flex;
}

/* Row */
.form-overlay-row {
    display: flex;
    gap: 25px;
}

.form-overlay-row>* {
    max-width: calc(50% - 8px);
	width: 50%;
}

.form-overlay-row input,
.form-overlay-row select {
    flex: 1;
    width: 403px;
    padding: 12px 11px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-overlay-row .tel_no {
    width: 100%;
    position: relative;
    z-index: 1;
}

.form-overlay-row .tel_no::after {
    content: '+91 |';
    position: absolute;
    top: 1px;
    left: 1px;
    padding: 11px 7px;
    color: var(--primary-color);
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    background: #fff;
    z-index: 1;
    border-radius: 6px;
}

.form-overlay-row .tel_no input {
    padding-left: 50px;
}

/* Inputs */
.form-overlay-form input,
.form-overlay-form select,
.form-overlay-form textarea {

    padding: 12px 11px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-overlay-form input:focus,
.form-overlay-form select:focus,
.form-overlay-form textarea:focus {
    border-color: #5e2bb8;
    outline: none;
}

/* Button */
.form-overlay-btn {
    background: #502478;
    color: #fff;
    border: none;
    padding: 10px 44px;
    border-radius: 6px;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    /* width: 200px; */
    box-shadow: 0px 4px 4px 0px #00000040;
    margin-top: 20px;
    font-family: var(--heading-font);
}

.form-overlay-btn:hover {}

.sub-btn {
    text-align: center;
}

/* about page */
.why-c {
    padding-bottom: 20px;
    padding-top: 40px;
    border-radius: 15px;
}

.dcap {
    background-color: #f8f6fa;
    padding: 14px;
    border-radius: 12px;
}

.team-section {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
}

.team-title {
    font-size: 38px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 40px;
    font-family: var(--heading-font);
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.team-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    width: 300px;
    text-align: left;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

/* Gradient overlay */
.team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(240, 240, 240, 0) 24.28%, rgba(64, 47, 74, 0.2) 54.93%, rgba(21, 0, 34, 0.6) 74.76%);
    z-index: 1;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 2 / 3;
}

.team-card .team-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    width: calc(100% - 30px);
}

.team-card h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--heading-font);
}

.team-card p {
    margin: 5px 0 0;
    font-size: 18px;
    opacity: 0.9;
    font-family: var(--heading-font);
}

.team-info p {
    margin: 4px 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.team-linkedin {
    position: absolute;
    bottom: 0px;
    right: 0;
    border-radius: 50%;
    padding: 6px;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s ease;
}

.team-linkedin:hover {
    background: #0077b5;
}

.team-linkedin img {
    width: 18px;
    height: 18px;
}

.contact-section {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
}

.contact-title {
    font-size: 38px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: #323232;
    margin-bottom: 40px;
}

/* Container */
.contact-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* Card */
.contact-card {
    background: #fff;
    border: 1px solid #B5B5B5;
    border-radius: 16px;
    padding: 40px 20px;
    width: 320px;
    max-width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}



/* Icon */
.contact-icon img {
    width: 70px;
    height: 40px;
    margin-bottom: 25px;
    object-fit: contain;
}

/* Text */
.contact-card h3 {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 20px;
}

.contact-card p {
    font-size: 18px;
    font-family: var(--body-font);
    font-weight: 500;
    color: #4E4E4E;
    margin-bottom: 40px;
}

/* Link */
.contact-link {
    font-size: 18px;
    font-weight: 500;
    color: #502478;
    font-family: var(--body-font);
    text-decoration: none;
    transition: color 0.3s ease;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--primary-color);
}

.contact-link:hover {
    color: #3b1970;
}

/* blogs page */

/* Left text */
.single-post-content{
    padding-right: 12%;
}
.blogs-title {
    font-size: 65px;
    font-weight: 700;
    color: #323232;
    font-family: var(--heading-font);
}

.blogs-subtitle {
    font-size: 30px;
    font-weight: 400;
    font-family: var(--heading-font);
    color: #323232;
}

/* Blog card */
.blog-slider {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
}

.blog-cards {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /*box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); */
}

.blog-cards img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-overlay {
	position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.blog-overlay h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    font-family: var(--heading-font);
    text-align: center;
}

/* Overlay gradient */
.blog-cards::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgb(240 240 240 / 0%) 40%, rgb(0 0 0 / 44%) 70%, rgb(0 0 0) 100%);
	background: linear-gradient(180deg, rgba(119, 113, 113, 0.36) 21.15%, rgba(0, 0, 0, 0.6) 54.33%);
    pointer-events: none;
}

/* Swiper buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ccc;
    color: #6c63ff;
    font-size: 20px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
}

.blog-slider-prev {
    left: 0px;
}

.blog-slider-next {
    right: 0px;
}

/* Pagination dots */
.blog-slider-pagination {
    text-align: center;
    margin-top: 15px;
	bottom: 0 !important;
}

.blog-slider-pagination .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
	width: 35px;
    height: 5px;
    border-radius: 5px;
}

.blog-slider-pagination .swiper-pagination-bullet-active {
    background: #502478;
}
.blog-slider .slider-btn{
	border: 1px solid #502478;
    color: #502478;
    font-size: 20px;
    width: 61px;
    height: 61px;
}
.explore-container {
    border: 1px solid #e0dfe3;
    border-radius: 12px;
    padding: 20px;
    background-color: white;
}
.explore-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: var(--heading-font);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 16px;
    border: 1px solid #967CAE;
    border-radius: 999px;
    font-size: 18px;
    color: #381B53;
	font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--heading-font);
    font-weight: 500;
}

.tag:hover {
    background-color: var(--primary-color);
	color: #fff;
}

.tag.active {
    background-color: #735093;
    color: white;
    border-color: #00000000;
}

.blog-card {
    border: 1px solid #CCCCCC;
    border-radius: 16px;
    max-width: 400px;
    overflow: hidden;
    background-color: #fff;
}

.blog-card img {
    width: 100%;
    aspect-ratio: 4/3;
    display: block;
    object-fit: cover;
}

.blog-card-content {
    padding: 16px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 12px 0 16px;
    line-height: 1.4;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    padding-bottom: 8px;
}

.blog-card-meta span {
    margin-right: 8px;
    font-size: 16px;
    font-family: var(--body-font);
}

.divider {
    width: 1px;
    height: 14px;
    background-color: #ccc;
    margin: 0 8px;
}

.custom-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 38px;
    margin-top: 60px;
}

.custom-grid a {
    text-decoration: none;
}

.blginfo a {
    text-decoration: none;
    color: #000;
}
.page_pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.page_pagination span{
    width: 46px;
    height: 46px;
    display: flex;
    font-size: 18px;
    font-family: var(--heading-font);
    font-weight: 500;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.page_pagination span.current{
    color: #F4F4F2;
    border: 1px solid #735093;
    background: #735093;
    border-radius: 50%;
}
.page_pagination a{
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #727272;
    background: #fff;
    border: 1px solid #9C9C9C;
    font-size: 18px;
    font-family: var(--heading-font);
    font-weight: 500;
    border-radius: 50%;
    text-decoration: none;
    overflow: hidden;
}
.page_pagination a:hover{
    background: #F4F4F2;
}
.page_pagination .next, .page_pagination .prev{
    color: #502478;
    border: 1px solid #502478;
}
.sidebar{
    position: sticky;
    top: 160px;
}
.related_blogs{

}
.related_blogs .sidebrhd{
    font-weight: 600;
    font-size: 30px;
    font-family: var(--heading-font);
    margin-top: 10px;
    margin-bottom: 25px;
    color: #231F20;
}

.related_blogs .related-item img{    
    border-radius: 10px;
    /* height: 93px; */
    width: 140px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.related_blogs .related-item {
    border-bottom: 1px solid rgb(35 31 32 / 30%);
    padding-bottom: 1.5rem;
}
.related_blogs .related-item:last-child{
    border-bottom: none;
}

.related-item .blog-title {
    font-size: 14px;
    font-family: var(--body-font);
    font-weight: 600;
    line-height: 1.4;
    color: #323232;
}
.related-item .date{
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 400;
    color: #323232;
}

.promo-box {
    border: 1px solid #CCCCCC;
    border-radius: 30px;
    padding: 38px;
    margin-top: 0px;
}

.promo-box .promo-title {
    color: #381B53;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.8;
    font-family: var(--heading-font);
}

.promo-box .promo-text {
    font-size: 16px;
    color: #323232;
    margin: 20px 0 30px;
    font-family: var(--body-font);
}

.post-title {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--body-font);
    margin-bottom: 20px;
    color: #231F20;
    line-height: 1.6;
}

.post-meta {
    margin-bottom: 30px;
    margin-top: 30px;
    font-size: 16px;
    align-items: center;
    font-family: var(--body-font);
    font-weight: 400;
    color: #323232;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px;
}

.promo-box .app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.post_img img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 30px;
}

.custom-breadcrumb a {
    text-decoration: none;
    color: #6E6E6E;
}

.social-icons {
    display: flex;
    gap: 10px;
}
.post-meta > .share-opt{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.s-icons {
    width: 25px;
    height: 25px;
    background-color: #7F7F80;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-bottom: 2px;
    transition: 0.3s;
}
.s-icons:hover{
    transform: scale(1.2);
    background: #323232;
}
.s-icons svg.icon{
    height: 15px;
    width: 15px;
}
.post-meta > .separator{
    color: #CCCCCC;
}
.single-post-content .postcontent {
    color: #333333;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
}

.custom-breadcrumb {
    margin-bottom: 20px;
    font-size: 13px;
    font-family: Inter;
    font-weight: 400;
    color: #502478;
}

.s-icons a {
    color: white;
}

.breadcrumb-section {
    margin-top: 12px;
}
.breadcrumb-section.blog_breadcrumb{
    margin-top: 25px;
}

.share-section {
    display: flex;
    gap: 19px;
    align-items: center;
    margin-bottom: 30px;
}
.post-footer .s-icons {
    width: 37px;
    height: 37px;
}
.post-footer .s-icons {
    width: 37px;
    height: 37px;
}
.post-footer .s-icons svg.icon {
    height: 22px;
    width: 20px;
}
.post-footer .share-label{
    font-size: 24px;
    color: #818181;
    font-weight: 400;
    font-family: var(--body-font)
}
.disclaimer {
    border-top: 1px solid rgb(35 31 32 / 15%);
    border-bottom: 1px solid rgb(35 31 32 / 15%);
    padding: 20px 0;
    margin: 20px 0;
}

.disclaimer p {
    font-size: 16px;
    line-height: 1.6;
    color: #B3B3B3;
    margin: 0;
    font-weight: 400;
    font-family: var(--body-font);
}

.promo-box .app-buttons img {
    height: 50px;
    width: auto;
}

.custom-pagination {
    margin-top: 120px;
    text-align: center;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

.custom-pagination-btn {
    background: none;
    border: 1px solid #d4cde2;
    color: #5e3db3;
    padding: 6px 14px;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.custom-pagination-btn:hover {
    background-color: #f2effa;
}

.custom-pagination-btn.active {
    background-color: #5e3db3;
    color: white;
    border: none;
}

.custom-blog-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 40px;
}

/* Left Column */
.custom-blog-main {
    flex: 3;
}

.custom-blog-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.custom-blog-meta {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    gap: 16px;
    margin-bottom: 16px;
}

.custom-blog-meta span::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 14px;
    background: #ccc;
    margin-left: 16px;
}

.custom-blog-meta span:last-child::after {
    content: none;
}

.custom-blog-share {
    display: flex;
    gap: 8px;
    align-items: center;
}

.custom-blog-share i {
    font-size: 16px;
    color: #555;
    cursor: pointer;
}

.custom-blog-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.custom-blog-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Right Sidebar */
.custom-blog-sidebar {
    flex: 1;
    position: sticky;
    top: 40px;
    height: fit-content;
}

.custom-related-blogs h3 {
    margin-bottom: 16px;
}

.custom-related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.custom-related-item img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.custom-related-info {
    font-size: 13px;
}

.custom-related-info span {
    display: block;
    color: #666;
    font-size: 12px;
}

/* Promo Section */
.custom-promo-card {
    margin-top: 30px;
    border: 1px solid #e2e2e2;
    border-radius: 16px;
    padding: 20px;
    width: 318px;
}

.custom-promo-card h4 {
    color: #5e3db3;
    margin: 0 0 10px;
    font-size: 20px;
}

.custom-promo-card p {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
}

.custom-promo-buttons img {
    width: 120px;
    margin-right: 10px;
}

.custom-share-section {
    display: flex;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 16px;
    gap: 10px;
}

.custom-share-label {
    font-size: 16px;
    color: #333;
}

.custom-share-icons i {
    font-size: 18px;
    color: #666;
    background-color: #eee;
    border-radius: 50%;
    padding: 8px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.custom-share-icons i:hover {
    background-color: #d0d0d0;
}


.custom-disclaimer {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}



/* mobile view */
@media (max-width: 900px) {
    .custom-blog-wrapper {
        flex-direction: column;
    }

    .custom-blog-sidebar {
        position: static;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

@media (min-width: 769px) {
    .m_on {
        display: none;
    }

    .menu-bar {
        display: none;
    }

    .step_m_img {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .m_off {
        display: none;
    }

    h1 {
        font-size: 32px;
    }

    .store-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .dnld_btn,
    .theme-btn {
        font-size: 16px;
        width: 250px;
        border-radius: 12px;
        padding: 10px 15px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next::before,
    .swiper-button-prev::before {
        width: 15px !important;
        left: 10px !important;
    }

    .swiper-button-prev::after {
        padding-right: 10px !important;
    }

    .swiper-button-next::after {
        padding-left: 10px !important;
    }

    body.freeze {
        overflow: hidden;
        /* stop page scroll when menu is open */
    }

    /*Header*/
    .logo .logotext {
        display: none;
    }

    .main-header .top-header,
    .main-header .bottom-header ul.nav-menu-items {
        display: none;
    }

    .main-header .bottom-header .menu-bar {
        font-size: 30px;
        color: #323232;
    }

    .main-header .bottom-header {
        padding: 25px 20px 15px 20px;
    }

    .mobile-menu {
        /*display: none;*/
        position: fixed;
        width: 100vw;
        height: 100vh;
        background: #fff;
        z-index: 999;
        left: 0;
        top: 0;
        padding: 20px 15px;
        transition: 0.3s;
        visibility: hidden;
        opacity: 0;
        transform: translateX(-150%) rotateY(90deg);
		overflow: auto;
    }

    .mobile-menu.active {
        visibility: visible;
        opacity: 1;
        transform: translateX(0%) rotateY(0deg);
    }

    .mobile-menu .menu-info {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 0 0 15px;
        border-bottom: 1px solid #DDDDDD;
        margin-bottom: 15px;
    }

    .mobile-menu .menu-info h3 {
        font-size: 20px;
        color: var(--primary-color);
        font-weight: 700;
        font-family: var(--heading-font);
        margin: 0;
    }

    .mobile-menu .menu-info .close-menu {
        padding: 5px;
        cursor: pointer;
    }

    .mobile-menu .close-menu svg {
        color: #323232;
        width: 14px;
        height: 14px;
    }

    .mobile-menu>ul {
        padding: 15px;
        border-radius: 12px;
        color: #fff;
        background: #381B53;
        /*max-height: calc(100vh - 250px);
        overflow: auto; */
    }

    .mobile-menu>ul li {
        list-style: none;
        border-bottom: 1px solid rgb(255 255 255 / 50%);
        padding: 5px 0;
    }

    .mobile-menu>ul li:last-child {
        border-bottom: none;
    }

    .mobile-menu>ul li.has-sub-menu {}

    .mobile-menu>ul li a {
        font-family: var(--body-font);
        color: #EDE8F5;
        text-decoration: none;
        padding: 12px 5px 12px 5px;
        display: block;
        font-size: 16px;
        position: relative;
    }

    .mobile-menu>ul li a::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20px;
        width: 8px;
        height: 8px;
        border-right: 1px solid #EDE8F5;
        border-bottom: 1px solid #EDE8F5;
        transform: rotate(-45deg);
    }

    .mobile-menu>ul li.has-sub-menu>a::after {
        right: 2px;
        top: 16px;
        width: 10px;
        height: 10px;
        transform: rotate(45deg);
        transition: 0.3s;
    }

    .mobile-menu>ul li.has-sub-menu.active>a::after {
        transform: rotate(-135deg);
        top: 20px;
    }

    .mobile-menu>ul li a::before {
        content: "";
        position: absolute;
        right: 0px;
        top: 24px;
        width: 28px;
        height: 1px;
        background: #EDE8F5;
    }

    .mobile-menu>ul li.has-sub-menu>a::before {
        display: none;
    }

    .mobile-menu>ul li>.sub-menu {
        padding: 0;
        margin: 0;
        display: none;
    }

    .mobile-menu .menu-bottom {
        background: #fff;
        width: 100%;
        /*position: absolute;
        bottom: 0px;
        left: 0; */
        z-index: 9;
        padding: 0 20px;
    }

    .mobile-menu .menu-bottom h4 {
        margin-bottom: 15px;
        margin-top: 30px;
        font-family: var(--body-font);
        font-size: 16px;
        font-weight: 500;
    }

    .mobile-menu .menu-bottom .store-buttons {
        flex-direction: row;
        margin-bottom: 40px;
    }

    .mobile-menu .menu-bottom .store-buttons a {
        background: #000;
        border-radius: 7px;
    }

    .mobile-menu .menu-bottom .store-buttons img {}

    /*end*/

    /*Hero section*/
    .hero-sec {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-sec .hero {
        height: 450px;
        border-radius: 10px;
    }

    .hero .tag {
        font-size: 12px;
        margin-top: 20px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero p.subtitle {
        font-size: 18px;
    }

    .hero .store-buttons {
        flex-direction: row;
        align-items: stretch;
        gap: 15px;
        margin-bottom: 0px;
    }

    .hero .store-buttons a {
        display: block;
        width: calc(50% - 15px);
        text-align: center;
        max-width: 250px;
    }

    .hero .store-buttons a img {
        object-fit: contain;
        background: #ffffff;
        border-radius: 7px;
        height: 46px;
    }

    .scroll-down {
        display: none;
    }

    /*end*/

    /*Trusted by*/
    .logo-heading {
        font-size: 18px;
    }

    .logoSwiper img,
    .logoSwiper2 img {
        height: 45px;
    }
	.backedby .bakced-logos {
		pointer-events: all;
	}
    /*end*/

    /*You need to know*/
    .eynk {
        padding-top: 0 !important;
    }

    .sliderinfo h2 {
        font-size: 24px;
    }

    .tab-link {
        font-size: 16px;
        /*min-width: 125px;*/
        width: auto;
        white-space: nowrap;
        left: var(--shift-x);
    }

    .tab-link.active::after,
    .tab-link.active::before {
        max-width: 100%;
        left: 0 !important;
    }

    .tabs-wrapper {
        flex-wrap: nowrap;
        flex-direction: row;
        position: relative;
        z-index: 1;
    }

    .tabs-wrapper::after,
    .tabs-wrapper::before {
        content: "";
        position: absolute;
        top: -20%;
        height: 140%;
        width: 70px;
        background: #f7f7f5;
        z-index: 2;
    }

    .tabs-wrapper::before {
        left: -72px;
    }

    .tabs-wrapper::after {
        right: -72px;
    }

    .bglight-sec {
        padding: 70px 15px 40px;
        border-radius: 16px;
    }

    .welth_cont {
        padding-bottom: 0px;
    }

    .welth_cont h3 {
        font-size: 24px;
    }

    .welth_cont p {
        font-size: 16px;
    }

    .feature-strip {
        flex-wrap: wrap;
        flex-direction: row;
        margin: 0px auto 0 auto;
    }

    .feature-strip .feature {
        width: 50%;
        margin: 15px 0;
    }

    .feature-strip .feature>div {
        font-size: 12px;
    }

    .feature-strip::after {
        bottom: 90px;
        height: 150px;
        width: calc(100% + 0px);
        display: none;
    }

    .feature-strip::before {
        bottom: 100px;
        height: 140px;
        width: calc(110% + 4px);
    }

    .skw-img {
        position: relative;
        left: 50%;
        transform: translate(-50%, 0%);
        margin-bottom: 50px;
    }

    .skw-img img {
        max-width: 220px;
    }

    .welth_cont::after {
        right: -25%;
        top: -5%;
    }

    .wealthSwiper .swiper-button-prev {
        left: 0%;
        top: 34%;
    }

    .wealthSwiper .swiper-button-next {
        right: 0%;
        top: 34%;
    }

    /*end*/

    /*info section*/
    .info-section {
        padding: 15px 0 10px;
    }

    .info-icon img {
        max-height: 40px;
    }

    .info-icon h4 {
        font-size: 18px;
    }

    /*end*/

    /*Testimoni*/
    .testimonial {
        margin-top: 50px;
        margin-bottom: 15px !important;
    }

    .testimonial-slider {
        border-radius: 12px;
    }

    .testimonial-slider .testmoni-ttl {
        font-size: 24px;
        margin-top: 40px;
        width: calc(100% - 70px);
    }

    .content-box {
        width: calc(100% - 100px);
        margin-bottom: 35px;
    }

    .content-box .author img {
        width: 45px;
        height: 45px;
    }

    .content-box p {
        font-size: 16px;
    }

    .content-box .details h4 {
        font-size: 14px;
        font-weight: 500;
    }

    /*end*/

    /*Graph slider*/
    .bglight-graph {
        border-radius: 12px;
		padding: 50px 20px 20px;
    }

    .bglight-graph h2,
    .bglight-graph h3 strong {
        font-size: 24px;
    }

    .bglight-graph h2 strong,
    .bglight-graph h3 strong {
        font-weight: 700;
    }

    .bglight-graph h3 {
        font-size: 18px;
    }

    .bglight-graph .cont-sec {
        padding: 0px 0px 30px 0px;
    }

    .graphsec .tabs {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 5px;
        margin-bottom: 40px;
    }

    .graphsec .tab-btn {
        font-size: 16px;
        width: 100%;
    }

    .graphsec .tabs .tab-btn:nth-child(1),
    .graphsec .tabs .tab-btn:nth-child(2) {
        width: calc(50% - 5px);
    }

    /*end*/

    /*Secure*/
    .secure-section {
        padding: 0px 15px;
    }

    .secure-icon img {
        max-width: 45px;
        object-fit: contain;
    }

    .secure-section h2 {
        font-size: 24px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .secure-section p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .secure-features {
        justify-content: flex-start;
        gap: 25px;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .feature {
        font-size: 14px;
        width: 220px;
    }

    .feature span.icon {
        width: 18px;
        height: 18px;
    }

    /*end*/

    /*backed by*/
    .backedby {
        margin-top: 0px !important;
        margin-bottom: 0;
    }

    .backedby .logo-heading {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 40px !important;
    }

    .sldr-ttl h4 {
        font-size: 14px;
    }

    /*end*/

    /*CTA*/
    .app-section {
        border-radius: 12px;
        padding: 20px 25px;
    }

    .app-section>.row {
        width: unset;
    }

    .app-text h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .app-text p {
        font-size: 16px;
    }

    .app-text .store-buttons {
        flex-direction: row;
        align-items: stretch;
        gap: 15px;
        margin-bottom: 0px;
        margin-top: 35px;
    }

    .app-text .store-buttons a {
        display: block;
        width: calc(50% - 15px);
        text-align: center;
        max-width: 250px;
    }

    .app-text .store-buttons a img {
        object-fit: contain;
        background: #ffffff;
        border-radius: 7px;
    }

    .app-text {
        margin-bottom: 60px;
    }

    .app-image {
        height: 375px;
    }

    /*end*/

    /*FAQ*/
    .faq {
        margin-top: 0 !important;
    }

    .faq .main_hd {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .faq .accordion-header .accordion-button {
        font-size: 16px;
    }

    .faq .accordion-body {
        font-size: 14px;
    }

    /*end*/

    /*footer*/
    .foot {
        margin: 0px auto 60px;
        padding: 30px 20px;
        border-radius: 12px;
    }

    .footer-logo {
        width: 25%;
    }

    .footer-bottom a {
        margin: 0;
    }

    .footer-social {
        width: 75%;
        justify-content: flex-end;
    }

    .footer-apps {
        width: 100%;
        margin: 35px 0 0px;
        justify-content: space-between;
    }

    .footer-apps a {
        width: calc(50% - 15px);
        background: #000;
        border-radius: 7px;
        text-align: center;
        max-width: 200px;
    }

    .footer-apps a img {
        object-fit: contain;
    }

    .footer-social a {
        width: 32px;
        height: 32px;
    }

    .footer-social a svg {
        width: 16px;
        height: 16px;
    }

    .footer-links h4 {
        font-size: 20px;
    }

    .footer-links ul li a {
        font-size: 14px;
        letter-spacing: 0.2px;
    }

    .footer-links {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .footer-links>div {
        width: calc(50% - 15px);
    }

    .tagx {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 15px;
    }

    .tagx .icon {
        height: 16px;
        width: 16px;
    }

    .tagx:last-child {
        margin-bottom: 0;
    }

    /*end*/

    /*Business page banner*/
    .smallheading.hero {
        border-radius: 10px;
        height: auto;
        width: calc(100% - 30px);
        margin-bottom: 20px;
    }

    .hero.smallheading h1 {
        font-size: 44px;
    }

    .hero.smallheading.about h1 {
        font-size: 36px;
    }

    .smallheading.hero .hero-content {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .smallheading.hero .hero-content p {
        font-size: 18px;
    }

    .smallheading.hero .store-buttons .ctax a {
        width: 250px;
    }

    .smallheading.hero .store-buttons {
        margin-bottom: 15px;
    }

    /*end*/

    /*how it works*/
    .how-it-works {
        padding-top: 0;
    }

    .how-it-works .heading {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .how-it-works .heading h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .how-it-works .heading p {
        font-size: 16px;
    }

    .hiw {
        flex-direction: column;
        position: relative;
        z-index: 1;
    }

    .hiw .how-left {
        width: 100%;
        /*display: none;*/
        position: absolute;
        z-index: -10;
        top: 5px;
        left: 0;
        visibility: hidden;
    }

    .how-it-works .number::before {
        inset: 2px;
    }

    .how-it-works .number {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .how-it-works .text h3 {
        font-size: 20px;
        margin-top: 5px;
    }

    .how-it-works .step .text p {
        font-size: 14px;
    }

    .business .how-img {
        width: 100%;
    }

    .hiw .step_m_img {
        visibility: hidden;
        opacity: 0;
        transform: rotateX(90deg);
        transition: 0.5s;
        height: 0%;
        display: none;
        margin: 20px 15px 15px 0px;
    }

    .hiw .step.active .step_m_img {
        visibility: visible;
        opacity: 1;
        transform: rotateX(0deg);
        height: auto;
        display: block;
    }

    /*end*/

    /*Why Choose us*/
    .why-choose {
        padding-top: 0;
    }

    .why-ch {
        border-radius: 12px;
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .whc,
    .whcc {
        flex-direction: column !important;
    }

    .why-left h2 {
        font-size: 24px;
    }

    .why-left ul li {
        font-size: 16px;
        padding-left: 30px;
    }

    .why-left ul li svg {
        position: absolute;
        top: 3px;
        left: 0;
    }

    .why-choose .img-box img {
        width: 90%;
        left: 5%;
    }

    .img-box .circle {
        right: -10px;
    }

    .img-box .small-circle {
        left: 0;
    }

    .alt-position .img-box .circle {
        left: -5px;
    }

    .alt-position .img-box .small-circle {
        left: unset;
        right: 0;
        top: -10px;
    }

    /*end*/

    /*Features*/
    .features {
        padding-top: 0;
    }

    .feat {
        gap: 30px;
        flex-direction: column;
    }

    .feature-box {
        width: 320px;
        max-width: 90%
    }

    .feature-box::after {
        background: #E4E4E4;
        width: 100%;
        height: 1px;
        top: calc(100% + 15px);
        right: 0;
    }

    .feature-box img {
        width: 45px;
    }

    .feature-box h3 {
        font-size: 22px;
    }

    .feature-box p {
        font-size: 16px;
    }

    /*end*/

    /*Why it matters*/
	.why-matters {
		padding-top: 0;
	}
    .why-matters h2 {
        font-size: 24px;
    }

    .why-matters .subtitle {
        font-size: 16px;
    }

    .stat-box h3 {
        font-size: 24px;
    }

    .stat-box p {
        font-size: 18px;
    }

    .stats {
        gap: 25px;
        flex-direction: column;
    }

    .stat-box {
        border-radius: 20px;
    }

    /*end*/

    /*Security*/
    .security-sectio {
        margin: 0 15px;
    }

    .security-content {
        padding-left: 25px;
        width: calc(80% - 25px);
    }

    .security-content h2 {
        font-size: 24px;
    }

    .security-content ul li {
        font-size: 16px;
    }

    .security-content ul li img {
        width: 16px;
    }

    /*end*/

    /*great-team*/
    .great-team {
        margin: 0 15px;
    }

    .great-teams {
        padding: 25px 25px 20px 25px;
    }

    .great-teams-title h2 {
        font-size: 24px;
        letter-spacing: 0.3px;
        font-weight: 700;
    }

    .great-teams-title h2 strong {
        margin-top: 15px;
        display: block;
    }

    .great-teams-title p {
        font-size: 16px;
    }

    /*end*/

    /*College page start*/
    /*career-content*/
    .career-section {
        /*padding-top: 0;*/
        padding-bottom: 0;
    }

    .college.career-section {
        padding-top: 0;
        padding-bottom: 35px;
    }

    .career-content h2 {
        font-size: 24px;
    }

    .career-content p {
        font-size: 14px;
        width: unset;
    }

    /*end*/

    /*how it works - college*/
    .hiiw {
        border-radius: 12px;
    }

    /*end*/

    /*matrics*/
    .metrics-section {
        padding: 0px 15px;
    }

    .metrics-wrapper {
        flex-direction: column;
    }

    .metric-divider {
        width: 100%;
        height: 1px;
    }

    .metric-item h3 {
        font-size: 30px;
    }

    .metric-item p {
        font-size: 18px;
    }

    /*end*/

    /*d-cap*/
    .dcap-section {
        padding-bottom: 20px;
    }

    .metric-item h3 {
        font-size: 24px;
    }

    .dcap-title {
        margin: 0 0 30px;
        font-size: 24px;
    }

    .dcap-card h3 {
        font-size: 20px;
    }

    .dcap-card p {
        font-size: 16px;
    }

    .dcap-grid {
        grid-template-columns: 1fr;
        margin: 0 15px;
    }

    /*end*/

    /*join now*/
    .join-now-left {
        text-align: center;
    }

    .join-now-wrap {
        border-radius: 12px;
        padding-top: 30px;
        padding-bottom: 30px;
        margin-bottom: 0;
    }

    .join-now-left h2 {
        font-size: 24px;
        font-weight: 700;
    }

    .join-now-left p {
        font-size: 16px;
    }

    .join-now-img {
        width: 280px
    }

    .join-now-tag {
        font-size: 12px;
    }

    .tag-d {
        width: auto;
        text-align: center;
        white-space: nowrap;
        font-size: 11px;
    }

    .tag-b {
        width: 80px;
        text-align: center;
        min-width: unset;
    }

    /*end*/

    /*about page*/
    /*why choose - about*/
    .why-choose.about {
        padding: 0;
    }

    .why-choose.about .img-box img {
        width: 100%;
        left: 0%;
        aspect-ratio: 3 / 2;
    }

    .why-choose.about .why-left h4 {
        font-size: 20px;
    }

    .why-choose.about .why-left p {
        font-size: 14px;
    }

    .why-choose.about .whcc {
        margin-top: 20px;
    }

    .why-choose.about .img-box {
        margin-bottom: 25px;
    }

    /*end*/

    /*d'cap - about*/
    .about-p.dcap-section .dcap {
        border-radius: 12px;
    }

    .about-p .dcap-title {
        margin: 15px 0 30px;
    }

    /*end*/

    /* career */
    .about-p .career-section {
        padding: 30px 20px 0;
    }

    .about-p .career-content h2 {
        width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    /*end*/

    /*Team*/
    .team-section {
        padding: 0px 0px;
    }

    .team-title {
        font-size: 24px;
    }

    .team-card h3 {
        font-size: 16px;
    }

    .team-photo {
        aspect-ratio: 4 / 5;
    }

    /*end*/

    /*contact-sec - about*/
    .contact-section {
        padding: 0;
        margin-bottom: 0 !important;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-icon img {
        width: 26px;
        height: 26px;
        object-fit: contain;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-card p {
        font-size: 16px;
    }

    .contact-link {
        font-size: 16px;
    }

    /*end*/

    /*CTA - About*/
    .cta-sec.about-p {
        padding-top: 50px;
    }

    /*end*/

    /*Contact us page*/
    /*form*/
    .smallheading.hero.contact .hero-content {
        padding-top: 40px;
    }

    .form-overlay-box {
        margin-top: -250px;
        width: 85%;
        padding: 30px 4%;
        border-radius: 12px;
    }

    .form-overlay-tab {
        font-size: 14px;
		min-width: unset;
    }

    .form-overlay-row {
        flex-direction: column;
		gap: 0;
    }

    .form-overlay-row>* {
        max-width: 100%;
		width: 100%;
    }

    .form-overlay-form input,
    .form-overlay-form select,
    .form-overlay-form textarea {
        width: 100%;
    }

    .form-overlay-btn {
        font-size: 16px;
    }

    /*end*/
	
	/* Blog	 */
		.explore-title{
			font-size: 18px
		}
		.blog-slider{
			padding-left: 16px;
			padding-right: 16px;
		}
		.blog-overlay{
			bottom: 12px
		}
		.blogs-title{
			font-size: 34px;
		}
		.blogs-subtitle{
			font-size: 20px;
		}
		.blog-overlay h3{
			font-size: 16px;
		}
		.blog-slider .slider-btn{
			width: 32px;
			height: 32px;
		}
		.blog-slider .slider-btn .icon{
			width: 16px;
			height: 16px;
		}
	    .explore{
		    padding: 0 15px;
	    }
		.tag-list {
			display: block;
			white-space: nowrap;
			overflow: auto;
		}
		.tag-list .tag{
			display: inline-block;
			margin: 0 8px 0 0;
			font-size: 14px;
		}
	/* 	end */

    /*Blog Single page*/
        .breadcrumb-section.blog_breadcrumb{
            display: none;
        }
        .post-title {
            font-size: 34px;
            font-family: var(--heading-font);
            line-height: 1.5;
        }
        .post-meta{
            font-size: 14px;
        }
        .post-meta > .separator:nth-child(4){
            display: none;
        }
        .single-post-content {
            padding-right: 0;
            padding-top: 20px;
        }
        .post_img img{
            border-radius: 12px;
        }
        .post-footer .share-label{
            font-size: 20px;
        }
        .post-footer .s-icons {
            width: 32px;
            height: 32px;
        }
        .post-footer .s-icons svg.icon {
            height: 20px;
            width: 18px;
        }
        .sidebar{
            top: 0;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .promo-box{
            border-radius: 10px;
            padding: 25px;
        }
        .promo-box .promo-title{
            font-size: 20px;
        }
        .promo-box .promo-text{
            font-size: 14px;
        }
        .related_blogs{
            order: 2;
        }
        .related_blogs .sidebrhd{
            font-size: 20px;
            margin-top: 25px;
        }
        .related-item .date{
            font-size: 10px;
        }
        .related_blogs .related-item .thumb {
            min-width: 130px;
        }
    /*end*/
}

/* end */