.service-icon,
.benefit-icon,
.industry-list i{
    color:#fd7e14;
}

.industry-badge{
    background:rgba(253,126,20,.12);
    color:#fd7e14;
}

.glass-card::before{
    background:linear-gradient(
        90deg,
        #fd7e14,
        #ffc107
    );
}
/* ==================================================
   ECOMMERCE GROWTH SOLUTIONS
   Trimerous Technology
================================================== */

:root{
    --primary:#2563eb;
    --secondary:#7c3aed;
    --dark:#0f172a;
    --text:#475569;
    --light:#f8fafc;
    --white:#ffffff;
    --border:#e2e8f0;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:var(--text);
}

/* HERO */

.ecommerce-section{
    padding:100px 0;
    background:
    linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
}

.industry-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(37,99,235,.08);
    color:var(--primary);
    font-size:.85rem;
    font-weight:600;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.industry-title{
    font-size:3.2rem;
    font-weight:700;
    color:var(--dark);
    line-height:1.2;
    margin-bottom:25px;
}

.industry-subtitle{
    max-width:850px;
    margin:auto;
    font-size:1.08rem;
    color:#64748b;
    line-height:1.8;
}

/* GLASS CARD */

.glass-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:35px;
    height:100%;
    transition:.35s ease;
    box-shadow:0 15px 45px rgba(15,23,42,.05);
}

.glass-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(15,23,42,.10);
}

/* SECTION TITLE */

.section-title,
.industry-heading{
    font-size:2rem;
    font-weight:700;
    color:var(--dark);
    margin-bottom:25px;
}

/* PROBLEMS & SOLUTIONS */

.industry-list{
    list-style:none;
    padding:0;
    margin:0;
}

.industry-list li{
    position:relative;
    padding-left:38px;
    margin-bottom:18px;
    color:#475569;
    font-weight:500;
}

.industry-list li::before{
    content:"\f058";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    color:var(--primary);
    position:absolute;
    left:0;
    top:2px;
}

/* SERVICES */

.service-card{
    text-align:center;
}

.service-icon{
    width:85px;
    height:85px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    font-size:2rem;
    color:var(--primary);
    background:rgba(37,99,235,.08);
    border-radius:50%;
}

.service-card h4{
    color:var(--dark);
    font-size:1.3rem;
    font-weight:600;
    margin-bottom:15px;
}

.service-card p{
    color:#64748b;
    line-height:1.8;
}

/* BENEFITS */

.benefit-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    text-align:center;
    padding:35px 20px;
    transition:.3s;
    height:100%;
}

.benefit-box:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
}

.benefit-box i{
    font-size:2.3rem;
    color:var(--primary);
    margin-bottom:15px;
}

.benefit-box h4{
    color:var(--dark);
    font-weight:700;
    margin-bottom:10px;
}

.benefit-box p{
    color:#64748b;
    margin:0;
}

/* STATS */

.stat-box{
    text-align:center;
    padding:30px;
}

.stat-box h2{
    font-size:2.8rem;
    font-weight:700;
    color:var(--primary);
    margin-bottom:10px;
}

.stat-box p{
    color:#64748b;
    margin:0;
    font-weight:500;
}

/* CTA */

.cta-box{
    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));
    color:#fff;
    padding:60px;
    border-radius:30px;
    text-align:center;
}

.cta-box h2{
    font-size:2.3rem;
    font-weight:700;
    margin-bottom:20px;
}

.cta-box p{
    font-size:1.05rem;
    opacity:.9;
    max-width:700px;
    margin:auto;
}

/* RESPONSIVE */

@media(max-width:991px){

    .industry-title{
        font-size:2.4rem;
    }

    .industry-heading,
    .section-title{
        font-size:1.7rem;
    }

    .glass-card{
        padding:28px;
    }

}

@media(max-width:576px){

    .ecommerce-section{
        padding:70px 0;
    }

    .industry-title{
        font-size:2rem;
    }

    .industry-subtitle{
        font-size:1rem;
    }

    .glass-card{
        padding:24px;
    }

    .cta-box{
        padding:40px 25px;
    }

}