/* ===================================
CRYPTO HERO SECTION CSS START
QLEVIQ STYLE REDESIGN
=================================== */

.digi-crypto-banner-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 90px;
    background: #081420;
    z-index: 1;
}

.digi-crypto-grid-shape {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
    z-index: -1;
}

.digi-crypto-banner-content {
    padding-right: 40px;
}

.digi-crypto-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #7dd3fc;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    position: relative;
    padding-left: 24px;
}

.digi-crypto-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c2ff, #5b5fff);
    box-shadow: 0 0 20px rgba(0, 194, 255, 0.5);
}

.digi-crypto-banner-content h1 {
    font-size: 48px;
    line-height: 1.14;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.digi-crypto-banner-content p {
    color: #9eb4c7;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.digi-crypto-last-text {
    margin-bottom: 0;
}

.digi-crypto-banner-btns {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 42px;
    flex-wrap: wrap;
}

.digi-crypto-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 56px;
    padding: 0 34px;
    border-radius: 14px;
    background: linear-gradient(135deg, #5b5fff, #00c2ff);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    transition: 0.4s ease;
    box-shadow: 0 14px 35px rgba(0, 194, 255, 0.18);
}

.digi-crypto-main-btn:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 194, 255, 0.25);
}

.digi-crypto-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 56px;
    padding: 0 34px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: #dce7f3;
    font-size: 15px;
    font-weight: 500;
    transition: 0.4s ease;
}

.digi-crypto-outline-btn:hover {
    background: #fff;
    color: #081420;
    transform: translateY(-5px);
}

/* RIGHT SIDE */

.digi-crypto-dashboard-area {
    position: relative;
    padding-left: 40px;
}

.digi-dashboard-card {
    position: relative;
    background: rgba(14, 28, 43, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 26px;
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    transition: 0.5s ease;
}

.digi-dashboard-card:hover {
    transform: translateY(-8px);
}

.digi-dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.digi-dashboard-box {
    border-radius: 22px;
    padding: 28px;
    transition: 0.4s ease;
}

.digi-dashboard-box:hover {
    transform: translateY(-4px);
}

.digi-box-one {
    background: linear-gradient(135deg, #13283c, #173d58);
}

.digi-box-two {
    background: linear-gradient(135deg, #1b2342, #1d3563);
}

.digi-dashboard-box h5 {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 14px;
}

.digi-dashboard-box p {
    color: #b4c7d7;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}

.digi-dashboard-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.digi-mini-card {
    height: 90px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.digi-mini-card span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.digi-mini-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #16293f, #1d3752);
}

.digi-crypto-circle {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(90px);
}

.digi-circle-one {
    width: 220px;
    height: 220px;
    background: rgba(0, 194, 255, 0.18);
    top: -40px;
    right: 40px;
}

.digi-circle-two {
    width: 180px;
    height: 180px;
    background: rgba(91, 95, 255, 0.2);
    bottom: 20px;
    left: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1199px) {
    .digi-crypto-banner-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    .digi-crypto-banner-section {
        padding: 100px 0 90px;
    }

    .digi-crypto-banner-content {
        padding-right: 0;
        text-align: center;
    }

    .digi-crypto-banner-btns {
        justify-content: center;
    }

    .digi-crypto-dashboard-area {
        padding-left: 0;
        margin-top: 20px;
    }

    .digi-crypto-banner-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .digi-crypto-banner-section {
        padding: 85px 0 80px;
    }

    .digi-crypto-banner-content h1 {
        font-size: 34px;
        line-height: 1.3;
    }

    .digi-crypto-banner-content p {
        font-size: 16px;
    }

    .digi-dashboard-card {
        padding: 20px;
    }

    .digi-dashboard-box {
        padding: 22px;
    }

    .digi-dashboard-mini-grid {
        grid-template-columns: 1fr;
    }

    .digi-mini-card {
        height: 75px;
    }
}

/* ===================================
CRYPTO HERO SECTION CSS END
=================================== */
/* ===================================
BLOCKCHAIN SOLUTIONS SECTION CSS START
=================================== */

.digi-blockchain-solutions-section {
    position: relative;
    padding: 80px 0 90px;
    background: #f4f8fb;
    overflow: hidden;
}

.digi-blockchain-left-area {
    padding-right: 35px;
}

.digi-blockchain-small-title {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #2667ff;
    letter-spacing: 0.4px;
    margin-bottom: 22px;
    padding-left: 18px;
}

.digi-blockchain-small-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2667ff;
    transform: translateY(-50%);
}

.digi-blockchain-left-area h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
    color: #0d1b2a;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.digi-blockchain-left-area p {
    color: #66788a;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.digi-blockchain-last-para {
    margin-bottom: 0;
}

/* RIGHT GRID */

.digi-blockchain-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.digi-blockchain-service-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 38px 34px;
    transition: 0.45s ease;
    border: 1px solid #e4edf5;
    overflow: hidden;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.digi-blockchain-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(38, 103, 255, 0.05),
        rgba(0, 195, 255, 0.05)
    );
    opacity: 0;
    transition: 0.45s ease;
}

.digi-blockchain-service-card:hover::before {
    opacity: 1;
}

.digi-blockchain-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(38, 103, 255, 0.12);
    box-shadow: 0 25px 50px rgba(18, 38, 63, 0.08);
}

.digi-active-card {
    background: linear-gradient(135deg, #0f1724, #13263f);
    border: none;
}

.digi-active-card h4 {
    color: #fff !important;
}

.digi-active-card .digi-blockchain-icon {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.digi-blockchain-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #eef5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2667ff;
    font-size: 24px;
    transition: 0.4s ease;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.digi-blockchain-service-card:hover .digi-blockchain-icon {
    transform: rotate(-8deg) scale(1.05);
}

.digi-blockchain-service-card h4 {
    position: relative;
    z-index: 2;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 500;
    color: #102132;
    margin-bottom: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1199px) {
    .digi-blockchain-left-area h2 {
        font-size: 42px;
    }

    .digi-blockchain-service-card h4 {
        font-size: 21px;
    }
}

@media (max-width: 991px) {
    .digi-blockchain-solutions-section {
        padding: 95px 0 100px;
    }

    .digi-blockchain-left-area {
        padding-right: 0;
        text-align: center;
    }

    .digi-blockchain-left-area h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .digi-blockchain-solutions-section {
        padding: 80px 0 85px;
    }

    .digi-blockchain-card-grid {
        grid-template-columns: 1fr;
    }

    .digi-blockchain-left-area h2 {
        font-size: 31px;
        line-height: 1.3;
    }

    .digi-blockchain-left-area p {
        font-size: 15px;
    }

    .digi-blockchain-service-card {
        min-height: auto;
        padding: 30px 24px;
    }

    .digi-blockchain-service-card h4 {
        font-size: 20px;
    }
}

/* ===================================
BLOCKCHAIN SOLUTIONS SECTION CSS END
=================================== */
/* ===================================
CRYPTO SERVICES SECTION CSS START
=================================== */

.digi-crypto-services-section {
    position: relative;
    padding: 80px 0 90px;
    background: #ffffff;
    overflow: hidden;
}

.digi-crypto-services-title {
    max-width: 760px;
    margin: 0 auto 70px;
}

.digi-crypto-services-subtitle {
    display: inline-block;
    font-size: 14px;
    color: #0f766e;
    letter-spacing: 0.4px;
    margin-bottom: 20px;
    padding: 10px 18px;
    border-radius: 50px;
    background: #ecfeff;
    border: 1px solid #cffafe;
}

.digi-crypto-services-title h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
    color: #101828;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.digi-crypto-services-title p {
    font-size: 17px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 0;
}

/* SERVICE BOX */

.digi-crypto-service-box {
    position: relative;
    height: 100%;
    padding: 36px 30px;
    border-radius: 24px;
    background: #f8fbfd;
    border: 1px solid #e8eef3;
    transition: 0.45s ease;
    overflow: hidden;
}

.digi-crypto-service-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00b4d8, #2563eb);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.45s ease;
}

.digi-crypto-service-box:hover::before {
    transform: scaleX(1);
}

.digi-crypto-service-box:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: #d9e6f2;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

/* .active-service-box{
    background: linear-gradient(135deg,#0f172a,#132238);
    border: none;
}

.active-service-box .digi-crypto-service-number{
    background: rgba(255,255,255,.08);
    color: #fff;
}

.active-service-box h4{
    color: #ffffff;
}

.active-service-box p{
    color: #c6d4e1;
} */

.digi-crypto-service-number {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0369a1;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: 0.4s ease;
}

.digi-crypto-service-box:hover .digi-crypto-service-number {
    transform: rotate(-8deg);
}

.digi-crypto-service-box h4 {
    font-size: 24px;
    line-height: 1.45;
    font-weight: 500;
    color: #101828;
    margin-bottom: 18px;
}

.digi-crypto-service-box p {
    font-size: 15px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1199px) {
    .digi-crypto-services-title h2 {
        font-size: 42px;
    }

    .digi-crypto-service-box h4 {
        font-size: 21px;
    }
}

@media (max-width: 991px) {
    .digi-crypto-services-section {
        padding: 100px 0 90px;
    }

    .digi-crypto-services-title {
        margin-bottom: 55px;
    }

    .digi-crypto-services-title h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .digi-crypto-services-section {
        padding: 80px 0 75px;
    }

    .digi-crypto-services-title h2 {
        font-size: 31px;
        line-height: 1.3;
    }

    .digi-crypto-services-title p {
        font-size: 15px;
    }

    .digi-crypto-service-box {
        padding: 30px 24px;
    }

    .digi-crypto-service-box h4 {
        font-size: 20px;
    }
}

/* ===================================
CRYPTO SERVICES SECTION CSS END
=================================== */

/* ===================================
BLOCKCHAIN NETWORKS SECTION CSS START
=================================== */

.digi-supported-network-section {
    position: relative;
    padding: 80px 0 90px;
    background: linear-gradient(180deg, #f9fbfc 0%, #eef5fb 100%);
    overflow: hidden;
}

.digi-network-content-area {
    padding-right: 40px;
}

.digi-network-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #2563eb;
    margin-bottom: 22px;
    letter-spacing: 0.3px;
}

.digi-network-subtitle::before {
    content: "";
    width: 32px;
    height: 1px;
    background: #2563eb;
}

.digi-network-content-area h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.digi-network-content-area p {
    font-size: 16px;
    line-height: 1.95;
    color: #64748b;
    margin-bottom: 22px;
}

.digi-network-last-para {
    margin-bottom: 0;
}

/* RIGHT SIDE */

.digi-network-main-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.digi-network-card {
    position: relative;
    padding: 38px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: 0.45s ease;
    overflow: hidden;
}

.digi-network-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #2563eb, #06b6d4);
}

.digi-network-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.digi-token-card {
    background: linear-gradient(135deg, #0f172a, #132238);
    border: none;
}

.digi-token-card h4 {
    color: #ffffff !important;
}

.digi-token-card .digi-network-tags span {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.06);
    color: #d8e5f1;
}

.digi-token-card .digi-network-icon {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.digi-network-card-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.digi-network-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 26px;
    flex-shrink: 0;
    transition: 0.4s ease;
}

.digi-network-card:hover .digi-network-icon {
    transform: rotate(-6deg);
}

.digi-network-card h4 {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 0;
}

.digi-network-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.digi-network-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 20px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 15px;
    font-weight: 500;
    transition: 0.35s ease;
}

.digi-network-tags span:hover {
    transform: translateY(-4px);
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1199px) {
    .digi-network-content-area h2 {
        font-size: 42px;
    }

    .digi-network-card h4 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .digi-supported-network-section {
        padding: 100px 0 95px;
    }

    .digi-network-content-area {
        padding-right: 0;
        text-align: center;
    }

    .digi-network-subtitle {
        justify-content: center;
    }

    .digi-network-card {
        padding: 32px;
    }
}

@media (max-width: 767px) {
    .digi-supported-network-section {
        padding: 80px 0 75px;
    }

    .digi-network-content-area h2 {
        font-size: 31px;
        line-height: 1.3;
    }

    .digi-network-content-area p {
        font-size: 15px;
    }

    .digi-network-card {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .digi-network-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .digi-network-card h4 {
        font-size: 22px;
    }

    .digi-network-tags {
        gap: 12px;
    }

    .digi-network-tags span {
        width: 100%;
        justify-content: flex-start;
        font-size: 14px;
    }
}

/* ===================================
BLOCKCHAIN NETWORKS SECTION CSS END
=================================== */
/* ===================================
CRYPTO FEATURES SECTION CSS START
=================================== */

.digi-crypto-feature-section {
    position: relative;
    padding: 80px 0 90px;
    background: linear-gradient(135deg, #fff9f3 0%, #fffdf9 100%);
    overflow: hidden;
}

/* LEFT VISUAL */

.digi-feature-visual-wrapper {
    position: relative;
    padding-right: 45px;
}

.digi-feature-main-panel {
    position: relative;
    background: #1f2937;
    border-radius: 30px;
    padding: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(31, 41, 55, 0.18);
}

.digi-feature-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}

.digi-feature-topbar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.digi-feature-chart-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.digi-feature-stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    min-height: 170px;
    padding: 30px;
    transition: 0.45s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.digi-feature-stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.09);
}

.active-stat-card {
    background: linear-gradient(135deg, #f59e0b, #fb7185);
    border: none;
}

.digi-feature-stat-card h4 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
}

.digi-feature-stat-card p {
    font-size: 15px;
    color: #d8dee6;
    margin-bottom: 0;
}

.digi-feature-floating-card {
    position: absolute;
    padding: 16px 22px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    font-size: 15px;
    color: #1f2937;
    font-weight: 500;
    animation: digiFloatFeature 4s ease-in-out infinite;
}

.digi-card-left {
    left: -10px;
    bottom: -20px;
}

.digi-card-right {
    right: 10px;
    top: 25px;
    animation-delay: 1.5s;
}

@keyframes digiFloatFeature {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* RIGHT CONTENT */

.digi-feature-content-area {
    padding-left: 20px;
}

.digi-feature-subtitle {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: #fff1df;
    color: #c2410c;
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
}

.digi-feature-content-area h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.digi-feature-content-area p {
    font-size: 16px;
    line-height: 1.9;
    color: #5b6472;
    margin-bottom: 0;
}

.digi-feature-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 40px 0;
}

.digi-feature-list-item {
    position: relative;
    padding: 18px 22px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #f1e5d6;
    color: #374151;
    font-size: 15px;
    line-height: 1.7;
    transition: 0.4s ease;
}

.digi-feature-list-item:hover {
    transform: translateY(-5px);
    border-color: #f59e0b;
    box-shadow: 0 14px 35px rgba(245, 158, 11, 0.12);
}

.digi-feature-bottom-text {
    margin-top: 10px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1199px) {
    .digi-feature-content-area h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .digi-crypto-feature-section {
        padding: 100px 0 95px;
    }

    .digi-feature-visual-wrapper {
        padding-right: 0;
    }

    .digi-feature-content-area {
        padding-left: 0;
        text-align: center;
    }

    .digi-feature-content-area h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .digi-crypto-feature-section {
        padding: 80px 0 75px;
    }

    .digi-feature-chart-grid {
        grid-template-columns: 1fr;
    }

    .digi-feature-list-grid {
        grid-template-columns: 1fr;
    }

    .digi-feature-content-area h2 {
        font-size: 31px;
        line-height: 1.3;
    }

    .digi-feature-content-area p {
        font-size: 15px;
    }

    .digi-feature-main-panel {
        padding: 22px;
    }

    .digi-feature-stat-card {
        min-height: 140px;
        padding: 24px;
    }

    .digi-feature-floating-card {
        position: relative;
        display: inline-block;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 18px;
    }
}

/* ===================================
CRYPTO FEATURES SECTION CSS END
=================================== */
/* ===================================
CRYPTO MLM SECTION CSS START
=================================== */

.digi-crypto-mlm-section {
    position: relative;
    padding: 80px 0 90px;
    background: #111827;
    overflow: hidden;
}

/* TOP HEADING */

.digi-crypto-mlm-heading {
    max-width: 760px;
    margin: 0 auto 70px;
}

.digi-crypto-mlm-subtitle {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(16, 185, 129, 0.12);
    color: #6ee7b7;
    font-size: 14px;
    margin-bottom: 22px;
    letter-spacing: 0.3px;
}

.digi-crypto-mlm-heading h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.digi-crypto-mlm-heading p {
    font-size: 17px;
    line-height: 1.9;
    color: #9ca3af;
    margin-bottom: 0;
}

/* LEFT GRID */

.digi-crypto-mlm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.digi-mlm-feature-card {
    display: flex;
    align-items: center;
    gap: 22px;
    background: #1b2535;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 28px;
    transition: 0.45s ease;
    min-height: 145px;
}

.digi-mlm-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.25);
    background: #1f2c3f;
}

.active-mlm-card {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
}

.active-mlm-card .digi-mlm-icon-wrap {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.active-mlm-card h4 {
    color: #ffffff;
}

.digi-mlm-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34d399;
    font-size: 28px;
    flex-shrink: 0;
    transition: 0.4s ease;
}

.digi-mlm-feature-card:hover .digi-mlm-icon-wrap {
    transform: rotate(-8deg);
}

.digi-mlm-content h4 {
    font-size: 23px;
    line-height: 1.5;
    font-weight: 500;
    color: #f3f4f6;
    margin-bottom: 0;
}

/* RIGHT SIDEBAR */

.digi-crypto-mlm-sidebar {
    padding-left: 35px;
}

.digi-mlm-sidebar-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.digi-mlm-sidebar-top {
    display: flex;
    gap: 8px;
    margin-bottom: 35px;
}

.digi-mlm-sidebar-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d1d5db;
}

.digi-mlm-progress-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.digi-mlm-progress-item {
    width: 100%;
}

.digi-mlm-progress-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.digi-mlm-progress-title span {
    font-size: 15px;
    color: #374151;
    font-weight: 500;
}

.digi-mlm-progress-bar {
    width: 100%;
    height: 10px;
    background: #edf2f7;
    border-radius: 30px;
    overflow: hidden;
}

.digi-mlm-bar-fill {
    height: 100%;
    border-radius: 30px;
}

.fill-one {
    width: 98%;
    background: linear-gradient(90deg, #10b981, #34d399);
}

.fill-two {
    width: 95%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.fill-three {
    width: 99%;
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

.digi-mlm-sidebar-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #6b7280;
    margin-top: 38px;
    margin-bottom: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1199px) {
    .digi-crypto-mlm-heading h2 {
        font-size: 42px;
    }

    .digi-mlm-content h4 {
        font-size: 21px;
    }
}

@media (max-width: 991px) {
    .digi-crypto-mlm-section {
        padding: 100px 0 95px;
    }

    .digi-crypto-mlm-heading {
        margin-bottom: 55px;
    }

    .digi-crypto-mlm-heading h2 {
        font-size: 38px;
    }

    .digi-crypto-mlm-sidebar {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .digi-crypto-mlm-section {
        padding: 80px 0 75px;
    }

    .digi-crypto-mlm-grid {
        grid-template-columns: 1fr;
    }

    .digi-crypto-mlm-heading h2 {
        font-size: 31px;
        line-height: 1.3;
    }

    .digi-crypto-mlm-heading p {
        font-size: 15px;
    }

    .digi-mlm-feature-card {
        padding: 24px;
        min-height: auto;
    }

    .digi-mlm-content h4 {
        font-size: 19px;
    }

    .digi-mlm-sidebar-card {
        padding: 28px 24px;
    }
}

/* ===================================
CRYPTO MLM SECTION CSS END
=================================== */

/* ===================================
DEFI & DAPP SECTION CSS START
=================================== */

.digi-defi-dapp-section {
    position: relative;
    padding: 80px;
    background: linear-gradient(135deg, #f3fff9 0%, #f7fafc 100%);
    overflow: hidden;
}

/* LEFT CONTENT */

.digi-defi-content-area {
    padding-right: 45px;
}

.digi-defi-subtitle {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: #dcfce7;
    color: #15803d;
    font-size: 14px;
    margin-bottom: 22px;
    letter-spacing: 0.3px;
}

.digi-defi-content-area h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 26px;
    letter-spacing: -0.5px;
}

.digi-defi-content-area p {
    font-size: 16px;
    line-height: 1.95;
    color: #5f6c7b;
    margin-bottom: 0;
}

.digi-defi-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px 0;
}

.digi-defi-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: #ffffff;
    border: 1px solid #e7efe9;
    border-radius: 18px;
    transition: 0.4s ease;
}

.digi-defi-list-item:hover {
    transform: translateX(8px);
    border-color: #16a34a;
    box-shadow: 0 14px 35px rgba(22, 163, 74, 0.08);
}

.digi-defi-check {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #ecfdf3;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.digi-defi-list-item span:last-child {
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.digi-defi-bottom-text {
    margin-top: 8px;
}

/* RIGHT VISUAL */

.digi-defi-visual-area {
    padding-left: 35px;
}

.digi-defi-dashboard-card {
    position: relative;
    min-height: 540px;
    border-radius: 36px;
    background: linear-gradient(135deg, #0f5132, #14532d);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 70px rgba(20, 83, 45, 0.18);
}

.digi-defi-dashboard-card::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.12);
}

.digi-defi-dashboard-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.08);
}

.digi-defi-center-card {
    position: relative;
    z-index: 2;
    width: 320px;
    padding: 42px 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    backdrop-filter: blur(10px);
}

.digi-defi-center-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    color: #86efac;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.digi-defi-center-card h4 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 18px;
}

.digi-defi-center-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #d5e6da;
    margin-bottom: 0;
}

.digi-defi-mini-card {
    position: absolute;
    width: 125px;
    height: 110px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    transition: 0.45s ease;
    animation: digiDefiFloat 4s ease-in-out infinite;
}

.digi-defi-mini-card span {
    font-size: 18px;
    color: #14532d;
    font-weight: 500;
    margin-bottom: 6px;
}

.digi-defi-mini-card small {
    color: #64748b;
    font-size: 13px;
}

.card-one {
    left: 40px;
    top: 60px;
}

.card-two {
    right: 40px;
    top: 80px;
    animation-delay: 1s;
}

.card-three {
    left: 60px;
    bottom: 70px;
    animation-delay: 2s;
}

.card-four {
    right: 40px;
    bottom: 60px;
    animation-delay: 3s;
}

@keyframes digiDefiFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1199px) {
    .digi-defi-content-area h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .digi-defi-dapp-section {
        padding: 95px 0 105px;
    }

    .digi-defi-content-area {
        padding-right: 0;
        text-align: center;
    }

    .digi-defi-visual-area {
        padding-left: 0;
    }

    .digi-defi-content-area h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .digi-defi-dapp-section {
        padding: 80px 0 85px;
    }

    .digi-defi-content-area h2 {
        font-size: 31px;
        line-height: 1.3;
    }

    .digi-defi-content-area p {
        font-size: 15px;
    }

    .digi-defi-dashboard-card {
        min-height: auto;
        padding: 120px 20px;
    }

    .digi-defi-center-card {
        width: 100%;
        padding: 34px 24px;
    }

    .digi-defi-mini-card {
        width: 110px;
        height: 95px;
    }

    .card-one {
        left: 10px;
        top: 25px;
    }

    .card-two {
        right: 10px;
        top: 35px;
    }

    .card-three {
        left: 10px;
        bottom: 20px;
    }

    .card-four {
        right: 10px;
        bottom: 20px;
    }
}

/* ===================================
DEFI & DAPP SECTION CSS END
=================================== */

/* ===================================
BLOCKCHAIN INDUSTRIES SECTION CSS START
=================================== */

.digi-blockchain-industries-section {
    position: relative;
    padding: 80px;
    background: #f8f5ff;
    overflow: hidden;
}

/* HEADER */

.digi-industries-header {
    margin-bottom: 70px;
}

.digi-industries-title-area {
    padding-right: 50px;
}

.digi-industries-subtitle {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: #ede9fe;
    color: #6d28d9;
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 22px;
}

.digi-industries-title-area h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
    color: #1e1b4b;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.digi-industries-text {
    padding-left: 20px;
}

.digi-industries-text p {
    font-size: 16px;
    line-height: 1.95;
    color: #6b7280;
    margin-bottom: 0;
}

/* GRID */

/* GRID */

.digi-industries-main-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

/* TOP ROW */

.top-grid-box {
    grid-column: span 6;
    min-height: 300px;
}

/* MIDDLE ROW */

.middle-grid-box {
    grid-column: span 4;
    min-height: 280px;
}

/* LAST FULL WIDTH CARD */

.middle-grid-box:last-child {
    grid-column: span 12;
    min-height: auto;
}

/* ICON */

.digi-industry-icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    background: #f5f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #6d28d9;
    margin-bottom: 34px;
    transition: 0.4s ease;
}

.dark-industry-box .digi-industry-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .top-grid-box,
    .middle-grid-box,
    .middle-grid-box:last-child {
        grid-column: span 12;
        min-height: auto;
    }
}
/* BOX */

.digi-industry-box {
    position: relative;
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid #ece7ff;
    transition: 0.45s ease;
    overflow: hidden;
}

.digi-industry-box::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.05);
    top: -60px;
    right: -60px;
    transition: 0.45s ease;
}

.digi-industry-box:hover::before {
    transform: scale(1.2);
}

.digi-industry-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(109, 40, 217, 0.08);
    border-color: rgba(109, 40, 217, 0.18);
}

.large-box {
    grid-column: span 5;
    min-height: 300px;
}

.wide-box {
    grid-column: span 7;
}

.digi-industry-box:not(.large-box):not(.wide-box) {
    grid-column: span 4;
}

.dark-industry-box {
    background: linear-gradient(135deg, #312e81, #4c1d95);
    border: none;
}

.dark-industry-box::before {
    background: rgba(255, 255, 255, 0.05);
}

.dark-industry-box h4 {
    color: #ffffff !important;
}

.dark-industry-box p {
    color: #ddd6fe !important;
}

.dark-industry-box .digi-industry-icon {
    background: rgba(255, 255, 255, 0.1);
}

/* CONTENT */

.digi-industry-icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    background: #f5f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 34px;
    transition: 0.4s ease;
}

.digi-industry-box:hover .digi-industry-icon {
    transform: rotate(-8deg) scale(1.05);
}

.digi-industry-content h4 {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 18px;
}

.digi-industry-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
    margin-bottom: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1199px) {
    .digi-industries-title-area h2 {
        font-size: 42px;
    }

    .digi-industry-content h4 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .digi-blockchain-industries-section {
        padding: 100px 0 95px;
    }

    .digi-industries-header {
        margin-bottom: 55px;
    }

    .digi-industries-title-area {
        padding-right: 0;
        margin-bottom: 25px;
    }

    .digi-industries-text {
        padding-left: 0;
    }

    .digi-industries-title-area h2 {
        font-size: 38px;
    }

    .large-box,
    .wide-box,
    .digi-industry-box:not(.large-box):not(.wide-box) {
        grid-column: span 12;
    }
}

@media (max-width: 767px) {
    .digi-blockchain-industries-section {
        padding: 80px 0 75px;
    }

    .digi-industries-title-area h2 {
        font-size: 31px;
        line-height: 1.3;
    }

    .digi-industries-text p {
        font-size: 15px;
    }

    .digi-industry-box {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .digi-industry-content h4 {
        font-size: 21px;
    }

    .large-box {
        min-height: auto;
    }
}

/* ===================================
BLOCKCHAIN INDUSTRIES SECTION CSS END
=================================== */
/* ===================================
BLOCKCHAIN SECURITY SECTION CSS START
=================================== */

.digi-blockchain-security-section{
    position: relative;
    padding: 80px;
    background: linear-gradient(135deg,#fff7ed 0%, #fffbf7 100%);
    overflow: hidden;
}

/* LEFT VISUAL */

.digi-security-visual-area{
    position: relative;
    padding-right: 45px;
}

.digi-security-main-card{
    position: relative;
    padding: 55px 45px;
    border-radius: 36px;
    background: linear-gradient(135deg,#1e293b,#0f172a);
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(15,23,42,.18);
    z-index: 2;
}

.digi-security-glow{
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(249,115,22,.12);
    top: -120px;
    right: -80px;
    filter: blur(10px);
}

.digi-security-lock-wrap{
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 32px;
    background: linear-gradient(135deg,#f97316,#fb923c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 38px;
    z-index: 2;
}

.digi-security-main-card h4{
    position: relative;
    font-size: 34px;
    line-height: 1.3;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    z-index: 2;
}

.digi-security-main-card p{
    position: relative;
    font-size: 16px;
    line-height: 1.9;
    color: #cbd5e1;
    margin-bottom: 40px;
    z-index: 2;
}


.digi-security-status-card{
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 22px;
    padding: 24px 18px;
    text-align: center;
    transition: .4s ease;
}

.digi-security-status-card:hover{
    transform: translateY(-6px);
    background: rgba(255,255,255,.09);
}

.digi-security-status-card span{
    display: block;
    font-size: 22px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
}

.digi-security-status-card small{
    color: #cbd5e1;
    font-size: 13px;
}

/* FLOATING TAGS */



@keyframes digiSecurityFloat{

    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-10px);
    }

    100%{
        transform: translateY(0);
    }
}

/* RIGHT CONTENT */

.digi-security-content-area{
    padding-left: 20px;
}

.digi-security-subtitle{
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: #ffedd5;
    color: #ea580c;
    font-size: 14px;
    letter-spacing: .3px;
    margin-bottom: 22px;
}

.digi-security-content-area h2{
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 28px;
    letter-spacing: -.5px;
}

.digi-security-content-area p{
    font-size: 16px;
    line-height: 1.95;
    color: #64748b;
    margin-bottom: 0;
}

.digi-security-feature-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin: 42px 0;
}

.digi-security-feature-item{
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #fde7d8;
    border-radius: 20px;
    transition: .45s ease;
}

.digi-security-feature-item:hover{
    transform: translateY(-6px);
    border-color: #f97316;
    box-shadow: 0 18px 40px rgba(249,115,22,.10);
}

.digi-security-feature-icon{
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #fff7ed;
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: .4s ease;
}

.digi-security-feature-item:hover .digi-security-feature-icon{
    transform: rotate(-8deg);
}

.digi-security-feature-content h5{
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0;
}

.digi-security-bottom-text{
    margin-top: 6px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1199px){

    .digi-security-content-area h2{
        font-size: 42px;
    }
}

@media(max-width:991px){

    .digi-blockchain-security-section{
        padding: 100px 0 95px;
    }

    .digi-security-visual-area{
        padding-right: 0;
    }

    .digi-security-content-area{
        padding-left: 0;
        text-align: center;
    }

    .digi-security-content-area h2{
        font-size: 38px;
    }
}

@media(max-width:767px){

    .digi-blockchain-security-section{
        padding: 80px 0 75px;
    }

    .digi-security-content-area h2{
        font-size: 31px;
        line-height: 1.3;
    }

    .digi-security-content-area p{
        font-size: 15px;
    }

    .digi-security-feature-grid{
        grid-template-columns: 1fr;
    }
    .digi-security-main-card{
        padding: 38px 24px;
    }

    .digi-security-main-card h4{
        font-size: 28px;
    }
}

/* ===================================
BLOCKCHAIN SECURITY SECTION CSS END
=================================== */

/* ===================================
WHY CHOOSE DIGIATURE SECTION CSS START
=================================== */

.digi-why-choose-crypto-section{
    position: relative;
    padding: 80px;
    background: linear-gradient(135deg,#faf7ff 0%, #fffefe 100%);
    overflow: hidden;
}

/* HEADER */

.digi-why-crypto-header{
    max-width: 820px;
    margin: 0 auto 75px;
}

.digi-why-crypto-subtitle{
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: #f3e8ff;
    color: #7e22ce;
    font-size: 14px;
    letter-spacing: .3px;
    margin-bottom: 22px;
}

.digi-why-crypto-header h2{
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
    color: #18181b;
    margin-bottom: 24px;
    letter-spacing: -.5px;
}

.digi-why-crypto-header p{
    font-size: 16px;
    line-height: 1.95;
    color: #6b7280;
    margin-bottom: 0;
}

/* MAIN WRAPPER */

.digi-why-crypto-wrapper{
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT PANEL */

.digi-why-left-card{
    position: sticky;
    top: 120px;
    padding: 45px;
    border-radius: 34px;
    background: linear-gradient(135deg,#18181b,#27272a);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(24,24,27,.16);
}

.digi-why-left-card::before{
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(168,85,247,.10);
    top: -100px;
    right: -80px;
}

.digi-why-badge{
    position: relative;
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    color: #e9d5ff;
    font-size: 13px;
    margin-bottom: 30px;
    z-index: 2;
}

.digi-why-left-card h3{
    position: relative;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 24px;
    z-index: 2;
}

.digi-why-left-card p{
    position: relative;
    font-size: 16px;
    line-height: 1.9;
    color: #d4d4d8;
    margin-bottom: 40px;
    z-index: 2;
}

/* PROGRESS */

.digi-why-progress-area{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    z-index: 2;
}

.digi-why-progress-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.digi-why-progress-title span{
    color: #f4f4f5;
    font-size: 15px;
    font-weight: 500;
}

.digi-why-progress-bar{
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,.08);
    border-radius: 30px;
    overflow: hidden;
}

.digi-why-fill{
    height: 100%;
    border-radius: 30px;
}

.fill-purple{
    width: 98%;
    background: linear-gradient(90deg,#a855f7,#c084fc);
}

.fill-pink{
    width: 96%;
    background: linear-gradient(90deg,#ec4899,#f472b6);
}

.fill-cyan{
    width: 97%;
    background: linear-gradient(90deg,#06b6d4,#67e8f9);
}

/* RIGHT CARDS */

.digi-why-feature-card{
    position: relative;
    min-height: 250px;
    padding: 35px;
    border-radius: 28px;
    overflow: hidden;
    transition: .45s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.digi-why-feature-card:hover{
    transform: translateY(-10px);
}

.card-purple{
    background: #f5f3ff;
}

.card-pink{
    background: #fdf2f8;
}

.card-dark{
    background: #18181b;
}

.card-cyan{
    background: #ecfeff;
}

.card-light{
    background: #fafaf9;
}

.card-orange{
    background: #fff7ed;
}

.card-dark h4{
    color: #ffffff !important;
}

.card-dark .digi-why-feature-icon{
    background: rgba(255,255,255,.08);
    color: #ffffff;
}

/* ICON */

.digi-why-feature-icon{
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: rgba(255,255,255,.65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #18181b;
    transition: .4s ease;
}

.digi-why-feature-card:hover .digi-why-feature-icon{
    transform: rotate(-8deg) scale(1.05);
}

.digi-why-feature-card h4{
    font-size: 24px;
    line-height: 1.55;
    font-weight: 500;
    color: #27272a;
    margin-bottom: 0;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1199px){

    .digi-why-crypto-header h2{
        font-size: 42px;
    }

    .digi-why-left-card h3{
        font-size: 31px;
    }

    .digi-why-feature-card h4{
        font-size: 21px;
    }
}

@media(max-width:991px){

    .digi-why-choose-crypto-section{
        padding: 100px 0 95px;
    }

    .digi-why-crypto-wrapper{
        grid-template-columns: 1fr;
    }

    .digi-why-left-card{
        position: relative;
        top: auto;
    }

    .digi-why-crypto-header{
        margin-bottom: 55px;
    }

    .digi-why-crypto-header h2{
        font-size: 38px;
    }
}

@media(max-width:767px){

    .digi-why-choose-crypto-section{
        padding: 80px 0 75px;
    }

    .digi-why-crypto-header h2{
        font-size: 31px;
        line-height: 1.3;
    }

    .digi-why-crypto-header p{
        font-size: 15px;
    }

    .digi-why-left-card{
        padding: 35px 24px;
    }

    .digi-why-left-card h3{
        font-size: 27px;
    }

    .digi-why-feature-card{
        min-height: auto;
        padding: 28px 24px;
    }

    .digi-why-feature-card h4{
        font-size: 20px;
    }
}

/* ===================================
WHY CHOOSE DIGIATURE SECTION CSS END
=================================== */
/* ===================================
FUTURE OF CRYPTO & WEB3 SECTION CSS START
=================================== */

.digi-future-web3-section{
    position: relative;
    padding: 80px;
    background: linear-gradient(135deg,#eef8ff 0%, #f8fcff 100%);
    overflow: hidden;
}

/* LEFT CONTENT */

.digi-future-content-area{
    padding-right: 35px;
}

.digi-future-subtitle{
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: #dbeafe;
    color: #2563eb;
    font-size: 14px;
    letter-spacing: .3px;
    margin-bottom: 22px;
}

.digi-future-content-area h2{
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 26px;
    letter-spacing: -.5px;
}

.digi-future-content-area p{
    font-size: 16px;
    line-height: 1.95;
    color: #64748b;
    margin-bottom: 0;
}

/* TREND LIST */

.digi-future-trend-list{
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 42px 0;
}

.digi-future-trend-item{
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #e2ecff;
    transition: .45s ease;
}

.digi-future-trend-item:hover{
    transform: translateX(10px);
    box-shadow: 0 18px 40px rgba(37,99,235,.08);
}

.digi-future-trend-icon{
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: .4s ease;
}

.digi-future-trend-item:hover .digi-future-trend-icon{
    transform: rotate(-8deg);
}

.icon-purple{
    background: #f3e8ff;
    color: #9333ea;
}

.icon-cyan{
    background: #ecfeff;
    color: #0891b2;
}

.icon-orange{
    background: #fff7ed;
    color: #ea580c;
}

.icon-green{
    background: #ecfdf5;
    color: #16a34a;
}

.icon-pink{
    background: #fdf2f8;
    color: #db2777;
}

.digi-future-trend-content h5{
    font-size: 19px;
    line-height: 1.6;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0;
}

/* BOTTOM BOX */

.digi-future-bottom-box{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    border-radius: 28px;
    margin-top: 10px;
}

.digi-future-bottom-icon{
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
}

.digi-future-bottom-box p{
    color: #dbeafe;
}

/* RIGHT VISUAL */

.digi-future-visual-area{
    display: flex;
    justify-content: center;
    align-items: center;
}

.digi-future-main-circle{
    position: relative;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    border: 1px dashed rgba(37,99,235,.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.digi-future-main-circle::before{
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px dashed rgba(37,99,235,.12);
}

.digi-future-main-circle::after{
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px dashed rgba(37,99,235,.10);
}

/* CENTER */

.digi-future-center-box{
    position: relative;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: linear-gradient(135deg,#2563eb,#1e40af);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 30px 70px rgba(37,99,235,.18);
    z-index: 2;
}

.digi-future-center-icon{
    width: 85px;
    height: 85px;
    border-radius: 24px;
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 22px;
}

.digi-future-center-box h4{
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 10px;
}

.digi-future-center-box span{
    font-size: 15px;
    color: #dbeafe;
}

/* FLOATING */

.digi-future-floating-card{
    position: absolute;
    min-width: 165px;
    padding: 18px 20px;
    border-radius: 22px;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 18px 45px rgba(15,23,42,.08);
    animation: digiFutureFloat 4s ease-in-out infinite;
}

.digi-future-floating-card i{
    font-size: 22px;
    color: #2563eb;
}

.digi-future-floating-card span{
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
}

.card-ai{
    top: 40px;
    left: 20px;
}

.card-rwa{
    top: 70px;
    right: 0;
    animation-delay: 1s;
}

.card-defi{
    bottom: 70px;
    left: 0;
    animation-delay: 2s;
}

.card-id{
    bottom: 30px;
    right: 20px;
    animation-delay: 3s;
}

@keyframes digiFutureFloat{

    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-10px);
    }

    100%{
        transform: translateY(0);
    }
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1199px){

    .digi-future-content-area h2{
        font-size: 42px;
    }

    .digi-future-main-circle{
        width: 500px;
        height: 500px;
    }
}

@media(max-width:991px){

    .digi-future-web3-section{
        padding: 105px 0 95px;
    }

    .digi-future-content-area{
        padding-right: 0;
        text-align: center;
    }

    .digi-future-content-area h2{
        font-size: 38px;
    }
}

@media(max-width:767px){

    .digi-future-web3-section{
        padding: 80px 0 75px;
    }

    .digi-future-content-area h2{
        font-size: 31px;
        line-height: 1.3;
    }

    .digi-future-content-area p{
        font-size: 15px;
    }

    .digi-future-main-circle{
        width: 100%;
        height: auto;
        border: none;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .digi-future-main-circle::before,
    .digi-future-main-circle::after{
        display: none;
    }

    .digi-future-center-box{
        width: 220px;
        height: 220px;
    }

    .digi-future-floating-card{
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        width: 100%;
        animation: none;
    }

    .digi-future-trend-item{
        padding: 18px;
    }

    .digi-future-trend-content h5{
        font-size: 17px;
    }

    .digi-future-bottom-box{
        flex-direction: column;
    }
}

/* ===================================
FUTURE OF CRYPTO & WEB3 SECTION CSS END
=================================== */

/* ===================================
CRYPTO CTA SECTION CSS START
=================================== */

.digi-crypto-cta-section{
    position: relative;
    padding: 80px;
    background: #ffffff;
    overflow: hidden;
}

/* WRAPPER */

.digi-crypto-cta-wrapper{
    position: relative;
    padding: 75px 70px;
    border-radius: 42px;
    background: linear-gradient(135deg,#0f172a 0%, #111827 45%, #1e293b 100%);
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(15,23,42,.14);
}

/* SHAPES */

.digi-crypto-cta-shape{
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.shape-one{
    width: 320px;
    height: 320px;
    background: rgba(59,130,246,.12);
    top: -120px;
    left: -80px;
}

.shape-two{
    width: 260px;
    height: 260px;
    background: rgba(168,85,247,.12);
    bottom: -100px;
    right: -70px;
}

/* CONTENT */

.digi-crypto-cta-content{
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.digi-crypto-cta-subtitle{
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    color: #c4b5fd;
    font-size: 14px;
    letter-spacing: .3px;
    margin-bottom: 24px;
}

.digi-crypto-cta-content h2{
    font-size: 54px;
    line-height: 1.18;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 28px;
    letter-spacing: -.8px;
}

.digi-crypto-cta-content p{
    font-size: 17px;
    line-height: 1.95;
    color: #cbd5e1;
    margin-bottom: 0;
}

/* BOTTOM */

.digi-crypto-cta-bottom{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 38px;
}

.digi-crypto-cta-icon{
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg,#8b5cf6,#6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
}

.digi-crypto-cta-bottom span{
    font-size: 16px;
    line-height: 1.9;
    color: #e2e8f0;
    padding-top: 5px;
}

/* CTA CARD */

.digi-crypto-cta-card{
    position: relative;
    z-index: 2;
    padding: 42px 35px;
    border-radius: 32px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    transition: .45s ease;
}

.digi-crypto-cta-card:hover{
    transform: translateY(-10px);
}

.digi-crypto-cta-card-icon{
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background: rgba(255,255,255,.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 32px;
}

.digi-crypto-cta-card h4{
    font-size: 30px;
    line-height: 1.35;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
}

.digi-crypto-cta-card p{
    font-size: 15px;
    line-height: 1.9;
    color: #cbd5e1;
    margin-bottom: 34px;
}

/* BUTTON */

.digi-crypto-main-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg,#8b5cf6,#6366f1);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: .4s ease;
}

.digi-crypto-main-btn i{
    transition: .4s ease;
}

.digi-crypto-main-btn:hover{
    transform: translateY(-4px);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(99,102,241,.24);
}

.digi-crypto-main-btn:hover i{
    transform: translateX(4px);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1199px){

    .digi-crypto-cta-content h2{
        font-size: 46px;
    }

    .digi-crypto-cta-card h4{
        font-size: 26px;
    }
}

@media(max-width:991px){

    .digi-crypto-cta-section{
        padding: 95px 0 105px;
    }

    .digi-crypto-cta-wrapper{
        padding: 60px 45px;
    }

    .digi-crypto-cta-content{
        padding-right: 0;
        text-align: center;
    }

    .digi-crypto-cta-bottom{
        justify-content: center;
    }

    .digi-crypto-cta-content h2{
        font-size: 40px;
    }
}

@media(max-width:767px){

    .digi-crypto-cta-section{
        padding: 80px 0 85px;
    }

    .digi-crypto-cta-wrapper{
        padding: 45px 24px;
        border-radius: 28px;
    }

    .digi-crypto-cta-content h2{
        font-size: 31px;
        line-height: 1.3;
    }

    .digi-crypto-cta-content p{
        font-size: 15px;
    }

    .digi-crypto-cta-bottom{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .digi-crypto-cta-card{
        padding: 34px 24px;
        border-radius: 24px;
    }

    .digi-crypto-cta-card h4{
        font-size: 24px;
    }

    .digi-crypto-main-btn{
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
CRYPTO CTA SECTION CSS END
=================================== */

/* ===================================
CRYPTO FAQ SECTION CSS START
=================================== */

.digi-crypto-faq-section{
    position: relative;
    padding: 80px;
    background: linear-gradient(135deg,#f9fafb 0%, #ffffff 100%);
    overflow: hidden;
}

/* HEADER */

.digi-crypto-faq-header{
    max-width: 820px;
    margin: 0 auto 70px;
}

.digi-crypto-faq-subtitle{
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: #e0f2fe;
    color: #0284c7;
    font-size: 14px;
    letter-spacing: .3px;
    margin-bottom: 22px;
}

.digi-crypto-faq-header h2{
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -.5px;
}

.digi-crypto-faq-header p{
    font-size: 16px;
    line-height: 1.95;
    color: #64748b;
    margin-bottom: 0;
}

/* FAQ WRAPPER */

.digi-crypto-faq-wrapper{
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* FAQ ITEM */

.digi-crypto-faq-item{
    background: #ffffff;
    border: 1px solid #e5eef8;
    border-radius: 28px;
    overflow: hidden;
    transition: .45s ease;
    box-shadow: 0 10px 30px rgba(15,23,42,.03);
}

.digi-crypto-faq-item:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(14,165,233,.08);
}

.active-faq{
    border-color: #0ea5e9;
}

/* QUESTION */

.digi-crypto-faq-question{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 34px;
    cursor: pointer;
}

.digi-crypto-faq-left{
    display: flex;
    align-items: center;
    gap: 22px;
}

.digi-crypto-faq-icon{
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background: #f0f9ff;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: .4s ease;
}

.digi-crypto-faq-item:hover .digi-crypto-faq-icon{
    transform: rotate(-8deg);
}

.digi-crypto-faq-left h4{
    font-size: 24px;
    line-height: 1.5;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0;
}

/* TOGGLE */

.digi-crypto-faq-toggle{
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #f8fafc;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: .4s ease;
}

.active-faq .digi-crypto-faq-toggle{
    background: #0284c7;
    color: #ffffff;
}

/* ANSWER */

.digi-crypto-faq-answer{
    padding: 0 34px 32px 124px;
}

.digi-crypto-faq-answer p{
    font-size: 16px;
    line-height: 1.95;
    color: #64748b;
    margin-bottom: 0;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1199px){

    .digi-crypto-faq-header h2{
        font-size: 42px;
    }

    .digi-crypto-faq-left h4{
        font-size: 22px;
    }
}

@media(max-width:991px){

    .digi-crypto-faq-section{
        padding: 100px 0 95px;
    }

    .digi-crypto-faq-header{
        margin-bottom: 55px;
    }

    .digi-crypto-faq-header h2{
        font-size: 38px;
    }

    .digi-crypto-faq-question{
        padding: 28px;
    }

    .digi-crypto-faq-answer{
        padding: 0 28px 28px 28px;
    }
}

@media(max-width:767px){

    .digi-crypto-faq-section{
        padding: 80px 0 75px;
    }

    .digi-crypto-faq-header h2{
        font-size: 31px;
        line-height: 1.3;
    }

    .digi-crypto-faq-header p{
        font-size: 15px;
    }

    .digi-crypto-faq-question{
        padding: 24px 20px;
        align-items: flex-start;
    }

    .digi-crypto-faq-left{
        gap: 16px;
        align-items: flex-start;
    }

    .digi-crypto-faq-icon{
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 22px;
    }

    .digi-crypto-faq-left h4{
        font-size: 18px;
        line-height: 1.6;
    }

    .digi-crypto-faq-answer{
        padding: 0 20px 24px 20px;
    }

    .digi-crypto-faq-answer p{
        font-size: 15px;
    }

    .digi-crypto-faq-toggle{
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
}

/* ===================================
CRYPTO FAQ SECTION CSS END
=================================== */