/* ==========================================
   CREATIVE AGENCY SOLUTIONS CSS
========================================== */

.industry-section{
    padding:80px 0;
    background:linear-gradient(
        180deg,
        #fafbff 0%,
        #ffffff 100%
    );
}

/* HERO */

.industry-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(111,66,193,.12);
    color:#6f42c1;
    font-size:.9rem;
    font-weight:600;
    letter-spacing:.5px;
}

.industry-title{
    font-size:clamp(2.2rem,4vw,4rem);
    font-weight:700;
    line-height:1.15;
    color:#111827;
    margin-bottom:20px;
}

.industry-subtitle{
    max-width:850px;
    margin:auto;
    color:#6b7280;
    font-size:1.1rem;
    line-height:1.8;
}

/* SECTION */

.industry-heading{
    font-size:2rem;
    font-weight:700;
    color:#111827;
}

.section-title{
    font-size:1.35rem;
    font-weight:700;
    color:#111827;
    margin-bottom:25px;
}

/* CARD */

.glass-card{
    background:#ffffff;
    border-radius:24px;
    padding:35px;
    border:1px solid rgba(111,66,193,.08);
    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
    transition:all .35s ease;
    overflow:hidden;
    position:relative;
}

.glass-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        #6f42c1,
        #0d6efd
    );
}

.glass-card:hover{
    transform:translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0,0,0,.10);
}

/* LIST */

.industry-list{
    list-style:none;
    margin:0;
    padding:0;
}

.industry-list li{
    display:flex;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid rgba(0,0,0,.06);
    color:#4b5563;
}

.industry-list li:last-child{
    border-bottom:none;
}

.industry-list i{
    color:#6f42c1;
    margin-right:10px;
    flex-shrink:0;
}

/* SERVICES */

.service-card{
    text-align:center;
}

.service-icon{
    display:block;
    font-size:3rem;
    margin-bottom:20px;
    color:#6f42c1;
}

.service-card h4{
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
}

.service-card p{
    color:#6b7280;
    line-height:1.8;
}

/* BENEFITS */

.benefit-box{
    background:#ffffff;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    border:1px solid rgba(111,66,193,.08);
    box-shadow:
        0 10px 25px rgba(0,0,0,.05);
    transition:all .35s ease;
    height:100%;
}

.benefit-box:hover{
    transform:translateY(-8px);
}

.benefit-icon{
    display:block;
    font-size:2.8rem;
    color:#6f42c1;
    margin-bottom:15px;
}

.benefit-box p{
    margin:0;
    font-weight:600;
    color:#111827;
}

/* MOBILE */

@media (max-width:768px){

    .industry-section{
        padding:60px 0;
    }

    .glass-card{
        padding:25px;
    }

    .industry-title{
        font-size:2rem;
    }

    .industry-heading{
        font-size:1.7rem;
    }

    .section-title{
        font-size:1.2rem;
    }

    .service-icon{
        font-size:2.5rem;
    }

}