/* =========================================
   ECOMMERCE HERO SECTION
========================================= */

.dg-ecom-section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 110, 199, 0.2),
            transparent 30%
        ),
        radial-gradient(
            circle at top right,
            rgba(95, 111, 255, 0.22),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom center,
            rgba(194, 118, 255, 0.16),
            transparent 30%
        ),
        linear-gradient(135deg, #f9f5ff 0%, #eef2ff 45%, #f5eeff 100%);
}

/* Container */
.dg-ecom-container {
    max-width: 1280px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    position: relative;
    z-index: 2;
}

/* =========================================
   LEFT CONTENT
========================================= */

.dg-ecom-content {
    width: 55%;
    position: relative;
    z-index: 2;
}

/* Tag */
.dg-ecom-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    color: #8b3dff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(124, 92, 255, 0.12);
}

.dg-ecom-tag::before {
    content: "";
    font-size: 16px;
}

/* Title */
.dg-ecom-title {
    font-size: 40px;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 30px;
    background: linear-gradient(
        90deg,
        #111827 0%,
        #322c7d 35%,
        #5f6fff 65%,
        #9b4dff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Decorative Line */
.dg-ecom-title::after {
    content: "";
    width: 120px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff5fcf, #6b63ff);
    display: block;
    margin-top: 26px;
    box-shadow: 0 0 18px rgba(108, 99, 255, 0.35);
}

/* Text */
.dg-ecom-text {
    font-size: 18px;
    line-height: 1.95;
    color: #5e6475;
    margin-bottom: 24px;
    max-width: 760px;
}

/* Button */
.dg-ecom-btn-wrap {
    margin-top: 42px;
}

.dg-ecom-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 34px;
    border-radius: 70px;
    text-decoration: none;
    overflow: hidden;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #9b4dff 0%, #5f6fff 50%, #ff5fcf 100%);
    background-size: 200% 200%;
    transition: all 0.45s ease;
    box-shadow:
        0 16px 40px rgba(102, 92, 255, 0.28),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);

    animation: dgGradientMove 6s ease infinite;
}

.dg-ecom-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120%;
    background: rgba(255, 255, 255, 0.2);
    top: -10%;
    left: -140px;
    transform: skewX(-25deg);
    transition: 0.7s;
}

.dg-ecom-btn:hover::before {
    left: 130%;
}

.dg-ecom-btn span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    transition: 0.4s ease;
}

.dg-ecom-btn:hover {
    transform: translateY(-6px);
    box-shadow:
        0 24px 50px rgba(102, 92, 255, 0.38),
        0 0 30px rgba(255, 95, 207, 0.2);
}

.dg-ecom-btn:hover span {
    transform: translateX(6px);
}

/* =========================================
   RIGHT IMAGE
========================================= */

.dg-ecom-image-wrapper {
    width: 45%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dg-ecom-image {
    width: 100%;
    max-width: 580px;
    position: relative;
    z-index: 2;
    animation: dgImageFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 30px 45px rgba(90, 70, 255, 0.22));
}

/* Glow */
.dg-ecom-image-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 95, 207, 0.28),
        rgba(102, 92, 255, 0.18),
        transparent 70%
    );
    filter: blur(45px);
    animation: dgGlowMove 7s ease-in-out infinite;
}

/* =========================================
   FLOATING ICONS
========================================= */

.dg-floating-icon {
    position: absolute;
    z-index: 1;
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
    animation: dgIconFloat 8s ease-in-out infinite;
}

.dg-icon-cart {
    top: 12%;
    left: 6%;
    font-size: 75px;
}

.dg-icon-bag {
    top: 18%;
    right: 10%;
    font-size: 60px;
    animation-delay: 1s;
}

.dg-icon-box {
    bottom: 16%;
    left: 10%;
    font-size: 65px;
    animation-delay: 2s;
}

.dg-icon-card {
    bottom: 12%;
    right: 7%;
    font-size: 70px;
    animation-delay: 3s;
}

/* =========================================
   GLOW SHAPES
========================================= */

.dg-ecom-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
}

.dg-shape-one {
    width: 340px;
    height: 340px;
    background: rgba(255, 90, 190, 0.22);
    top: -120px;
    right: -100px;
    animation: dgFloatOne 8s ease-in-out infinite;
}

.dg-shape-two {
    width: 280px;
    height: 280px;
    background: rgba(95, 111, 255, 0.22);
    bottom: -100px;
    left: -60px;
    animation: dgFloatTwo 10s ease-in-out infinite;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes dgGradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes dgImageFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes dgGlowMove {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes dgFloatOne {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes dgFloatTwo {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes dgIconFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(8deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .dg-ecom-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .dg-ecom-content,
    .dg-ecom-image-wrapper {
        width: 100%;
    }

    .dg-ecom-title {
        font-size: 48px;
    }

    .dg-ecom-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .dg-ecom-image {
        max-width: 430px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .dg-ecom-section {
        padding: 90px 18px;
    }

    .dg-ecom-container {
        gap: 40px;
    }

    .dg-ecom-title {
        font-size: 36px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .dg-ecom-title::after {
        width: 85px;
        margin-top: 20px;
    }

    .dg-ecom-text {
        font-size: 16px;
        line-height: 1.85;
    }

    .dg-ecom-btn {
        padding: 15px 28px;
        font-size: 15px;
    }

    .dg-ecom-image {
        max-width: 320px;
    }

    .dg-ecom-image-glow {
        width: 240px;
        height: 240px;
    }

    .dg-floating-icon {
        font-size: 45px !important;
    }
}
/* build a powerful */
/* =========================================
   PREMIUM ECOMMERCE INFO SECTION
   COLOR THEME:
   #f9f5ff + #60495a
========================================= */

.dg-shop-section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    isolation: isolate;

    background: linear-gradient(
        135deg,
        #f9f5ff 0%,
        #f5ebf7 30%,
        #efe3f2 65%,
        #fdf9ff 100%
    );
}

/* =========================================
   BACKGROUND IMAGE OVERLAY
========================================= */

.dg-shop-overlay {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            to right,
            rgba(249, 245, 255, 0.75) 0%,
            rgba(249, 245, 255, 0.55) 35%,
            rgba(249, 245, 255, 0.15) 70%,
            rgba(249, 245, 255, 0.05) 100%
        ),
        url("{{ asset('site/assets/images/ecommerce-portal.png') }}");

    background-position: center right;
    background-repeat: no-repeat;
    background-size: 720px;

    opacity: 0.12;

    z-index: 1;

    animation: dgBgFloat 14s ease-in-out infinite;
}

/* =========================================
   SOFT GLOW EFFECTS
========================================= */

.dg-shop-section::before,
.dg-shop-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

/* mauve glow */
.dg-shop-section::before {
    width: 420px;
    height: 420px;

    background: rgba(96, 73, 90, 0.16);

    top: -120px;
    left: -80px;

    animation: dgGlowOne 8s ease-in-out infinite;
}

/* lavender glow */
.dg-shop-section::after {
    width: 450px;
    height: 450px;

    background: rgba(193, 166, 202, 0.2);

    bottom: -160px;
    right: -120px;

    animation: dgGlowTwo 10s ease-in-out infinite;
}

/* =========================================
   CONTAINER
========================================= */

.dg-shop-container {
    max-width: 1220px;
    margin: auto;
    position: relative;
    z-index: 3;
}

/* =========================================
   CONTENT
========================================= */

.dg-shop-content {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

/* =========================================
   TAG
========================================= */

.dg-shop-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 24px;

    border-radius: 60px;

    background: rgba(255, 255, 255, 0.72);

    border: 1px solid rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(18px);

    color: #60495a;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 28px;

    letter-spacing: 0.4px;

    box-shadow: 0 10px 30px rgba(96, 73, 90, 0.08);
}

.dg-shop-tag::before {
    content: "";
    font-size: 16px;
}

/* =========================================
   TITLE
========================================= */

.dg-shop-title {
    font-size: 50px;
    line-height: 1.05;
    font-weight: 600;

    margin-bottom: 30px;

    letter-spacing: -2px;

    color: #2f2430;
}

/* Gradient Highlight */
.dg-shop-title span {
    background: linear-gradient(90deg, #60495a, #8d6a85, #c29fc5);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================
   DESCRIPTION
========================================= */

.dg-shop-text {
    font-size: 18px;
    line-height: 1.95;

    color: #5f5562;

    margin-bottom: 45px;

    max-width: 820px;
}

/* =========================================
   GRID
========================================= */

.dg-shop-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

    margin-bottom: 42px;
}

/* =========================================
   CARDS
========================================= */

.dg-shop-card {
    position: relative;

    padding: 26px 26px 26px 72px;

    border-radius: 24px;

    overflow: hidden;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.88),
        rgba(255, 255, 255, 0.68)
    );

    border: 1px solid rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(18px);

    color: #3e3340;

    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;

    transition: all 0.45s ease;

    box-shadow:
        0 12px 35px rgba(96, 73, 90, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* icon */
.dg-shop-card::after {
    content: "✓";

    position: absolute;

    left: 24px;
    top: 22px;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: linear-gradient(135deg, #60495a, #9a7c94);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 8px 22px rgba(96, 73, 90, 0.2);
}

/* hover glow */
.dg-shop-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    background: rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    top: -80px;
    right: -80px;

    transition: 0.5s ease;
}

.dg-shop-card:hover::before {
    transform: scale(1.2);
}

.dg-shop-card:hover {
    transform: translateY(-10px);

    border-color: rgba(96, 73, 90, 0.16);

    box-shadow:
        0 22px 50px rgba(96, 73, 90, 0.12),
        0 0 30px rgba(194, 159, 197, 0.14);
}

/* =========================================
   BOTTOM TEXT
========================================= */

.dg-shop-bottom-text {
    font-size: 17px;
    line-height: 1.9;

    color: #655866;

    max-width: 760px;
}

/* =========================================
   WAVES
========================================= */

.dg-wave {
    position: absolute;

    width: 140%;
    height: 220px;

    left: -20%;

    opacity: 0.08;

    pointer-events: none;

    border-radius: 50%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(96, 73, 90, 0.15),
        transparent
    );
}

.dg-wave-one {
    top: 0;
    animation: dgWaveMove 14s linear infinite;
}

.dg-wave-two {
    bottom: 0;
    animation: dgWaveMoveReverse 18s linear infinite;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes dgGlowOne {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, 30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes dgGlowTwo {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-40px, -20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes dgBgFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes dgWaveMove {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-70px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes dgWaveMoveReverse {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(70px);
    }

    100% {
        transform: translateX(0px);
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .dg-shop-title {
        font-size: 46px;
        line-height: 1.15;
    }

    .dg-shop-grid {
        grid-template-columns: 1fr;
    }

    .dg-shop-overlay {
        background-size: 500px;
        background-position: center;
        opacity: 0.1;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .dg-shop-section {
        padding: 90px 18px;
    }

    .dg-shop-title {
        font-size: 34px;
        line-height: 1.18;
        letter-spacing: -1px;
    }

    .dg-shop-text,
    .dg-shop-bottom-text {
        font-size: 15px;
        line-height: 1.85;
    }

    .dg-shop-card {
        padding: 22px 22px 22px 62px;
        font-size: 15px;
    }

    .dg-shop-card::after {
        width: 28px;
        height: 28px;

        left: 20px;
        top: 20px;
    }

    .dg-shop-overlay {
        background-size: 300px;
        background-position: center;
        opacity: 0.08;
    }
}
/* ecommerce solutions */

.dg-eco-solutions {
    position: relative;
    padding: 80px 20px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fcff, #eef4ed, #ffffff);
}

/* animated glowing bg */
.dg-eco-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
}

.dg-eco-blur-one {
    width: 320px;
    height: 320px;
    background: rgba(141, 169, 196, 0.25);
    top: -80px;
    left: -80px;
    animation: dgBlurFloat 10s ease-in-out infinite;
}

.dg-eco-blur-two {
    width: 280px;
    height: 280px;
    background: rgba(144, 224, 239, 0.25);
    bottom: -60px;
    right: -60px;
    animation: dgBlurFloat2 12s ease-in-out infinite;
}

@keyframes dgBlurFloat {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(40px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes dgBlurFloat2 {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-40px, -20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.dg-eco-wrapper {
    max-width: 1280px;
    margin: auto;
    display: flex;
    align-items: flex-start; /* center se flex-start */
    justify-content: space-between;
    gap: 90px;
    position: relative;
    z-index: 2;
}

.dg-eco-left-box {
    flex: 1;
}

.dg-eco-left{
    display:flex;
    flex-direction:column;
}

@media (min-width: 1101px) {
    .dg-eco-item:nth-child(5),
    .dg-eco-item:nth-child(6){
        width: calc(100% + 470px);
    }
}

.dg-eco-image-box{
    text-align:center;
    margin-top:100px;     /* diagram aur image ke beech gap */
    margin-bottom:-60px; /* neeche ka blank space cover */
}

.dg-eco-image{
    width:100%;
    max-width:500px;
    height:auto;
    display:block;
    margin:0 auto;
}

.dg-eco-tag {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(141, 169, 196, 0.12);
    border: 1px solid rgba(141, 169, 196, 0.2);
    border-radius: 40px;
    color: #607a92;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.dg-eco-title {
    font-size: 54px;
    line-height: 1.12;
    color: #1f2937;
    margin-bottom: 28px;
    font-weight: 400;
    letter-spacing: -1px;
}

.dg-eco-desc {
    font-size: 17px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 45px;
    max-width: 700px;
}

.dg-eco-list {
    display: grid;
    gap: 22px;
}

.dg-eco-item {
    position: relative;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    border: 1px solid rgba(141, 169, 196, 0.12);
    backdrop-filter: blur(16px);
    transition: all 0.45s ease;
    overflow: hidden;
}

.dg-eco-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(141, 169, 196, 0.12),
        transparent
    );
    transform: translateX(-100%);
    transition: 0.8s;
}

.dg-eco-item:hover::before {
    transform: translateX(100%);
}

.dg-eco-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(141, 169, 196, 0.12);
}

.dg-eco-item h4 {
    font-size: 20px;
    color: #25364a;
    margin-bottom: 12px;
    font-weight: 600;
}

.dg-eco-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #5f6c7b;
}

/* right circular layout */
.dg-eco-right {
    flex: 0 0 470px;
    position: relative;
}

.dg-eco-center {
    position: relative;
    width: 460px;
    height: 460px;
    margin: auto;
}



.dg-eco-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(135deg, #8da9c4, #9dd9f3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 20px 40px rgba(141, 169, 196, 0.25);
    animation: dgPulse 4s ease infinite;
}

@keyframes dgPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.06);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.dg-eco-orbit {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    animation: dgFloat 5s ease-in-out infinite;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.orbit1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
}

.orbit2 {
    top: 90px;
    right: 0;
    background: #ec4899;
}

.orbit3 {
    bottom: 90px;
    right: 0;
    background: #8b5cf6;
}

.orbit4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
}

.orbit5 {
    bottom: 90px;
    left: 0;
    background: #10b981;
}

.orbit6 {
    top: 90px;
    left: 0;
    background: #84cc16;
}

@keyframes dgFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 1100px) {
    .dg-eco-wrapper {
        flex-direction: column;
    }

    .dg-eco-right {
        flex: unset;
    }
}

@media (max-width: 767px) {
    .dg-eco-solutions {
        padding: 100px 20px 90px;
    }

    .dg-eco-title {
        font-size: 34px;
        line-height: 1.25;
    }

    .dg-eco-desc {
        font-size: 15px;
    }

    .dg-eco-item {
        padding: 22px;
    }

    .dg-eco-item h4 {
        font-size: 18px;
    }

    .dg-eco-center {
        width: 320px;
        height: 380px;
    }

    .dg-eco-core {
        width: 110px;
        height: 110px;
        font-size: 16px;
    }

    .dg-eco-orbit {
        width: 82px;
        height: 82px;
        font-size: 11px;
        padding: 10px;
    }
}

/* features */
.dg-ec-feature-section {
    position: relative;
    padding: 80px 20px 80px;
    background: #f0ead2;
    overflow: hidden;
}

/* subtle animated bg */
.dg-ec-feature-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(rgba(0, 212, 255, 0.12), transparent 70%);
    top: -120px;
    left: -120px;
    border-radius: 50%;
    animation: dgGlowMove 10s ease-in-out infinite;
}

@keyframes dgGlowMove {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(40px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.dg-ec-feature-container {
    max-width: 1250px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.dg-ec-feature-heading {
    text-align: center;
    margin-bottom: 75px;
}

.dg-ec-feature-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 40px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.12);
    color: #00a8cc;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.dg-ec-feature-heading h2 {
    font-size: 52px;
    line-height: 1.15;
    color: #1f2937;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -1px;
}

.dg-ec-feature-heading p {
    max-width: 760px;
    margin: auto;
    font-size: 17px;
    line-height: 1.9;
    color: #64748b;
}

/* feature grid */
.dg-ec-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 24px;
    margin-bottom: 60px;
}

.dg-ec-feature-card {
    position: relative;
    background: #fff;
    padding: 42px 22px 26px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.45s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    overflow: visible;
}

/* top icon */
.dg-ec-icon-wrap {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dg-ec-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* colors */
.cyan {
    border-color: #00d4ff;
}
.cyan .dg-ec-icon {
    background: rgba(0, 212, 255, 0.12);
    color: #00b8e6;
}

.blue {
    border-color: #00b8ff;
}
.blue .dg-ec-icon {
    background: rgba(0, 184, 255, 0.12);
    color: #0094d6;
}

.orange {
    border-color: #ffb648;
}
.orange .dg-ec-icon {
    background: rgba(255, 182, 72, 0.12);
    color: #f59e0b;
}

.red {
    border-color: #ff4d5a;
}
.red .dg-ec-icon {
    background: rgba(255, 77, 90, 0.12);
    color: #ef4444;
}

.green {
    border-color: #84cc16;
}
.green .dg-ec-icon {
    background: rgba(132, 204, 22, 0.12);
    color: #65a30d;
}

.purple {
    border-color: #a855f7;
}
.purple .dg-ec-icon {
    background: rgba(168, 85, 247, 0.12);
    color: #9333ea;
}

.yellow {
    border-color: #facc15;
}
.yellow .dg-ec-icon {
    background: rgba(250, 204, 21, 0.12);
    color: #ca8a04;
}

.teal {
    border-color: #14b8a6;
}
.teal .dg-ec-icon {
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
}

/* active card like reference */
.dg-ec-feature-card.active {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 184, 255, 0.15);
}

.dg-ec-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.dg-ec-feature-card h4 {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    font-weight: 600;
}

/* bottom text */
.dg-ec-feature-bottom {
    max-width: 860px;
    margin: auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.9;
    color: #5f6c7b;
}

/* responsive */
@media (max-width: 1100px) {
    .dg-ec-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .dg-ec-feature-section {
        padding: 100px 20px 90px;
    }

    .dg-ec-feature-heading {
        margin-bottom: 60px;
    }

    .dg-ec-feature-heading h2 {
        font-size: 34px;
        line-height: 1.25;
    }

    .dg-ec-feature-heading p {
        font-size: 15px;
    }

    .dg-ec-feature-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .dg-ec-feature-card {
        padding: 40px 20px 24px;
    }

    .dg-ec-feature-card h4 {
        font-size: 15px;
    }

    .dg-ec-feature-bottom {
        font-size: 15px;
    }
}

/* payment */
.dg-alt-pay-section {
    position: relative;
    padding: 80px 20px 80px;
    background: #f5f7fb;
    overflow: hidden;
}

/* top right angled shape */
.dg-alt-corner {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    background: #001d72;
    transform: rotate(45deg);
}

/* container */
.dg-alt-container {
    max-width: 1220px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* heading */
.dg-alt-heading {
    text-align: center;
    margin-bottom: 85px;
}

.dg-alt-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 40px;
    background: rgba(0, 29, 114, 0.05);
    border: 1px solid rgba(0, 29, 114, 0.08);
    color: #001d72;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.dg-alt-heading h2 {
    font-size: 52px;
    line-height: 1.15;
    color: #111827;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.dg-alt-heading p {
    max-width: 760px;
    margin: auto;
    font-size: 17px;
    line-height: 1.9;
    color: #64748b;
}

/* layout */
.dg-alt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 34px;
    margin-bottom: 65px;
}

/* box */
.dg-alt-box {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 82px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

/* hover */
.dg-alt-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

/* number section */
.dg-alt-number {
    position: relative;
    min-width: 72px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    clip-path: polygon(0 0, 82% 0, 100% 50%, 82% 100%, 0 100%);
}

/* content */
.dg-alt-content {
    padding: 0 24px;
}

.dg-alt-content h4 {
    font-size: 16px;
    color: #1f2937;
    font-weight: 600;
    line-height: 1.5;
}

/* colors */
.green {
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.green .dg-alt-number {
    background: #10b981;
}

.blue {
    border: 1px solid rgba(59, 130, 246, 0.25);
}
.blue .dg-alt-number {
    background: #3b82f6;
}

.orange {
    border: 1px solid rgba(249, 115, 22, 0.25);
}
.orange .dg-alt-number {
    background: #f97316;
}

.pink {
    border: 1px solid rgba(236, 72, 153, 0.25);
}
.pink .dg-alt-number {
    background: #ec4899;
}

.purple {
    border: 1px solid rgba(168, 85, 247, 0.25);
}
.purple .dg-alt-number {
    background: #a855f7;
}

.cyan {
    border: 1px solid rgba(6, 182, 212, 0.25);
}
.cyan .dg-alt-number {
    background: #06b6d4;
}

.yellow {
    border: 1px solid rgba(234, 179, 8, 0.25);
}
.yellow .dg-alt-number {
    background: #eab308;
}

.teal {
    border: 1px solid rgba(20, 184, 166, 0.25);
}
.teal .dg-alt-number {
    background: #14b8a6;
}

/* bottom text */
.dg-alt-bottom {
    max-width: 820px;
    margin: auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.9;
    color: #5f6c7b;
}

/* responsive */
@media (max-width: 991px) {
    .dg-alt-heading {
        margin-bottom: 70px;
    }

    .dg-alt-heading h2 {
        font-size: 40px;
    }

    .dg-alt-grid {
        gap: 22px;
    }
}

@media (max-width: 767px) {
    .dg-alt-pay-section {
        padding: 105px 20px 90px;
    }

    .dg-alt-heading h2 {
        font-size: 32px;
        line-height: 1.25;
    }

    .dg-alt-heading p,
    .dg-alt-bottom {
        font-size: 15px;
    }

    .dg-alt-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .dg-alt-box {
        min-height: 74px;
    }

    .dg-alt-number {
        min-width: 64px;
        height: 74px;
        font-size: 15px;
    }

    .dg-alt-content {
        padding: 0 18px;
    }

    .dg-alt-content h4 {
        font-size: 15px;
    }
}

/* industries */
.dg-mini-ecom {
    position: relative;
    padding: 80px 5%;
    background: #f4f1bb;
    overflow: hidden;
}

.dg-mini-ecom::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(237, 106, 90, 0.08);
    top: -120px;
    right: -120px;
    filter: blur(20px);
}

.dg-mini-wrapper {
    max-width: 1280px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* Heading */

.dg-mini-heading {
    text-align: center;
    max-width: 760px;
    margin: auto auto 70px;
}

.dg-mini-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(237, 106, 90, 0.12);
    color: #ed6a5a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.dg-mini-heading h2 {
    font-size: 50px;
    line-height: 1.15;
    color: #2c211d;
    margin: 0;
    font-weight: 600;
    letter-spacing: -1.5px;
}

/* Grid */

.dg-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Card */

.dg-mini-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(237, 106, 90, 0.14);
    backdrop-filter: blur(12px);
    transition: 0.45s ease;
    overflow: hidden;
}

.dg-mini-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18),
        transparent 60%
    );
    opacity: 0;
    transition: 0.5s ease;
}

.dg-mini-card:hover {
    transform: translateY(-8px);
    border-color: rgba(237, 106, 90, 0.28);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.06),
        0 10px 20px rgba(237, 106, 90, 0.12);
}

.dg-mini-card:hover::before {
    opacity: 1;
}

/* Icon */

.dg-mini-icon {
    min-width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ed6a5a, #d85a4b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 14px 30px rgba(237, 106, 90, 0.22);
    transition: 0.45s ease;
}

.dg-mini-card:hover .dg-mini-icon {
    transform: scale(1.08) rotate(-6deg);
}

/* Content */

.dg-mini-content h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #2b201c;
    margin-bottom: 12px;
    font-weight: 400;
}

.dg-mini-content p {
    font-size: 15px;
    line-height: 1.85;
    color: #5d4e46;
    margin: 0;
}

/* Last Card Full Width */

.dg-mini-card:last-child {
    grid-column: span 2;
    align-items: center;
    padding: 40px;
}

/* Responsive */

@media (max-width: 991px) {
    .dg-mini-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .dg-mini-card:last-child {
        grid-column: span 1;
    }

    .dg-mini-heading h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .dg-mini-ecom {
        padding: 90px 22px;
    }

    .dg-mini-heading {
        margin-bottom: 50px;
    }

    .dg-mini-heading h2 {
        font-size: 30px;
    }

    .dg-mini-card {
        flex-direction: column;
        padding: 28px;
        gap: 18px;
    }

    .dg-mini-content h3 {
        font-size: 21px;
    }

    .dg-mini-content p {
        font-size: 14px;
    }
}

/* benefits */
.dg-commerce-lite {
    position: relative;
    padding: 80px 5%;
    background: #080502;
    overflow: hidden;
}

.dg-commerce-lite::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    top: -100px;
    right: -100px;
    filter: blur(10px);
}

.dg-commerce-lite-wrapper {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Left */

.dg-commerce-lite-left {
    position: sticky;
    top: 90px;
}

.dg-commerce-lite-tag {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.dg-commerce-lite-left h2 {
    font-size: 44px;
    line-height: 1.12;
    color: #fffaf5;
    margin: 0 0 18px;
    font-weight: 600;
    letter-spacing: -1px;
}

.dg-commerce-lite-left p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    max-width: 470px;
}

.dg-commerce-lite-bottom {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
}

/* Grid */

.dg-commerce-lite-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* Card */

.dg-commerce-lite-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: 0.35s ease;
    overflow: hidden;
}

.dg-commerce-lite-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        transparent 70%
    );
    opacity: 0;
    transition: 0.35s ease;
}

.dg-commerce-lite-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.dg-commerce-lite-card:hover::before {
    opacity: 1;
}

/* Number */

.dg-lite-no {
    min-width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: 0.35s ease;
}

.dg-commerce-lite-card:hover .dg-lite-no {
    transform: scale(1.05);
}

/* Text */

.dg-lite-content h3 {
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.dg-lite-content p {
    font-size: 13.8px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

/* Responsive */

@media (max-width: 1024px) {
    .dg-commerce-lite-wrapper {
        grid-template-columns: 1fr;
    }

    .dg-commerce-lite-left {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .dg-commerce-lite {
        padding: 75px 22px;
    }

    .dg-commerce-lite-grid {
        grid-template-columns: 1fr;
    }

    .dg-commerce-lite-left h2 {
        font-size: 32px;
    }

    .dg-commerce-lite-card {
        padding: 20px;
    }
}

/* why choose */

/* Add these background cubes inside section */

.dg-ecom-flow {
    position: relative;
    isolation: isolate;
}

/* Moving Cubes */

.dg-cube {
    position: absolute;
    border: 1px solid rgba(123, 223, 242, 0.18);
    background: rgba(123, 223, 242, 0.05);
    backdrop-filter: blur(3px);
    transform-style: preserve-3d;
    z-index: 1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Cube 1 */

.dg-cube-one {
    width: 42px;
    height: 42px;
    top: 12%;
    left: 8%;
    transform: rotate(18deg);
    animation: dgCubeFloatOne 12s linear infinite;
}

/* Cube 2 */

.dg-cube-two {
    width: 65px;
    height: 65px;
    top: 22%;
    right: 10%;
    transform: rotate(28deg);
    animation: dgCubeFloatTwo 16s linear infinite;
}

/* Cube 3 */

.dg-cube-three {
    width: 26px;
    height: 26px;
    bottom: 18%;
    left: 18%;
    transform: rotate(15deg);
    animation: dgCubeFloatThree 10s linear infinite;
}

/* Cube 4 */

.dg-cube-four {
    width: 55px;
    height: 55px;
    bottom: 12%;
    right: 14%;
    transform: rotate(35deg);
    animation: dgCubeFloatFour 14s linear infinite;
}

/* Cube 5 */

.dg-cube-five {
    width: 18px;
    height: 18px;
    top: 52%;
    left: 48%;
    transform: rotate(12deg);
    animation: dgCubeFloatFive 8s linear infinite;
}

/* Animations */

@keyframes dgCubeFloatOne {
    0% {
        transform: translateY(0px) rotate(18deg);
    }

    50% {
        transform: translateY(35px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes dgCubeFloatTwo {
    0% {
        transform: translateY(0px) rotate(28deg);
    }

    50% {
        transform: translateY(-28px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes dgCubeFloatThree {
    0% {
        transform: translateY(0px) rotate(15deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes dgCubeFloatFour {
    0% {
        transform: translateY(0px) rotate(35deg);
    }

    50% {
        transform: translateY(30px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes dgCubeFloatFive {
    0% {
        transform: translateY(0px) rotate(12deg);
    }

    50% {
        transform: translateY(-18px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}
.dg-ecom-flow {
    position: relative;
    padding: 80px 5%;
    background: #eff7f6;
    overflow: hidden;
}

/* Background Effects */

.dg-flow-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.dg-flow-blur-one {
    width: 280px;
    height: 280px;
    background: rgba(123, 223, 242, 0.14);
    top: -100px;
    right: -100px;
    animation: dgFloatOne 8s ease-in-out infinite;
}

.dg-flow-blur-two {
    width: 180px;
    height: 180px;
    background: rgba(123, 223, 242, 0.1);
    bottom: -60px;
    left: -60px;
    animation: dgFloatTwo 9s ease-in-out infinite;
}

@keyframes dgFloatOne {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(25px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes dgFloatTwo {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.dg-ecom-flow-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: auto;
}

/* Heading */

.dg-flow-heading {
    text-align: center;
    max-width: 760px;
    margin: auto auto 65px;
}

.dg-flow-tag {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 100px;
    background: rgba(123, 223, 242, 0.12);
    color: #2398b2;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.dg-flow-heading h2 {
    font-size: 42px;
    line-height: 1.15;
    color: #16333a;
    margin: 0 0 16px;
    font-weight: 600;
    letter-spacing: -1px;
}

.dg-flow-heading p {
    font-size: 15px;
    line-height: 1.85;
    color: #60747a;
    margin: 0;
}

/* Timeline Layout */

.dg-flow-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* Item */

.dg-flow-item {
    position: relative;
    padding: 24px 22px 24px 26px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(123, 223, 242, 0.12);
    border-radius: 24px;
    transition: 0.35s ease;
    overflow: hidden;
}

.dg-flow-item:hover {
    transform: translateY(-6px);
    border-color: rgba(123, 223, 242, 0.22);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

/* Vertical Accent Line */

.dg-flow-line {
    position: absolute;
    width: 3px;
    height: 55px;
    left: 0;
    top: 24px;
    border-radius: 20px;
    background: linear-gradient(to bottom, #7bdff2, transparent);
}

/* Icon */

.dg-flow-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #7bdff2, #5ccfe5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    margin-bottom: 18px;
    transition: 0.35s ease;
    box-shadow: 0 10px 22px rgba(123, 223, 242, 0.2);
}

.dg-flow-item:hover .dg-flow-icon {
    transform: rotate(-6deg) scale(1.05);
}

/* Text */

.dg-flow-content h3 {
    font-size: 17px;
    line-height: 1.45;
    color: #16343c;
    margin-bottom: 8px;
    font-weight: 600;
}

.dg-flow-content p {
    font-size: 13.5px;
    line-height: 1.75;
    color: #667980;
    margin: 0;
}

/* Bottom */

.dg-flow-bottom {
    margin-top: 45px;
    text-align: center;
    font-size: 15px;
    line-height: 1.9;
    color: #5d7077;
    max-width: 820px;
    margin-inline: auto;
}

/* Responsive */

@media (max-width: 1024px) {
    .dg-flow-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dg-ecom-flow {
        padding: 75px 22px;
    }

    .dg-flow-heading {
        margin-bottom: 45px;
    }

    .dg-flow-heading h2 {
        font-size: 32px;
    }

    .dg-flow-timeline {
        grid-template-columns: 1fr;
    }

    .dg-flow-item {
        padding: 22px;
    }
}

/* future */
.dg-future-commerce {
    position: relative;
    padding: 80px 5%;
    background: #f3ffb6;
    overflow: hidden;
    isolation: isolate;
}

/* Animated Background */

.dg-future-wave {
    position: absolute;
    width: 140%;
    height: 260px;
    background: linear-gradient(
        90deg,
        rgba(211, 139, 93, 0.1),
        rgba(211, 139, 93, 0.02),
        rgba(211, 139, 93, 0.1)
    );
    bottom: -180px;
    left: -10%;
    border-radius: 40%;
    animation: dgFutureWave 12s linear infinite;
}

@keyframes dgFutureWave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-3%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Rotating Ring */

.dg-future-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(211, 139, 93, 0.18);
    top: -120px;
    right: -120px;
    animation: dgFutureRotate 18s linear infinite;
}

@keyframes dgFutureRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Moving Cubes */

.dg-future-cube {
    position: absolute;
    border: 1px solid rgba(211, 139, 93, 0.18);
    background: rgba(211, 139, 93, 0.05);
    backdrop-filter: blur(4px);
}

.dg-future-cube-one {
    width: 48px;
    height: 48px;
    top: 12%;
    left: 8%;
    animation: dgCubeOne 10s linear infinite;
}

.dg-future-cube-two {
    width: 22px;
    height: 22px;
    top: 22%;
    right: 12%;
    animation: dgCubeTwo 8s linear infinite;
}

.dg-future-cube-three {
    width: 65px;
    height: 65px;
    bottom: 15%;
    left: 14%;
    animation: dgCubeThree 12s linear infinite;
}

.dg-future-cube-four {
    width: 32px;
    height: 32px;
    bottom: 10%;
    right: 10%;
    animation: dgCubeFour 9s linear infinite;
}

@keyframes dgCubeOne {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(30px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes dgCubeTwo {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes dgCubeThree {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-24px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes dgCubeFour {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(18px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* Wrapper */

.dg-future-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}

/* Left */

.dg-future-left {
    position: sticky;
    top: 90px;
}

.dg-future-tag {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 100px;
    background: rgba(211, 139, 93, 0.12);
    color: #a56738;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.dg-future-left h2 {
    font-size: 42px;
    line-height: 1.12;
    color: #31210f;
    margin: 0 0 18px;
    font-weight: 600;
    letter-spacing: -1px;
}

.dg-future-left p {
    font-size: 15px;
    line-height: 1.85;
    color: #655542;
    margin: 0;
    max-width: 470px;
}

.dg-future-bottom {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(211, 139, 93, 0.18);
    font-size: 14px;
    line-height: 1.85;
    color: #715e49;
    max-width: 480px;
}

/* Right */

.dg-future-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Item */

.dg-future-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(211, 139, 93, 0.1);
    backdrop-filter: blur(12px);
    transition: 0.35s ease;
    overflow: hidden;
}

.dg-future-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(211, 139, 93, 0.08),
        transparent 70%
    );
    opacity: 0;
    transition: 0.35s ease;
}

.dg-future-item:hover {
    transform: translateY(-5px);
    border-color: rgba(211, 139, 93, 0.18);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
}

.dg-future-item:hover::before {
    opacity: 1;
}

/* Icon */

.dg-future-icon {
    min-width: 50px;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, #d38b5d, #be7545);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 10px 22px rgba(211, 139, 93, 0.18);
    transition: 0.35s ease;
}

.dg-future-item:hover .dg-future-icon {
    transform: rotate(-6deg) scale(1.05);
}

/* Content */

.dg-future-content h3 {
    font-size: 17px;
    line-height: 1.4;
    color: #352313;
    margin-bottom: 7px;
    font-weight: 600;
}

.dg-future-content p {
    font-size: 13.5px;
    line-height: 1.8;
    color: #6e5c4a;
    margin: 0;
}

/* Responsive */

@media (max-width: 1024px) {
    .dg-future-wrapper {
        grid-template-columns: 1fr;
    }

    .dg-future-left {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .dg-future-commerce {
        padding: 75px 22px;
    }

    .dg-future-left h2 {
        font-size: 32px;
    }

    .dg-future-item {
        padding: 20px;
    }
}

/* CTA */
.launch-ecommerce-portal-cta-section {
    position: relative;
    padding: 80px 5%;
    background: #011936;
    overflow: hidden;
    isolation: isolate;
}

/* Animated Gradient */

.launch-ecommerce-portal-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(194, 234, 189, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(194, 234, 189, 0.06),
            transparent 30%
        );
    animation: portalGradientMove 12s ease-in-out infinite alternate;
}

@keyframes portalGradientMove {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

/* Floating Orbs */

.launch-ecommerce-portal-floating-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(194, 234, 189, 0.1);
    filter: blur(10px);
}

.orb-one {
    width: 180px;
    height: 180px;
    top: -60px;
    left: -40px;
    animation: portalOrbFloat 9s ease-in-out infinite;
}

.orb-two {
    width: 120px;
    height: 120px;
    bottom: -30px;
    right: -30px;
    animation: portalOrbFloatTwo 8s ease-in-out infinite;
}

@keyframes portalOrbFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes portalOrbFloatTwo {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Rotating Ring */

.launch-ecommerce-portal-rotating-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(194, 234, 189, 0.08);
    top: -180px;
    right: -160px;
    animation: portalRotate 18s linear infinite;
}

@keyframes portalRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Cubes */

.launch-ecommerce-portal-cube {
    position: absolute;
    border: 1px solid rgba(194, 234, 189, 0.14);
    background: rgba(194, 234, 189, 0.04);
    backdrop-filter: blur(4px);
}

.cube-one {
    width: 42px;
    height: 42px;
    top: 14%;
    left: 12%;
    animation: cubeMoveOne 10s linear infinite;
}

.cube-two {
    width: 24px;
    height: 24px;
    top: 24%;
    right: 10%;
    animation: cubeMoveTwo 8s linear infinite;
}

.cube-three {
    width: 62px;
    height: 62px;
    bottom: 10%;
    left: 18%;
    animation: cubeMoveThree 12s linear infinite;
}

@keyframes cubeMoveOne {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(30px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes cubeMoveTwo {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes cubeMoveThree {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(24px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* Wrapper */

.launch-ecommerce-portal-cta-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: auto;
}

/* CTA Box */

.launch-ecommerce-portal-cta-box {
    position: relative;
    text-align: center;
    padding: 60px 55px;
    border-radius: 36px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.03)
    );

    border: 1px solid rgba(194, 234, 189, 0.1);

    backdrop-filter: blur(16px);

    overflow: hidden;

    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.22);
}

/* Glass Shine */

.launch-ecommerce-portal-cta-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    top: -120px;
    left: -120px;
    transform: rotate(25deg);
    animation: portalShine 8s linear infinite;
}

@keyframes portalShine {
    0% {
        left: -180px;
    }

    100% {
        left: 130%;
    }
}

/* Badge */

.launch-ecommerce-portal-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(194, 234, 189, 0.08);
    border: 1px solid rgba(194, 234, 189, 0.1);
    color: #c2eabd;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.launch-ecommerce-portal-mini-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c2eabd;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }

    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

/* Heading */

.launch-ecommerce-portal-cta-box h2 {
    font-size: 48px;
    line-height: 1.12;
    color: #ffffff;
    margin: 0 0 18px;
    font-weight: 600;
    letter-spacing: -1px;
}

/* Paragraph */

.launch-ecommerce-portal-description {
    max-width: 760px;
    margin: auto;
    font-size: 15px;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.72);
}

/* Highlight */

.launch-ecommerce-portal-highlight {
    max-width: 720px;
    margin: 28px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(194, 234, 189, 0.1);
    font-size: 14px;
    line-height: 1.85;
    color: #c2eabd;
}

/* Buttons */

.launch-ecommerce-portal-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.launch-ecommerce-portal-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.35s ease;
}

/* Primary */

.primary-btn {
    background: #c2eabd;
    color: #011936;
    box-shadow: 0 12px 30px rgba(194, 234, 189, 0.18);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(194, 234, 189, 0.24);
}

/* Glow */

.btn-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    top: -40px;
    left: -60px;
    filter: blur(20px);
    animation: btnGlowMove 5s linear infinite;
}

@keyframes btnGlowMove {
    0% {
        left: -80px;
    }

    100% {
        left: 130%;
    }
}

/* Secondary */

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(194, 234, 189, 0.12);
    color: #ffffff;
}

.secondary-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

/* Responsive */

@media (max-width: 768px) {
    .launch-ecommerce-portal-cta-section {
        padding: 75px 22px;
    }

    .launch-ecommerce-portal-cta-box {
        padding: 42px 24px;
    }

    .launch-ecommerce-portal-cta-box h2 {
        font-size: 34px;
    }

    .launch-ecommerce-portal-actions {
        flex-direction: column;
    }

    .launch-ecommerce-portal-btn {
        width: 100%;
        justify-content: center;
    }
}

/* FAQ */
.ecommerce-faq-section {
    position: relative;
    padding: 80px 5%;
    background: #006d77;
    overflow: hidden;
    isolation: isolate;
}

/* Animated Gradient */

.ecommerce-faq-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(131, 197, 190, 0.1),
            transparent 30%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(131, 197, 190, 0.08),
            transparent 30%
        );
    animation: ecommerceFaqGradient 12s ease-in-out infinite alternate;
}

@keyframes ecommerceFaqGradient {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

/* Orbs */

.ecommerce-faq-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(131, 197, 190, 0.08);
    filter: blur(10px);
}

.orb-one {
    width: 180px;
    height: 180px;
    top: -60px;
    left: -40px;
    animation: faqOrbOne 8s ease-in-out infinite;
}

.orb-two {
    width: 120px;
    height: 120px;
    bottom: -30px;
    right: -30px;
    animation: faqOrbTwo 9s ease-in-out infinite;
}

@keyframes faqOrbOne {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes faqOrbTwo {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Cubes */

.ecommerce-faq-cube {
    position: absolute;
    border: 1px solid rgba(131, 197, 190, 0.16);
    background: rgba(131, 197, 190, 0.04);
    backdrop-filter: blur(4px);
}

.cube-one {
    width: 42px;
    height: 42px;
    top: 14%;
    left: 10%;
    animation: faqCubeOne 10s linear infinite;
}

.cube-two {
    width: 24px;
    height: 24px;
    top: 24%;
    right: 12%;
    animation: faqCubeTwo 8s linear infinite;
}

.cube-three {
    width: 62px;
    height: 62px;
    bottom: 10%;
    left: 16%;
    animation: faqCubeThree 12s linear infinite;
}

@keyframes faqCubeOne {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(28px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes faqCubeTwo {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes faqCubeThree {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(24px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* Ring */

.ecommerce-faq-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(131, 197, 190, 0.08);
    top: -180px;
    right: -160px;
    animation: faqRotate 18s linear infinite;
}

@keyframes faqRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Wrapper */

.ecommerce-faq-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
    align-items: start;
}

/* Left */

.ecommerce-faq-left {
    position: sticky;
    top: 90px;
}

.ecommerce-faq-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(131, 197, 190, 0.08);
    border: 1px solid rgba(131, 197, 190, 0.1);
    color: #bde9e3;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.ecommerce-faq-left h2 {
    font-size: 42px;
    line-height: 1.12;
    color: #ffffff;
    margin: 0 0 18px;
    font-weight: 600;
    letter-spacing: -1px;
}

.ecommerce-faq-left p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    max-width: 470px;
}

/* FAQ */

.ecommerce-faq-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Item */

.ecommerce-faq-item {
    position: relative;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.03)
    );

    border: 1px solid rgba(131, 197, 190, 0.1);

    backdrop-filter: blur(14px);

    overflow: hidden;

    transition: 0.35s ease;
}

.ecommerce-faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(131, 197, 190, 0.18);
}

/* Question */

.ecommerce-faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
}

.ecommerce-faq-question span {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 600;
}

.ecommerce-faq-question i {
    min-width: 38px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(131, 197, 190, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bde9e3;
    font-size: 13px;
    transition: 0.35s ease;
}

/* Answer */

.ecommerce-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.ecommerce-faq-answer p {
    padding: 0 24px 24px;
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.72);
}

/* Active */

.ecommerce-faq-item.active .ecommerce-faq-answer {
    max-height: 300px;
}

.ecommerce-faq-item.active .ecommerce-faq-question i {
    transform: rotate(45deg);
    background: #83c5be;
    color: #006d77;
}

/* Responsive */

@media (max-width: 1024px) {
    .ecommerce-faq-wrapper {
        grid-template-columns: 1fr;
    }

    .ecommerce-faq-left {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .ecommerce-faq-section {
        padding: 75px 22px;
    }

    .ecommerce-faq-left h2 {
        font-size: 32px;
    }

    .ecommerce-faq-question {
        padding: 20px;
    }

    .ecommerce-faq-answer p {
        padding: 0 20px 20px;
    }

    .ecommerce-faq-question span {
        font-size: 15px;
    }
}
