/* =========================================================
   HERO SECTION
========================================================= */

.ecommerce-hero{
    position: relative;
    overflow: hidden;
    padding: 25px 0;
    background:
    radial-gradient(circle at top left, rgba(79,70,229,0.25), transparent 35%),
    radial-gradient(circle at bottom right, rgba(6,182,212,0.20), transparent 35%),
    #040817;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.hero-badge{
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 12px 14px;
    border-radius: 60px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-title{
    font-size: 4rem;
    line-height: 1;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 35px;
    max-width: 650px;
    letter-spacing: -2px;
}

.hero-desc{
    color: rgba(255,255,255,0.82);
    font-size: 1.12rem;
    line-height: 2;
    max-width: 650px;
    margin-bottom: 45px;
}

.hero-desc strong{
    color: #ffffff;
    font-weight: 700;
}

/* =========================================================
   BUTTONS
========================================================= */

.hero-btns{
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
   
}

.hero-btn-primary{
    background: linear-gradient(135deg,#4f46e5,#06b6d4);
    border: none;
    padding: 16px 34px;
    border-radius: 60px;
    font-weight: 600;
    color: #ffffff;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(79,70,229,0.35);
}

.hero-btn-primary:hover{
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(79,70,229,0.45);
}

.hero-btn-secondary{
    border: 1px solid rgba(255,255,255,0.25);
    padding: 16px 34px;
    border-radius: 60px;
    font-weight: 600;
    color: #ffffff;
    transition: 0.35s ease;
    background: transparent;
}

.hero-btn-secondary:hover{
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

/* =========================================================
   RIGHT SIDE IMAGE
========================================================= */

.hero-image-wrapper{
    position: relative;
    z-index: 2;
}

.hero-image-box{
    position: relative;
    background: linear-gradient(145deg,#0b1228,#081225);
    border-radius: 34px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

.hero-main-img{
    width: 100%;
    border-radius: 24px;
    display: block;
    min-height: 360px;
    object-fit: cover;
}

/* =========================================================
   FLOATING TAGS
========================================================= */

.hero-floating-row{
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.floating-card-simple{
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #111827;
    padding: 15px 24px;
    border-radius: 18px;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: 0.35s ease;
}

.floating-card-simple:hover{
    transform: translateY(-6px);
}

.floating-card-simple i{
    color: #2563eb;
    font-size: 15px;
}

/* =========================================================
   STATS SECTION
========================================================= */

.hero-stats-modern{
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-modern-card{
    flex: 1;
    min-width: 180px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 26px;
    padding: 26px;
    backdrop-filter: blur(14px);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.stat-modern-card::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg,#4f46e5,#06b6d4);
}

.stat-modern-card:hover{
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.18);
}

.stat-icon{
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: linear-gradient(135deg,#4f46e5,#06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stat-icon i{
    color: #ffffff;
    font-size: 20px;
}

.stat-content h3{
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1;
}

.stat-content p{
    margin: 0;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    font-weight: 500;
}

/* =========================================================
   BACKGROUND BLUR
========================================================= */

.hero-blur{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.blur-1{
    width: 320px;
    height: 320px;
    background: rgba(79,70,229,0.20);
    top: -100px;
    left: -100px;
}

.blur-2{
    width: 350px;
    height: 350px;
    background: rgba(6,182,212,0.18);
    right: -120px;
    bottom: -120px;
}

/* =========================================================
   GLOBAL SECTIONS
========================================================= */

.section-tag{
    color: #06b6d4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title{
    font-size: 2.8rem;
    font-weight: 800;
}

.section-desc{
    max-width: 760px;
    margin: auto;
    color: #000000;
}

/* =========================================================
   SERVICES
========================================================= */

.service-card{
    background: #0f172a;
    padding: 35px;
    border-radius: 24px;
    height: 100%;
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
    color: #ffffff;
}

.service-card:hover{
    transform: translateY(-10px);
    border-color: #06b6d4;
}

.service-icon{
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#4f46e5,#06b6d4);
    margin-bottom: 25px;
}

.service-icon i{
    font-size: 28px;
}

.service-card h3{
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-card p{
    line-height: 1.8;
    color: #d6d6d6;
}

/* =========================================================
   FEATURES
========================================================= */

.feature-item{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.feature-item i{
    color: #06b6d4;
}

/* =========================================================
   INDUSTRY CARDS
========================================================= */

.industry-card{
    background: #0f172a;
    padding: 40px 25px;
    text-align: center;
    border-radius: 24px;
    transition: 0.4s ease;
    color: #ffffff;
}

.industry-card:hover{
    transform: translateY(-8px);
    background: #111c33;
}

.industry-card i{
    font-size: 42px;
    margin-bottom: 20px;
    color: #06b6d4;
}

.industry-card h4{
    font-weight: 700;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .hero-title{
        font-size: 4rem;
    }

}

@media(max-width:991px){

    .ecommerce-hero{
        padding: 90px 0;
    }

    .hero-title{
        font-size: 3rem;
    }

    .hero-image-wrapper{
        margin-top: 60px;
    }

    .hero-stats-modern{
        justify-content: center;
    }

}

@media(max-width:768px){

    .hero-title{
        font-size: 2.5rem;
    }

    .hero-desc{
        font-size: 1rem;
    }

    .hero-btns{
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn-secondary,
    .hero-btn-primary{
        width: 100%;
        text-align: center;
    }

    .hero-stats-modern{
        flex-direction: column;
    }

    .stat-modern-card{
        width: 100%;
    }

    .hero-floating-row{
        justify-content: center;
    }

    .floating-card-simple{
        width: 100%;
        justify-content: center;
    }

}

@media(max-width:576px){

    .hero-title{
        font-size: 2.1rem;
        line-height: 1.15;
    }

    .section-title{
        font-size: 1.9rem;
    }

    .hero-main-img{
        min-height: auto;
    }

}