﻿@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@100..900&display=swap');

.jost-regular {
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400, 500, 600;
    /* Regular weight */
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    background-color: #fff;
    scroll-behavior: smooth;
    transition: all 0.5s ease 0s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    color: #202020;
}

p {
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    color: #202020;
}

.problem-solution-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .problem-solution-section::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        background: radial-gradient(circle, rgba(168, 132, 255, 0.16) 0%, rgba(168, 132, 255, 0) 70%);
        top: -120px;
        left: -120px;
        z-index: 0;
    }

    .problem-solution-section::after {
        content: "";
        position: absolute;
        width: 460px;
        height: 460px;
        background: radial-gradient(circle, rgba(111, 66, 193, 0.12) 0%, rgba(111, 66, 193, 0) 70%);
        right: -100px;
        bottom: -120px;
        z-index: 0;
    }

.section-wrap {
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5a38b0;
    margin-bottom: 14px;
    position: relative;
    padding-left: 18px;
}

    .section-label::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        transform: translateY(-50%);
        background: linear-gradient(135deg, #6d4aff, #b08cff);
        box-shadow: 0 0 0 8px rgba(109, 74, 255, 0.10);
    }

.main-heading {
    line-height: 1.08;
    font-weight: 800;
    color: #1f0f58;
    margin-bottom: 22px;
    letter-spacing: -1px;
    text-align: center;
}

.heading-text {
    font-size: 17px !important;
    line-height: 1.9;
    color: #5b5575;
    max-width: 760px;
    margin-bottom: 55px;
}

.info-card {
    position: relative;
    height: 100%;
    padding: 34px 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(120, 90, 200, 0.12);
    box-shadow: 0 20px 70px rgba(42, 19, 94, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: all 0.35s ease;
}

    .info-card.problem-card::before,
    .info-card.solution-card::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        top: -100px;
        right: -80px;
        z-index: 0;
        filter: blur(8px);
    }

.card-top,
.list-block {
    position: relative;
    z-index: 2;
}

.card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.icon-box {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-card .icon-box {
    background: linear-gradient(135deg, rgba(255, 218, 236, 0.95), rgba(239, 224, 255, 0.95));
    color: #7c38b6;
    box-shadow: 0 14px 30px rgba(124, 56, 182, 0.12);
}

.solution-card .icon-box {
    background: linear-gradient(135deg, rgba(223, 236, 255, 0.95), rgba(231, 224, 255, 0.95));
    color: #4f36b5;
    box-shadow: 0 14px 30px rgba(79, 54, 181, 0.12);
}

.icon-box i {
    width: 28px;
    height: 28px;
}

.card-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #202020 !important;
    margin-bottom: 5px;
}

.card-title {
    font-size: 26px !important;
   margin-top:-2px !important;
    font-weight: 700;
    color: #202020 !important;
    margin-bottom: 0;
}

.list-block {
    display: grid;
    gap: 16px;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(108, 82, 175, 0.10);
    transition: all 0.3s ease;
}

    .list-item:hover {
        transform: translateX(6px);
        border-color: rgba(108, 82, 175, 0.18);
        box-shadow: 0 12px 35px rgba(63, 30, 113, 0.08);
    }

.list-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.problem-card .list-icon {
    background: rgba(158, 92, 196, 0.12);
    color: #8e44c1;
}

.solution-card .list-icon {
    background: rgba(90, 79, 217, 0.12);
    color: #5145cd;
}

.list-icon i {
    width: 19px;
    height: 19px;
}

.list-text {
    font-size: 16px;
    line-height: 1.7;
    color: #372f56;
    font-weight: 500;
    margin: 0;
}

.middle-glow {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(161, 123, 255, 0.18) 0%, rgba(161, 123, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .problem-solution-section {
        padding: 80px 0;
    }

    .main-heading {
        font-size: 38px;
    }

    .heading-text {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 35px;
    }

    .card-title {
        font-size: 25px;
    }

    .info-card {
        padding: 28px 22px;
    }
}

@media (max-width: 575.98px) {
    .main-heading {
        font-size: 30px;
    }

    .card-top {
        gap: 12px;
    }

    .icon-box {
        width: 54px;
        height: 54px;
        border-radius: 16px;
    }

    .card-title {
        font-size: 22px;
    }

    .list-item {
        padding: 14px 14px;
    }

    .list-text {
        font-size: 14px;
    }

    .elementor-widget-heading .elementor-widget-container{
        text-align:left !important;

    }
}

.ibxeco-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

    .ibxeco-section::before {
        content: "";
        position: absolute;
        top: -120px;
        left: -120px;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        filter: blur(20px);
        z-index: 0;
    }

    .ibxeco-section::after {
        content: "";
        position: absolute;
        right: -100px;
        bottom: -100px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
        filter: blur(20px);
        z-index: 0;
    }

.ibxeco-wrap {
    position: relative;
    z-index: 2;
}

.ibxeco-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 55px;
}

.ibxeco-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 14px;
}

.ibxeco-title {
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.12;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
}

.ibxeco-grid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.ibxeco-card {
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    padding: 30px 24px;
    box-shadow: 0 18px 40px rgba(15, 8, 34, 0.22);
    transition: all 0.35s ease;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

    .ibxeco-card::before {
        content: "";
        position: absolute;
        top: -55px;
        right: -55px;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(87, 67, 137, 0.12), rgba(124, 102, 190, 0.08));
    }

    .ibxeco-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 28px 60px rgba(15, 8, 34, 0.30);
    }

.ibxeco-card-inner {
    position: relative;
    z-index: 2;
}

.ibxeco-iconbox {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #6d57b0, #8f79d6);
    box-shadow: 0 14px 30px rgba(87, 67, 137, 0.25);
    color: #ffffff;
}

    .ibxeco-iconbox svg {
        width: 28px;
        height: 28px;
        stroke-width: 2.2;
    }

.ibxeco-number {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #8b7ab8;
    margin-bottom: 10px;
}

.ibxeco-cardtitle {
    font-size: 22px !important;
    line-height: 1.35;
    font-weight: 700;
    color: #1f1838;
    margin-bottom: 12px;
}

.ibxeco-cardtext {
    font-size: 15px;
    line-height: 1.8;
    color: #6b6780;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .ibxeco-section {
        padding: 80px 0;
    }

    .ibxeco-header {
        margin-bottom: 40px;
    }

    .ibxeco-card {
        padding: 26px 20px;
    }

    .ibxeco-cardtitle {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .ibxeco-section {
        padding: 65px 0;
    }

    .ibxeco-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .ibxeco-title {
        font-size: 30px;
    }

    .ibxeco-card {
        border-radius: 20px;
        padding: 22px 18px;
    }

    .ibxeco-iconbox {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        margin-bottom: 18px;
    }

        .ibxeco-iconbox svg {
            width: 24px;
            height: 24px;
        }

    .ibxeco-cardtitle {
        font-size: 18px;
    }

    .ibxeco-cardtext {
        font-size: 14px;
    }
}

.ibxeco-section {
    background: #4CAF50;
}

.ibxstep-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

    .ibxstep-section::before {
        content: "";
        position: absolute;
        top: -120px;
        left: -120px;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        filter: blur(18px);
        z-index: 0;
    }

    .ibxstep-section::after {
        content: "";
        position: absolute;
        right: -100px;
        bottom: -100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
        filter: blur(18px);
        z-index: 0;
    }

.ibxstep-wrap {
    position: relative;
    z-index: 2;
}

.ibxstep-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.ibxstep-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 14px;
}

.ibxstep-title {
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.12;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
}

.ibxstep-row {
    position: relative;
    row-gap: 24px;
}

.ibxstep-col {
    position: relative;
    z-index: 2;
}

.ibxstep-card {
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 28px;
    padding: 34px 26px 28px;
    box-shadow: 0 18px 45px rgba(18, 10, 40, 0.24);
    overflow: hidden;
    transition: all 0.35s ease;
}

    .ibxstep-card::before {
        content: "";
        position: absolute;
        top: -70px;
        right: -70px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(87, 67, 137, 0.12), rgba(144, 120, 214, 0.08));
    }

    .ibxstep-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 28px 60px rgba(18, 10, 40, 0.32);
    }

.ibxstep-cardinner {
    position: relative;
    z-index: 2;
}

.ibxstep-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.ibxstep-badge {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6d57b0, #8f79d6);
    box-shadow: 0 12px 28px rgba(87, 67, 137, 0.25);
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    flex-shrink: 0;
}

.ibxstep-iconbox {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3efff;
    color: #6347b2;
    flex-shrink: 0;
}

    .ibxstep-iconbox svg {
        width: 26px;
        height: 26px;
        stroke-width: 2.2;
    }

.ibxstep-minilabel {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #8c7abf;
    margin-bottom: 10px;
}

.ibxstep-cardtitle {
    font-size: 19px !important;
    line-height: 1.35;
    font-weight: 700;
    color: #1f1838;
    margin-bottom: 14px;
}

.ibxstep-cardtext {
    font-size: 15px;
    line-height: 1.85;
    color: #68637b;
    margin-bottom: 0;
}

.elementskit-info-box-title {
    font-size: 16px !important;
}

.ibxstep-card.is-featured {
    /*    transform: translateY(-12px);*/
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 241, 255, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .ibxstep-card.is-featured:hover {
        transform: translateY(-18px);
    }

@media (max-width: 991.98px) {
    .ibxstep-section {
        padding: 80px 0;
    }

    .ibxstep-header {
        margin-bottom: 40px;
    }

    .ibxstep-line {
        display: none;
    }

    .ibxstep-card,
    .ibxstep-card.is-featured {
        transform: none;
    }

        .ibxstep-card:hover,
        .ibxstep-card.is-featured:hover {
            transform: translateY(-8px);
        }
}
.mobile-btn {
    display: none !important;
}
@media (max-width: 575.98px) {
    .ibxstep-section {
        padding: 65px 0;
    }

    .ibxstep-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .ibxstep-title {
        font-size: 30px;
    }

    .ibxstep-card {
        border-radius: 22px;
        padding: 24px 18px 22px;
    }

    .ibxstep-badge {
        width: 68px;
        height: 68px;
        font-size: 22px;
    }

    .ibxstep-iconbox {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .ibxstep-cardtitle {
        font-size: 20px;
    }

    .ibxstep-cardtext {
        font-size: 14px;
        line-height: 1.75;
    }

    .mobile-btn {
        display: block !important;
        margin-bottom:10px !important;
    }

    .mobile-btn-2 {
        margin-right: -13px !important;
    }

    .elementor-51 .elementor-element.elementor-element-d1287e7 {
        width: 100% !important;
       
    }
    .elementor-heading-title elementor-size-default {
        text-align: justify !important;
    }
}

.ibxstep-section {
    background-color: #4CAF50;
}


.faq-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7ff, #f0eaff);
    text-align: center;
}

.faq-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.faq-box {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    margin-bottom: 15px;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.4);
    transition: 0.3s ease;
    position: relative;
}

    .faq-item:hover {
        box-shadow: 0 0 25px rgba(140, 82, 255, 0.2);
    }

    .faq-item.active {
        background: linear-gradient(135deg, #ffffff, #f2ecff);
        box-shadow: 0 0 30px rgba(140, 82, 255, 0.25);
    }

.faq-question {
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #222;
}

.faq-answer {
    font-size: 14px;
    color: #555;
    margin-top: 12px;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.icon {
    font-size: 22px;
    transition: 0.3s;
}

.faq-item.active .icon {
    transform: rotate(45deg);
    color: #8c52ff;
}

.liquidity-sec {
  
   
}

/* BIG NUMBER */
.liq-number {
    font-size: 30px !important;
    font-weight: 800;
    background: linear-gradient(90deg, #6a5cff, #00c9a7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

/* LABEL */
.liq-label {
    font-size: 14px;
    letter-spacing: 3px;
    color: #202020;
    /*    margin-top: 10px;*/
    text-transform: uppercase;
    margin-top: -18px;
    font-weight: 800;
    margin-bottom:26px;
}

/* TAGLINE */
.liq-tagline {
    margin-top: -14px;
    font-size: 18px;
    color: #333;
    text-align:justify;
}

    .liq-tagline span {
        color: #6a5cff;
        font-weight: 700;
    }

/* BUTTON */
.invite-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
   
    padding: 14px 35px;
    border-radius: 50px;
    background: linear-gradient(90deg, #d4af37, #6a5cff);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

    /* HOVER EFFECT */
    .invite-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(106, 92, 255, 0.3);
    }

/* RESPONSIVE */
@media(max-width:768px) {
    .liq-number {
        font-size: 42px;
    }

    .liq-tagline {
        font-size: 15px;
    }
    .mobile-sub-heading {
        text-align: center !important;
        font-size: 19px !important; 
    }
    .mobilebtn {
        width: 100% !important;
    }
    .btnmobilepos {
        margin-right: 14px !important;
    }
    .elementor-heading-title elementor-size-default{
        text-align:center !important;
    }
    .elementor-heading-title elementor-size-default{
       
    }

    .rr {
        text-align: center !important
    }
}


/* Parent container */
.elementor-element-1912bab {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Inner container */
.elementor-element-69e07d9 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

/* Image center */
.elementor-element-3d534c3 img {
    display: block !important;
    margin: 0 auto !important;
}

.elementor-heading-title elementor-size-default{
    text-align:justify !important;
}

/* LEFT IMAGE CENTER */
.elementor-element-9c8cff8 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* IMAGE CENTER */
.elementor-element-c19cd92 img {
    display: block !important;
    margin: 0 auto !important;
}

.elementor-51 .elementor-element.elementor-element-73651f3 .elementskit-info-box-icon {
    background-color: #7a64b6 !important;
}

.elementor-51 .elementor-element.elementor-element-5f62cd9 .elementskit-info-box-icon {
    background-color: #7a64b6 !important;
}
.elementor-51 .elementor-element.elementor-element-294b2b8 .elementskit-info-box-icon {
    background-color: #7a64b6 !important;
}
.elementor-51 .elementor-element.elementor-element-4b9e7e5 .elementskit-info-box-icon {
    background-color: #7a64b6 !important;
}

/* Force center on all devices */
.elementor-widget-heading,
.elementor-widget-heading .elementor-widget-container,
.elementor-widget-heading .elementor-heading-title {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
}

/* Mobile fix (extra strong) */
@media (max-width: 767px) {
    .elementor-widget-heading,
    .elementor-widget-heading .elementor-widget-container,
    .elementor-widget-heading .elementor-heading-title {
        text-align: center !important;
        display: block !important;
    }
}

/* Parent container center fix */
.elementor-element-a574b51,
.elementor-element-44aab63 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
}

/* Heading center */
.elementor-element-e49f832 .elementor-heading-title {
    text-align: center !important;
    width: 100% !important;
}

/* Mobile strong fix */
@media (max-width: 767px) {
    .elementor-element-a574b51,
    .elementor-element-44aab63 {
        justify-content: center !important;
        text-align: center !important;
    }

    .elementor-1463 .elementor-element.elementor-element-b7951f4{
        margin-bottom:0px !important;
    }
}

.elementor-51 .elementor-element.elementor-element-dfcddd8 > .elementor-widget-container {
    margin: -10px 0px 0px -5px !important;
}

.elementor-element-1a03100 .elementor-heading-title {
    text-align: left !important;
}
.elementor-heading-title elementor-size-default {
    text-align: left !important;
}

.elementor-element-d6949b3 .elementor-heading-title {
    text-align: left !important;
}

.elementor-element-b66e918 .elementor-heading-title {
    text-align: left !important;
}

.elementor-1463 .elementor-element.elementor-element-b7951f4{
    margin-bottom:10px !important;
}

/*-----------------------------------------------*/

.eco-hero {
    padding: 100px 0;
    background: radial-gradient(circle at center, #ede9ff, #f8f9ff);
    position: relative;
    overflow: hidden;
}

    .eco-hero::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: #7b61ff;
        filter: blur(120px);
        opacity: 0.2;
        top: -100px;
        left: -100px;
    }

.eco-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
}

.eco-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: #5f6b7a;
    margin-bottom: 20px;
}

.eco-desc {
    color: #6c757d;
    line-height: 1.8;
    font-size: 16px;
}
/* CARD DESIGN */

.eco-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

    .eco-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(123, 97, 255, 0.15);
    }

.eco-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7b61ff, #9f8fff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 15px;
}

.eco-heading {
    font-size: 18px;
    font-weight: 600;
}

.eco-text {
    font-size: 14px;
    color: #6c757d;
}
/* RESPONSIVE */

@media(max-width:768px) {
    .eco-title {
        font-size: 30px;
    }
}

/* ARCHITECTURE SECTION */
.eco-architecture {
    background: #f8f9ff;
}

/* CORE BOX */
.core-box {
    background: linear-gradient(135deg,#4e3b7d,#7b61ff);
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(78,59,125,0.3);
}

.core-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.core-list li {
    margin-bottom: 8px;
}

.core-note {
    background: rgba(255,255,255,0.15);
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
}

/* RIGHT CARDS */
.eco-box {
    background: white;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .eco-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(78,59,125,0.2);
    }

    .eco-box h6 {
        font-weight: 600;
    }

    .eco-box ul {
        padding-left: 18px;
        font-size: 13px;
        color: #6c757d;
    }

/* ICON */
.eco-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg,#4e3b7d,#7b61ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 10px;
}

/* FLOW SECTION */
.eco-flow {
    background: linear-gradient(180deg,#f8f9ff,#ffffff);
}

/* WRAPPER */
.flow-wrapper {
    position: relative;
    padding-left: 40px;
}

    /* VERTICAL LINE */
/*    .flow-wrapper::before {
        content: '';
        position: absolute;
        left: 18px;
        top: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(#4e3b7d,#7b61ff);
    }*/

/* STEP */
.flow-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

/* NUMBER */
.step-number {
    min-width: 36px;
    height: 36px;
    background: linear-gradient(135deg,#4e3b7d,#7b61ff);
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(78,59,125,0.3);
}

/* CARD */
.step-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-left: 4px solid #4e3b7d;
}

    .step-card:hover {
        transform: translateX(8px);
        box-shadow: 0 20px 40px rgba(78,59,125,0.2);
    }

    .step-card h5 {
        font-weight: 600;
        margin-bottom: 5px;
    }

    .step-card p {
        margin: 0;
        color: #6c757d;
        font-size: 14px;
    }

/* MOBILE */
@media(max-width:768px) {
    .flow-wrapper {
        padding-left: 20px;
    }
}

/* REVENUE SECTION */
.eco-revenue {
    background: radial-gradient(circle at top,#ede9ff,#ffffff);
}

/* CARD */
.rev-card {
    background: white;
    padding: 25px;
    border-radius: 18px;
    height: 100%;
    text-align: left;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    /* HOVER EFFECT */
    .rev-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(78,59,125,0.2);
    }

    /* GLOW BORDER EFFECT */
    .rev-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 18px;
        padding: 1px;
        background: linear-gradient(135deg,#4e3b7d,#7b61ff);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: 0.3s;
    }

    .rev-card:hover::before {
        opacity: 1;
    }

/* ICON */
.rev-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,#4e3b7d,#7b61ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(78,59,125,0.3);
}

/* TEXT */
.rev-card h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.rev-card p {
    font-size: 14px;
    color: #6c757d;
}
/* SECTION BG (MORE DEPTH) */
.eco-security {
    background: linear-gradient(135deg, #f3f1ff, #ffffff);
    position: relative;
    overflow: hidden;
}

    /* EXTRA GLOW BACKGROUND */
    .eco-security::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: #4e3b7d;
        filter: blur(150px);
        opacity: 0.08;
        top: -100px;
        left: -100px;
    }

/* BOX (MORE PREMIUM GLASS) */
.sec-box {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 35px;
    transition: 0.4s;
    border: 1px solid rgba(78,59,125,0.15);
    position: relative;
    overflow: hidden;
}

    /* GRADIENT BORDER EFFECT */
    .sec-box::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        padding: 1px;
        background: linear-gradient(135deg,#4e3b7d,#7b61ff);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: 0.3s;
    }

    /* HOVER EFFECT */
    .sec-box:hover {
        transform: translateY(-10px) scale(1.01);
        box-shadow: 0 25px 60px rgba(78,59,125,0.25);
    }

        .sec-box:hover::after {
            opacity: 1;
        }

/* ICON (UPGRADED) */
.sec-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,#4e3b7d,#7b61ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(78,59,125,0.4);
}

/* HEADING */
.sec-box h4 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a2e;
}

/* TEXT */
.sec-list {
    padding-left: 18px;
    font-size: 14px;
}

    .sec-list li {
        margin-bottom: 10px;
        color: #5f6b7a;
    }

/* SMALL ANIMATION (SMOOTH) */
.sec-box {
    will-change: transform;
}

/***********************************************/
/* HERO BG (MORE DEPTH) */
.token-hero {
    background: linear-gradient(120deg, #f3f1ff, #ffffff);
    position: relative;
    overflow: hidden;
}

    /* BIG PURPLE GLOW (STRONG) */
    .token-hero::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, #4e3b7d, transparent 70%);
        filter: blur(80px);
        opacity: 0.4;
        right: -100px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* GOLD GLOW (LIGHT TOUCH) */
    .token-hero::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: #d6b57c;
        filter: blur(120px);
        opacity: 0.15;
        left: -80px;
        bottom: -80px;
    }

/* TITLE STRONG */
.token-title {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a2e;
}

/* VISUAL FIX */
.token-visual {
    position: relative;
    display: inline-block;
}

/* INNER GLOW CIRCLE */
.token-circle {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #7b61ff, #4e3b7d);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.9;
}

/* ICON CENTER + FLOAT */
.token-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    color: #d6b57c;
    animation: float 3s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
    0% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
}
/* HERO BG (LUXURY STYLE) */
.token-hero {
    background: radial-gradient(circle at 70% 30%, #ede9ff, #ffffff);
    position: relative;
    overflow: hidden;
}

    /* GOLD GLOW */
    .token-hero::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: #d6b57c;
        filter: blur(140px);
        opacity: 0.15;
        top: -100px;
        right: -100px;
    }

    /* PURPLE GLOW */
    .token-hero::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: #4e3b7d;
        filter: blur(140px);
        opacity: 0.1;
        bottom: -100px;
        left: -100px;
    }

/* TEXT */
.token-tag {
    font-weight: 600;
    color: #4e3b7d;
    letter-spacing: 1px;
}

.token-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
}

.token-desc {
    color: #5f6b7a;
    line-height: 1.8;
    font-size:15px !important;
}

/* VISUAL */
.token-visual {
    position: relative;
    display: inline-block;
}

.token-circle {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg,#4e3b7d,#7b61ff);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.8;
}

/* ICON */
.token-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    color: #d6b57c;
}

/* BUTTONS (REUSE YOUR STYLE) */
/* GOLD BUTTON */
.btn-gold {
    background-color: #d6b57c !important;
    color: #1a1a2e !important;
    border-radius: 30px !important;
    padding: 10px 25px !important;
    font-weight: 500 !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

    /* GOLD HOVER */
    .btn-gold:hover {
        background: #c9a96a;
        color: #1a1a2e;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(214,181,124,0.4);
    }


/* PURPLE BUTTON */
.btn-purple {
    background: linear-gradient(135deg,#4e3b7d,#7b61ff) !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 10px 25px !important;
    font-weight: 500 !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

    /* PURPLE HOVER */
    .btn-purple:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(78,59,125,0.4);
    }


    /* CLICK EFFECT */
    .btn-gold:active,
    .btn-purple:active {
        transform: scale(0.96);
    }

/* RESPONSIVE */
@media(max-width:768px) {
    .token-title {
        font-size: 30px;
    }
}


/* SECTION BG (DIFFERENT FROM HERO) */
.token-utility {
    background: linear-gradient(180deg,#ffffff,#f3f1ff);
    position: relative;
}

/* CARD BASE */
.util-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

    /* HOVER */
    .util-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(78,59,125,0.2);
    }

/* ICON */
.util-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,#4e3b7d,#7b61ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* TEXT */
.util-card h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.util-card ul {
    padding-left: 18px;
    font-size: 14px;
    color: #6c757d;
}

/* 🔥 HIGHLIGHT CARD */
.util-card.highlight {
    background: linear-gradient(135deg,#4e3b7d,#7b61ff);
    color: white;
}

    .util-card.highlight ul {
        color: rgba(255,255,255,0.8);
    }

/* 🧊 GLASS CARD */
.util-card.glass {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(78,59,125,0.1);
}

/* MOBILE */
@media(max-width:768px) {
    .util-card {
        padding: 20px;
    }
}

/* SECTION BG (DARK PREMIUM) */
.token-value {
    background: linear-gradient(135deg,#2e2450,#4e3b7d);
    color: white;
    position: relative;
    overflow: hidden;
}

    /* GLOW */
    .token-value::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: #7b61ff;
        filter: blur(120px);
        opacity: 0.2;
        top: -100px;
        left: -100px;
    }

/* FLOW */
.value-flow {
    position: relative;
    padding-left: 30px;
}

    .value-flow::before {
        content: '';
        position: absolute;
        left: 12px;
        top: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(#d6b57c,#ffffff);
    }

/* FLOW ITEM */
.flow-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

    .flow-item span {
        width: 30px;
        height: 30px;
        background: #d6b57c;
        color: #1a1a2e;
        font-weight: 600;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }

    .flow-item p {
        margin: 0;
        color: rgba(255,255,255,0.9);
    }

/* NOTE */
.flow-note {
    margin-top: 20px;
    background: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
}

/* ROLE CARDS */
.role-card {
    background: white;
    color: #1a1a2e;
    border-radius: 16px;
    padding: 20px;
    transition: 0.3s;
    text-align: left;
}

    .role-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    /* ICON */
    .role-card i {
        width: 35px;
        height: 35px;
        color: #4e3b7d;
        margin-bottom: 10px;
    }

    /* GLASS */
    .role-card.glass {
        background: rgba(255,255,255,0.2);
        color: white;
        backdrop-filter: blur(10px);
    }

        .role-card.glass i {
            color: #fff;
        }

    /* HIGHLIGHT */
    .role-card.highlight {
        background: linear-gradient(135deg,#d6b57c,#f5d9a0);
        color: #1a1a2e;
    }


/* SECTION BG (GOLD + LIGHT MIX) */
.token-why {
    background: linear-gradient(180deg,#ffffff,#fdf7ef);
}

/* WHY BOX (BANNER STYLE) */
.why-box {
    background: linear-gradient(135deg,#4e3b7d,#7b61ff);
    color: white;
    padding: 40px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

    /* GOLD GLOW */
    .why-box::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: #d6b57c;
        filter: blur(120px);
        opacity: 0.2;
        top: -50px;
        right: -50px;
    }

/* WHY ITEMS */
.why-item {
    background: rgba(255,255,255,0.15);
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
}

/* NOTE */
.why-note {
    font-size: 14px;
    background: rgba(255,255,255,0.1);
    display: inline-block;
    padding: 10px 15px;
    border-radius: 10px;
}

/* VISION CARDS */
.vision-card {
    background: white;
    padding: 25px;
    text-align: center;
    border-radius: 18px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .vision-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(78,59,125,0.2);
    }

    .vision-card h4 {
        font-size: 28px;
        color: #4e3b7d;
    }

    /* HIGHLIGHT */
    .vision-card.highlight {
        background: linear-gradient(135deg,#d6b57c,#f5d9a0);
        color: #1a1a2e;
    }

    /*****************************************************************/
/* HERO BG */
.about-hero {
    background: linear-gradient(120deg, #f3f1ff, #ffffff);
    position: relative;
    overflow: hidden;
}

    /* PURPLE GLOW */
    .about-hero::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, #4e3b7d, transparent 70%);
        filter: blur(80px);
        opacity: 0.4;
        right: -100px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* GOLD GLOW */
    .about-hero::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: #d6b57c;
        filter: blur(120px);
        opacity: 0.15;
        left: -80px;
        bottom: -80px;
    }

/* TEXT */
.token-tag {
    font-weight: 600;
    color: #4e3b7d;
}

.token-title {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a2e;
}

.token-desc {
    color: #5f6b7a;
    line-height: 1.8;
}

/* VISUAL */
.about-visual {
    position: relative;
    display: inline-block;
}

.about-circle {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #7b61ff, #4e3b7d);
    border-radius: 50%;
    filter: blur(40px);
}

/* ICON */
.about-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    color: #d6b57c;
    animation: float 3s ease-in-out infinite;
}

/* FLOAT */
@keyframes float {
    0% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
}


/* SECTION BG (SPLIT STYLE) */
.about-philosophy {
    background: linear-gradient(90deg,#ffffff 50%, #f3f1ff 50%);
}

/* LEFT BOX (GLASS FEEL) */
.philo-box {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(78,59,125,0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* LIST */
.philo-list {
    padding-left: 18px;
    margin-top: 15px;
}

    .philo-list li {
        margin-bottom: 10px;
        color: #5f6b7a;
    }

/* RIGHT BOX */
.work-box {
    background: linear-gradient(135deg,#4e3b7d,#7b61ff);
    color: white;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

    /* GLOW */
    .work-box::before {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        background: #d6b57c;
        filter: blur(120px);
        opacity: 0.2;
        top: -50px;
        right: -50px;
    }

/* ITEMS */
.work-cards {
    margin-top: 20px;
}

.work-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

    .work-item i {
        width: 30px;
        height: 30px;
        color: #d6b57c;
    }

/* CHECK */
.work-check p {
    margin: 5px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

/* MOBILE FIX */
@media(max-width:768px) {
    .about-philosophy {
        background: #ffffff;
    }
}


/* SECTION BG (LIGHT + SOFT PURPLE) */
.about-trust {
    background: linear-gradient(180deg,#f3f1ff,#ffffff);
}

/* 🔐 TOP TRUST BOX (DARK STRONG BLOCK) */
.trust-box {
    background: linear-gradient(135deg, #4e3b7d, #7b61ff);
    color: white;
    padding: 40px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

    /* GOLD GLOW */
    .trust-box::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: #d6b57c;
        filter: blur(120px);
        opacity: 0.2;
        top: -50px;
        right: -50px;
    }

/* TRUST ITEMS */
.trust-item {
    background: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
}

/* 🎯 MISSION BOX (GLASS STYLE) */
.mission-box {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(78,59,125,0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* 🔮 VISION BOX (HIGHLIGHT) */
.vision-box {
    background: linear-gradient(135deg,#4e3b7d,#7b61ff);
    color: white;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

    /* GOLD GLOW */
    .vision-box::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background: #d6b57c;
        filter: blur(100px);
        opacity: 0.2;
        bottom: -50px;
        left: -50px;
    }

/* TEXT */
.mission-box p {
    color: #5f6b7a;
    line-height: 1.7;
}

.vision-box p {
    color: rgba(255,255,255,0.9);
}


/* Parent ko flex bana */
.elementor-element-4860fdd .e-con-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Logo left fix */
.elementor-element-ce3ad6b {
    width: auto !important;
}

/* Menu container ko right push */
.elementor-element-7d6146f {
    width: auto !important;
    margin-left: auto !important;
}

/* Menu UL ko bhi right align */
.elementskit-navbar-nav {
    justify-content: flex-end !important;
}

.vision-card h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

    .vision-card h4 svg {
        width: 32px;
        height: 32px;
        stroke-width: 2.5;
        color: #4f46e5;
        background: rgba(79,70,229,0.1);
        padding: 8px;
        border-radius: 10px;
    }
.footer-text-fix {
    font-size: 16px !important;
}

@media (max-width: 768px) {
    .footer-text-fix {
        font-size: 12px !important;
    }
    .f-m{
        margin-top:25px;
    }
    .rrr{
        margin-top:-25px !important
    }
}