.defi-minimal-section {
    padding: 80px 0 80px;
    background: linear-gradient(135deg, #b1d0fc 0%, #0c1d36 100%);
    position: relative;
}

.defi-minimal-content h1 {
    font-size: 46px;
    line-height: 1.2;
    color: #0c0c0c;
    font-weight: 400;
    margin-bottom: 28px;
    max-width: 90%;
}

.defi-minimal-content p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.defi-box-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
}

.defi-mini-box {
    width: 85%;
    height: 120px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
}

.defi-mini-box span {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(0, 217, 255, 0.12);
    border-radius: 50%;
    top: -40px;
    right: -30px;
    transition: 0.5s ease;
}

.active-box {
    width: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 217, 255, 0.12),
        rgba(139, 92, 246, 0.12)
    );
    border-color: rgba(0, 217, 255, 0.2);
}

.defi-mini-box:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.3);
}

.defi-mini-box:hover span {
    transform: scale(1.3);
}

@media (max-width: 991px) {
    .defi-minimal-section {
        padding: 90px 0 70px;
    }

    .defi-minimal-content h1 {
        font-size: 38px;
        max-width: 100%;
    }

    .defi-box-wrapper {
        align-items: stretch;
    }

    .defi-mini-box {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .defi-minimal-content h1 {
        font-size: 30px;
    }

    .defi-minimal-content p {
        font-size: 15px;
    }

    .defi-mini-box {
        height: 100px;
        border-radius: 22px;
    }
}

/* =========================
   DeFi Info Section
========================= */

.defi-info-section {
    padding: 75px 0 120px;
    background: #fff8f1;
    position: relative;
    overflow: hidden;
}

/* Floating Animated Shapes */
.defi-info-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.08);
    top: -120px;
    left: -100px;
    animation: floatOne 9s ease-in-out infinite;
}

.defi-info-section::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 35px solid rgba(255, 166, 0, 0.06);
    bottom: -80px;
    right: -60px;
    animation: rotateRing 18s linear infinite;
}

.defi-info-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #fff1df 100%);
    border-radius: 42px;
    padding: 75px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Moving Gradient Glow */
.defi-info-wrapper::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(255, 166, 0, 0.18) 0%,
        transparent 70%
    );
    top: -100px;
    right: -100px;
    animation: pulseMove 7s ease-in-out infinite;
}

.defi-info-sticky {
    position: relative;
    z-index: 2;
}

.defi-line {
    width: 75px;
    height: 6px;
    border-radius: 30px;
    background: linear-gradient(to right, #ff7b00, #ffb347);
    display: block;
    margin-bottom: 24px;
    animation: lineStretch 3s ease-in-out infinite;
}

.defi-info-sticky h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #1b1b1b;
    font-weight: 400;
    margin-bottom: 0;
}

/* Image spacing under heading */
.defi-image {
    margin-top: 35px;
}

.defi-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
}

/* Only desktop adjustment for heading position */
@media (min-width: 992px) {
    .defi-info-sticky {
        margin-top: -100px;
    }
}


.defi-content-area {
    position: relative;
    z-index: 2;
}

.defi-content-area p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 28px;
}

/* Feature Grid */
.defi-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.defi-feature-item {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid #ffe2c2;
    padding: 18px 20px 18px 42px;
    border-radius: 18px;
    font-size: 15px;
    color: #222;
    position: relative;
    overflow: hidden;
    transition: all 0.45s ease;
    backdrop-filter: blur(10px);
}

/* Hover Shine Effect */
.defi-feature-item::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 180%;
    background: rgba(255, 255, 255, 0.35);
    top: -40%;
    left: -120px;
    transform: rotate(20deg);
    transition: 0.7s ease;
}

.defi-feature-item::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff8c00;
    position: absolute;
    left: 18px;
    top: 24px;
    animation: pulseDot 2s infinite;
}

.defi-feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 40px rgba(255, 140, 0, 0.14);
    border-color: #ffb86b;
}

.defi-feature-item:hover::after {
    left: 130%;
}

.defi-feature-item:last-child {
    grid-column: 1 / -1;
}

/* =========================
   Keyframes
========================= */

@keyframes floatOne {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(40px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseMove {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes lineStretch {
    0% {
        width: 75px;
    }
    50% {
        width: 110px;
    }
    100% {
        width: 75px;
    }
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
    .defi-info-section {
        padding: 60px 0 90px;
    }

    .defi-info-wrapper {
        padding: 45px;
    }

    .defi-info-sticky h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .defi-feature-grid {
        grid-template-columns: 1fr;
    }

    .defi-info-wrapper {
        padding: 35px 24px;
        border-radius: 28px;
    }

    .defi-info-sticky h2 {
        font-size: 28px;
    }

    .defi-content-area p {
        font-size: 15px;
    }
}

/* =========================
   DeFi Services Section (Blue + White Theme)
========================= */

.defi-services-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* soft animated light blobs */
.defi-services-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(0, 140, 255, 0.08);
    border-radius: 50%;
    top: -120px;
    left: -120px;
    animation: floatBlue 8s ease-in-out infinite;
}

.defi-services-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(0, 180, 255, 0.06);
    border-radius: 50%;
    bottom: -120px;
    right: -120px;
    animation: floatBlue 10s ease-in-out infinite reverse;
}

@keyframes floatBlue {
    0% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(30px) scale(1.05);
    }
    100% {
        transform: translateY(0px) scale(1);
    }
}

.defi-services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.defi-services-header h2 {
    font-size: 40px;
    font-weight: 500;
    color: #0b1f3a;
    margin-bottom: 12px;
}

.defi-services-header p {
    font-size: 16px;
    color: #5b6b7a;
    line-height: 1.8;
}

/* cards */
.defi-service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 140, 255, 0.15);
    border-radius: 20px;
    padding: 28px 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* glowing top line */
.defi-service-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, #00a3ff, #0066ff);
    transition: 0.5s ease;
}

.defi-service-card:hover::before {
    left: 0;
}

.defi-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 140, 255, 0.12);
    border-color: rgba(0, 140, 255, 0.3);
}

.defi-service-card h3 {
    font-size: 18px;
font-weight: 400;
    color: #0b1f3a;
    margin-bottom: 12px;
}

.defi-service-card p {
    font-size: 15px;
    color: #5b6b7a;
    line-height: 1.7;
}

/* responsive */
@media (max-width: 991px) {
    .defi-services-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .defi-services-section {
        padding: 70px 0;
    }

    .defi-services-header h2 {
        font-size: 26px;
    }
}

/* =========================
   CORE FEATURES SECTION (TECH GRID STYLE)
========================= */

.defi-core-section {
    padding: 90px 0;
    background: #050b18;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* diagonal light overlay (NO blobs) */
.defi-core-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 140, 255, 0.08) 25%, transparent 25%),
        linear-gradient(225deg, rgba(0, 140, 255, 0.05) 25%, transparent 25%);
    background-size: 80px 80px;
    opacity: 0.4;
    animation: moveGrid 18s linear infinite;
}

@keyframes moveGrid {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 80px 80px;
    }
}

/* header */
.defi-core-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.defi-core-header h2 {
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 12px;
}

.defi-core-header p {
    color: #b7c6d8;
    font-size: 16px;
    line-height: 1.8;
}

/* cards */
.defi-core-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 140, 255, 0.15);
    padding: 18px 22px;
    border-radius: 14px;
    color: #d6e6ff;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

/* scan line animation */
.defi-core-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 140, 255, 0.15),
        transparent
    );
    transition: 0.6s ease;
}

.defi-core-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(0, 140, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 140, 255, 0.12);
}

.defi-core-card:hover::before {
    left: 120%;
}

/* footer */
.defi-core-footer {
    text-align: center;
    margin-top: 40px;
    color: #9fb4cc;
    font-size: 15px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* responsive */
@media (max-width: 991px) {
    .defi-core-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .defi-core-section {
        padding: 70px 0;
    }

    .defi-core-header h2 {
        font-size: 24px;
    }
}

.defi-security-section {
    padding: 80px 0;
    background: #f6f9ff;
    overflow: hidden;
}

/* HEADER */
.defi-security-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.defi-security-header h2 {
    font-size: 36px;
    font-weight: 400;
    color: #0b1f3a;
    margin-bottom: 12px;
}

.defi-security-header p {
    font-size: 16px;
    color: #5b6b7a;
    line-height: 1.8;
}

/* LEFT LIST */
.defi-security-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.security-item {
    background: #ffffff;
    border-left: 4px solid #2f80ff;
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 15px;
    color: #1b2b3a;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

/* hover effect */
.security-item:hover {
    transform: translateX(8px);
    border-left-color: #0ea5ff;
    box-shadow: 0 12px 30px rgba(47, 128, 255, 0.12);
}

/* FOOTER TEXT */
.security-footer {
    margin-top: 25px;
    font-size: 15px;
    color: #5b6b7a;
    line-height: 1.7;
}

/* RIGHT IMAGE BOX */
.security-image-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* image */
.security-img {
    border-radius: 16px;
    transition: transform 0.6s ease;
}

/* hover */
.security-image-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(47, 128, 255, 0.18);
}

.security-image-box:hover .security-img {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .defi-security-header h2 {
        font-size: 28px;
    }

    .security-image-box {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .defi-security-section {
        padding: 70px 0;
    }

    .defi-security-header h2 {
        font-size: 24px;
    }
}

.blockchain-networks-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

/* HEADER */
.blockchain-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blockchain-header h2 {
    font-size: 38px;
font-weight: 400;
    color: #0b1f3a;
    margin-bottom: 10px;
}

.blockchain-header p {
    font-size: 16px;
    color: #5b6b7a;
}

/* CARD */
.chain-card {
    padding: 22px 18px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-left: 4px solid transparent;
}

/* hover */
.chain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 140, 255, 0.15);
}

/* image */
.chain-card img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.4s ease;
}

.chain-card:hover img {
    transform: scale(1.15) rotate(5deg);
}

/* text */
.chain-card span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1b2b3a;
}

/* animated shine */
.chain-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transition: 0.6s ease;
}

.chain-card:hover::before {
    left: 120%;
}

/* UNIQUE COLORS */
.c1 {
    border-left-color: #627eea;
}
.c2 {
    border-left-color: #f3ba2f;
}
.c3 {
    border-left-color: #8247e5;
}
.c4 {
    border-left-color: #14f195;
}
.c5 {
    border-left-color: #e84142;
}
.c6 {
    border-left-color: #ff0050;
}
.c7 {
    border-left-color: #2d9cdb;
}
.c8 {
    border-left-color: #ff7a00;
}

/* FOOTER */
.blockchain-footer {
    text-align: center;
    margin-top: 50px;
    font-size: 15px;
    color: #5b6b7a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .blockchain-header h2 {
        font-size: 24px;
    }
}

.dgt-defi-motion {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(
        circle at top,
        #42baa6 0%,
        #0a5cae 40%,
        #ffffff 100%
    );
}

/* animated background flow like Appinventiv style */
.dgt-defi-motion::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(0, 200, 180, 0.18),
        transparent 60%
    );
    top: -200px;
    right: -200px;
    animation: floatGlow 6s ease-in-out infinite;
}

@keyframes floatGlow {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
}

/* HEADER */
.dgt-defi-motion-header {
    text-align: center;
}

.dgt-defi-motion-header h2 {
    font-size: 40px;
font-weight: 400;
    color: #0b2f2f;
}

/* GRID */
.dgt-defi-motion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* CARD */
.dgt-motion-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 200, 180, 0.15);
    border-radius: 22px;
    padding: 26px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

/* hover glass lift + tilt feel */
.dgt-motion-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 200, 180, 0.15);
    border-color: rgba(0, 200, 180, 0.4);
}

/* animated shine sweep */
.dgt-motion-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 200, 180, 0.15),
        transparent
    );
    transition: 0.6s ease;
}

.dgt-motion-card:hover::before {
    left: 120%;
}

/* ICON */
.dgt-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

/* TITLE */
.dgt-motion-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0b2f2f;
    margin-bottom: 8px;
}

/* TEXT */
.dgt-motion-card p {
    font-size: 14px;
    color: #4b6b6b;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .dgt-defi-motion-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dgt-defi-motion-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .dgt-defi-motion-grid {
        grid-template-columns: 1fr;
    }

    .dgt-defi-motion {
        padding: 70px 0;
    }
}

/* =========================================
   DeFi Benefits Section Styling
========================================= */

.dfb-benefits-section {
    background:
        radial-gradient(
            circle at top left,
            rgba(0, 255, 200, 0.1),
            transparent 30%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(139, 92, 246, 0.14),
            transparent 35%
        ),
        linear-gradient(135deg, #07111f 0%, #0c1629 50%, #101b34 100%);
    position: relative;
    z-index: 1;
}

/* Animated Grid */
.dfb-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    opacity: 0.4;
    z-index: -1;
}

/* Floating Shapes */
.dfb-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: dfbFloat 8s ease-in-out infinite alternate;
    z-index: -1;
}

.dfb-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 255, 200, 0.18);
    top: -80px;
    left: -100px;
}

.dfb-shape-2 {
    width: 260px;
    height: 260px;
    background: rgba(139, 92, 246, 0.18);
    bottom: -100px;
    right: -80px;
    animation-delay: 2s;
}

@keyframes dfbFloat {
    from {
        transform: translateY(0px) translateX(0px);
    }
    to {
        transform: translateY(25px) translateX(20px);
    }
}

/* Badge */
.dfb-mini-badge {
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #78ffd6;
    font-size: 14px;
    letter-spacing: 0.6px;
    backdrop-filter: blur(10px);
}

/* Heading */
.dfb-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

.dfb-title span {
    background: linear-gradient(90deg, #00ffd0, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dfb-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    max-width: 700px;
    line-height: 1.8;
}

/* Benefit Cards */
.dfb-benefit-card {
    position: relative;
    height: 100%;
    padding: 35px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: all 0.45s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.dfb-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        130deg,
        rgba(0, 255, 208, 0.08),
        rgba(139, 92, 246, 0.08)
    );
    opacity: 0;
    transition: 0.4s ease;
}

.dfb-benefit-card:hover::before {
    opacity: 1;
}

.dfb-benefit-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 255, 208, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

/* Icon */
.dfb-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, #00ffd0, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.dfb-icon-wrap i {
    font-size: 28px;
    color: #08111f;
    z-index: 2;
}

.dfb-benefit-card:hover .dfb-icon-wrap {
    transform: rotate(-6deg) scale(1.08);
}

/* Card Title */
.dfb-benefit-card h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Hover Line */
.dfb-hover-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #00ffd0, #8b5cf6);
    transition: width 0.5s ease;
}

.dfb-benefit-card:hover .dfb-hover-line {
    width: 100%;
}

/* Bottom Box */
.dfb-bottom-box {
    padding: 28px 35px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.dfb-bottom-box p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .dfb-title {
        font-size: 34px;
    }

    .dfb-benefit-card {
        padding: 30px 24px;
    }
}

@media (max-width: 767px) {
    .dfb-title {
        font-size: 28px;
    }

    .dfb-subtitle {
        font-size: 15px;
    }

    .dfb-benefit-card h3 {
        font-size: 18px;
    }

    .dfb-bottom-box {
        padding: 24px 20px;
    }

    .dfb-bottom-box p {
        font-size: 16px;
    }
}

/* =========================================
   LIGHTER + CLEANER TIMELINE STYLE
   Replace ONLY these styles
========================================= */

/* Timeline Item Spacing */
.dgl-timeline-item {
    margin-bottom: 28px;
}

/* Cleaner Content Box */
.dgl-content {
    position: relative;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.35s ease;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(10px);
}

/* Remove Heavy Overlay */
.dgl-content::before {
    display: none;
}

/* Minimal Hover */
.dgl-content:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 184, 166, 0.18);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

/* Smaller Icon */
.dgl-icon {
    min-width: 52px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #14b8a6, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
}

.dgl-icon i {
    font-size: 18px;
    color: #fff;
}

/* Softer Hover Effect */
.dgl-content:hover .dgl-icon {
    transform: scale(1.05);
}

/* Smaller Heading */
.dgl-text h3 {
    font-size: 16px;
    line-height: 1.7;
    color: #0f172a;
    font-weight: 600;
    margin: 0;
}

/* Smaller Dot */
.dgl-dot {
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.1);
}

/* Bottom Strip Lighter */
.dgl-bottom-strip {
    padding: 24px 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(10px);
}

.dgl-bottom-strip::before {
    display: none;
}

.dgl-bottom-strip p {
    color: #334155;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 767px) {
    .dgl-content {
        padding: 18px;
        gap: 14px;
    }

    .dgl-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .dgl-icon i {
        font-size: 16px;
    }

    .dgl-text h3 {
        font-size: 15px;
    }

    .dgl-bottom-strip {
        padding: 22px 18px;
    }

    .dgl-bottom-strip p {
        font-size: 15px;
    }
}

/* =========================================
   Future of DeFi & Decentralized Finance
========================================= */

.fdf-section {
    background:
        radial-gradient(
            circle at top left,
            rgba(20, 184, 166, 0.08),
            transparent 25%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(15, 118, 110, 0.08),
            transparent 25%
        ),
        linear-gradient(135deg, #f7f2ea 0%, #f5efe7 50%, #f8f4ed 100%);
    position: relative;
    overflow: hidden;
}

/* =========================================
   BACKGROUND BLURS
========================================= */

.fdf-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
}

.fdf-blur-1 {
    width: 280px;
    height: 280px;
    background: rgba(20, 184, 166, 0.1);
    top: -120px;
    left: -100px;
}

.fdf-blur-2 {
    width: 320px;
    height: 320px;
    background: rgba(13, 148, 136, 0.1);
    bottom: -120px;
    right: -120px;
}

/* =========================================
   BADGE
========================================= */

.fdf-badge {
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(15, 118, 110, 0.12);
    color: #0f766e;
    font-size: 13px;
font-weight: 400;
    letter-spacing: 2px;
}

/* =========================================
   TITLE
========================================= */

.fdf-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
    color: #0f172a;
}

.fdf-desc {
    max-width: 950px;
    color: #475569;
    font-size: 18px;
    line-height: 1.9;
}

/* =========================================
   SUBTITLE
========================================= */

.fdf-subtitle {
    font-size: 38px;
    font-weight: 400;
    color: #0f766e;
    position: relative;
    display: inline-block;
}

.fdf-subtitle::after {
    content: "";
    width: 70px;
    height: 3px;
    border-radius: 20px;
    background: #14b8a6;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
}

/* =========================================
   NETWORK WRAPPER
========================================= */

.fdf-network-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 30px;
}

/* =========================================
   MAIN NETWORK
========================================= */

.fdf-network {
    position: relative;
    width: 950px;
    height: 720px;
    margin: auto;
}

/* =========================================
   CENTER DOT
========================================= */

.fdf-center-dot {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #14b8a6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.25);
}

/* =========================================
   NODE
========================================= */

.fdf-node {
    position: absolute;
    width: 240px;
    text-align: center;
}

/* =========================================
   ICON
========================================= */

.fdf-icon {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: linear-gradient(145deg, #14b8a6, #0f766e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
    transition: 0.4s ease;
    box-shadow:
        0 0 0 8px rgba(20, 184, 166, 0.1),
        0 10px 28px rgba(15, 118, 110, 0.15);
}

/* Inner Border */

.fdf-icon::before {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

/* Icon */

.fdf-icon i {
    color: #fff;
    font-size: 38px;
}

/* Hover */

.fdf-node:hover .fdf-icon {
    transform: translateY(-8px) scale(1.05);
}

/* =========================================
   NODE TEXT
========================================= */

.fdf-node h4 {
    margin-top: 18px;
    font-size: 20px;
    line-height: 1.6;
    color: #0f172a;
    font-weight: 600;
}

/* =========================================
   PERFECT DESKTOP POSITIONING
========================================= */

/* TOP */

.fdf-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* LEFT TOP */

.fdf-left-top {
    top: 190px;
    left: 40px;
}

/* LEFT BOTTOM */

.fdf-left-bottom {
    bottom: 120px;
    left: 90px;
}

/* RIGHT TOP */

.fdf-right-top {
    top: 190px;
    right: 40px;
}

/* RIGHT BOTTOM */

.fdf-right-bottom {
    bottom: 120px;
    right: 90px;
}

/* BOTTOM */

.fdf-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* =========================================
   BOTTOM BOX
========================================= */

.fdf-bottom-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(15, 118, 110, 0.1);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(15, 118, 110, 0.08);
}

/* Bottom Icon */

.fdf-bottom-icon {
    min-width: 82px;
    width: 82px;
    height: 82px;
    border-radius: 22px;
    background: linear-gradient(145deg, #14b8a6, #0f766e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fdf-bottom-icon i {
    color: #fff;
    font-size: 34px;
}

/* Bottom Text */

.fdf-bottom-box p {
    color: #334155;
    font-size: 20px;
    line-height: 1.8;
}

/* =========================================
   LAPTOP RESPONSIVE
========================================= */

@media (max-width: 1199px) {
    .fdf-title {
        font-size: 52px;
    }

    .fdf-network {
        width: 820px;
        height: 680px;
    }

    .fdf-left-top {
        left: 0;
    }

    .fdf-left-bottom {
        left: 30px;
    }

    .fdf-right-top {
        right: 0;
    }

    .fdf-right-bottom {
        right: 30px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .fdf-title {
        font-size: 42px;
    }

    .fdf-desc {
        font-size: 16px;
    }

    .fdf-subtitle {
        font-size: 32px;
    }

    .fdf-network {
        transform: scale(0.78);
        transform-origin: top center;
        height: 560px;
    }

    .fdf-bottom-box {
        padding: 24px;
    }

    .fdf-bottom-box p {
        font-size: 18px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .fdf-title {
        font-size: 34px;
    }

    .fdf-desc {
        font-size: 15px;
        line-height: 1.8;
    }

    .fdf-subtitle {
        font-size: 28px;
    }

    .fdf-network {
        width: 100%;
        height: auto;
        transform: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 35px;
    }

    .fdf-center-dot {
        display: none;
    }

    .fdf-node {
        position: relative !important;
        width: 48%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .fdf-icon {
        width: 90px;
        height: 90px;
    }

    .fdf-icon i {
        font-size: 30px;
    }

    .fdf-node h4 {
        font-size: 16px;
        line-height: 1.5;
    }

    .fdf-bottom-box {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .fdf-bottom-icon {
        width: 72px;
        height: 72px;
        min-width: 72px;
    }

    .fdf-bottom-icon i {
        font-size: 28px;
    }

    .fdf-bottom-box p {
        font-size: 16px;
    }
}

/* =========================================
   DeFi CTA Section
   Updated Theme:
   #90e0ef + #fff1e6
========================================= */

.dfcta-section {
    background:
        radial-gradient(
            circle at top left,
            rgba(144, 224, 239, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(72, 202, 228, 0.16),
            transparent 30%
        ),
        linear-gradient(135deg, #fff1e6 0%, #fff7f1 45%, #fffaf6 100%);
    position: relative;
    overflow: hidden;
}

/* =========================================
   Animated Orbs
========================================= */

.dfcta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: dfctaFloat 8s ease-in-out infinite;
}

.dfcta-orb-1 {
    width: 240px;
    height: 240px;
    background: rgba(144, 224, 239, 0.28);
    top: -80px;
    left: -60px;
}

.dfcta-orb-2 {
    width: 280px;
    height: 280px;
    background: rgba(72, 202, 228, 0.22);
    bottom: -120px;
    right: -100px;
    animation-delay: 2s;
}

.dfcta-orb-3 {
    width: 160px;
    height: 160px;
    background: rgba(144, 224, 239, 0.18);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

/* Floating Animation */

@keyframes dfctaFloat {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }
}

/* =========================================
   Main Wrapper
========================================= */

.dfcta-wrapper {
    position: relative;
    z-index: 2;
    padding: 70px 60px;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(144, 224, 239, 0.22);

    box-shadow:
        0 15px 40px rgba(144, 224, 239, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);

    overflow: hidden;
}

/* =========================================
   Animated Border
========================================= */

.dfcta-wrapper::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 40px;
    padding: 2px;

    background: linear-gradient(130deg, #90e0ef, #48cae4, #00b4d8, #90e0ef);

    background-size: 300% 300%;

    animation: dfctaBorder 8s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

/* Border Animation */

@keyframes dfctaBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

/* =========================================
   Badge
========================================= */

.dfcta-badge {
    padding: 12px 24px;
    border-radius: 50px;

    background: rgba(144, 224, 239, 0.16);

    border: 1px solid rgba(72, 202, 228, 0.2);

    color: #0077b6;

    font-size: 13px;
font-weight: 400;
    letter-spacing: 2px;
}

/* =========================================
   Title
========================================= */

.dfcta-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 500;

    max-width: 900px;
    margin: auto;

    background: linear-gradient(90deg, #023047, #0077b6, #48cae4, #023047);

    background-size: 250% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: dfctaText 8s linear infinite;
}

/* Gradient Animation */

@keyframes dfctaText {
    to {
        background-position: 250% center;
    }
}

/* =========================================
   Description
========================================= */

.dfcta-desc {
    max-width: 900px;
    font-size: 18px;
    line-height: 1.9;
    color: #4b5563;
}

/* =========================================
   CTA Action Box
========================================= */

.dfcta-action-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding: 30px;

    border-radius: 28px;

    background: rgba(255, 255, 255, 0.62);

    border: 1px solid rgba(144, 224, 239, 0.2);

    transition: 0.4s ease;

    position: relative;
    overflow: hidden;
}

/* Hover */

.dfcta-action-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(144, 224, 239, 0.18);
}

/* =========================================
   Shine Effect
========================================= */

.dfcta-action-box::after {
    content: "";
    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.55),
        transparent
    );

    transform: skewX(-25deg);

    transition: 1s;
}

.dfcta-action-box:hover::after {
    left: 120%;
}

/* =========================================
   Icon
========================================= */

.dfcta-icon {
    min-width: 85px;
    width: 85px;
    height: 85px;

    border-radius: 24px;

    background: linear-gradient(145deg, #90e0ef, #00b4d8);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.18);
}

/* Icon */

.dfcta-icon i {
    font-size: 34px;
    color: #023047;
}

/* =========================================
   Content
========================================= */

.dfcta-content {
    flex: 1;
    text-align: left;
}

.dfcta-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #334155;
    font-weight: 500;
}

/* =========================================
   Button
========================================= */

.dfcta-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 34px;

    border-radius: 60px;

    background: linear-gradient(145deg, #90e0ef, #00b4d8);

    color: #023047;

    font-size: 16px;
font-weight: 400;

    text-decoration: none;

    overflow: hidden;

    transition: 0.4s ease;

    z-index: 1;
}

/* Hover */

.dfcta-btn:hover {
    color: #023047;

    transform: translateY(-4px) scale(1.04);

    box-shadow: 0 15px 30px rgba(0, 180, 216, 0.22);
}

/* =========================================
   Button Glow
========================================= */

.dfcta-btn span {
    position: absolute;

    width: 0;
    height: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.35);

    transform: translate(-50%, -50%);

    transition:
        width 0.6s ease,
        height 0.6s ease;

    z-index: -1;
}

.dfcta-btn:hover span {
    width: 320px;
    height: 320px;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 991px) {
    .dfcta-wrapper {
        padding: 60px 40px;
    }

    .dfcta-title {
        font-size: 42px;
    }

    .dfcta-action-box {
        flex-direction: column;
        text-align: center;
    }

    .dfcta-content {
        text-align: center;
    }

    .dfcta-content p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .dfcta-wrapper {
        padding: 45px 22px;
        border-radius: 28px;
    }

    .dfcta-title {
        font-size: 32px;
    }

    .dfcta-desc {
        font-size: 15px;
        line-height: 1.8;
    }

    .dfcta-content p {
        font-size: 16px;
    }

    .dfcta-btn {
        width: 100%;
    }

    .dfcta-icon {
        width: 72px;
        height: 72px;
        min-width: 72px;
    }

    .dfcta-icon i {
        font-size: 28px;
    }
}

/* =========================================
   FAQ Section
   Updated Purple Theme
   #c77dff + #e0aaff
========================================= */

.dfaq-section {
    background:
        radial-gradient(
            circle at top left,
            rgba(199, 125, 255, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(224, 170, 255, 0.14),
            transparent 28%
        ),
        linear-gradient(135deg, #faf5ff 0%, #f8f0ff 45%, #fff9ff 100%);
    position: relative;
}

/* =========================================
   Background Blur
========================================= */

.dfaq-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
}

.dfaq-blur-1 {
    width: 260px;
    height: 260px;
    background: rgba(199, 125, 255, 0.2);
    top: -100px;
    left: -100px;
}

.dfaq-blur-2 {
    width: 320px;
    height: 320px;
    background: rgba(224, 170, 255, 0.18);
    bottom: -120px;
    right: -120px;
}

/* =========================================
   Badge
========================================= */

.dfaq-badge {
    padding: 12px 24px;
    border-radius: 50px;

    background: rgba(224, 170, 255, 0.18);

    border: 1px solid rgba(199, 125, 255, 0.22);

    color: #7b2cbf;

    font-size: 13px;
font-weight: 400;
    letter-spacing: 2px;
}

/* =========================================
   Title
========================================= */

.dfaq-title {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;

    background: linear-gradient(90deg, #240046, #7b2cbf, #c77dff, #240046);

    background-size: 250% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: dfaqText 8s linear infinite;
}

@keyframes dfaqText {
    to {
        background-position: 250% center;
    }
}

/* =========================================
   Accordion
========================================= */

.dfaq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* =========================================
   FAQ Item
========================================= */

.dfaq-item {
    border: none !important;
    border-radius: 24px !important;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.6);

    border: 1px solid rgba(199, 125, 255, 0.16) !important;

    backdrop-filter: blur(12px);

    box-shadow: 0 10px 28px rgba(199, 125, 255, 0.1);

    transition: 0.4s ease;
}

/* Hover */

.dfaq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(199, 125, 255, 0.16);
}

/* =========================================
   Accordion Button
========================================= */

.dfaq-btn {
    background: transparent !important;

    padding: 26px 30px !important;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;

    color: #240046 !important;

    box-shadow: none !important;
}

/* Active */

.dfaq-btn:not(.collapsed) {
    color: #7b2cbf !important;
    background: rgba(224, 170, 255, 0.1) !important;
}

/* =========================================
   Custom Icon
========================================= */

.dfaq-btn::after {
    background-image: none !important;

    content: "+";

    font-size: 28px;
    font-weight: 300;

    color: #c77dff;

    transform: none !important;

    transition: 0.3s ease;
}

/* Minus */

.dfaq-btn:not(.collapsed)::after {
    content: "−";
    transform: rotate(180deg);
}

/* =========================================
   Body
========================================= */

.dfaq-body {
    padding: 0 30px 28px 30px;

    font-size: 17px;
    line-height: 1.9;

    color: #5b5563;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 991px) {
    .dfaq-title {
        font-size: 42px;
    }

    .dfaq-btn {
        font-size: 18px;
        padding: 22px 24px !important;
    }

    .dfaq-body {
        padding: 0 24px 24px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .dfaq-title {
        font-size: 32px;
    }

    .dfaq-btn {
        font-size: 16px;
        line-height: 1.6;
        padding: 20px !important;
    }

    .dfaq-body {
        padding: 0 20px 22px;
        font-size: 15px;
        line-height: 1.8;
    }

    .dfaq-item {
        border-radius: 20px !important;
    }
}
