/* ==================================================
   EDUCATION MARKETING & ANALYTICS
   TRIMEROUS TECHNOLOGY
================================================== */

.education-section{
    position:relative;
    overflow:hidden;
    padding:100px 0;
    background:
    radial-gradient(circle at top left,rgba(13,110,253,.12),transparent 35%),
    radial-gradient(circle at bottom right,rgba(25,135,84,.12),transparent 35%),
    linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
    font-family:'Poppins',sans-serif;
}

.education-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(13,110,253,.05);
    border-radius:50%;
    top:-250px;
    right:-150px;
    filter:blur(80px);
}

.education-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(25,135,84,.05);
    border-radius:50%;
    bottom:-200px;
    left:-150px;
    filter:blur(80px);
}

.education-section .container{
    position:relative;
    z-index:2;
}

/* BADGE */

.industry-badge{
    display:inline-block;
    padding:12px 24px;
    border-radius:50px;
    background:rgba(13,110,253,.08);
    border:1px solid rgba(13,110,253,.15);
    color:#0d6efd;
    font-weight:700;
    font-size:.95rem;
    letter-spacing:.5px;
}

/* HERO */

.industry-title{
    font-size:clamp(2.3rem,5vw,4.2rem);
    font-weight:800;
    line-height:1.15;
    color:#111827;
    margin-bottom:20px;
}

.industry-subtitle{
    font-size:1.1rem;
    color:#64748b;
    max-width:850px;
    margin:auto;
    line-height:1.8;
}

/* GLASS CARD */

.glass-card{
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.7);
    border-radius:24px;
    padding:35px;
    box-shadow:
    0 10px 40px rgba(0,0,0,.06);
    transition:.35s ease;
}

.glass-card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 18px 50px rgba(13,110,253,.12);
}

/* TITLES */

.section-title,
.industry-heading{
    font-size:1.8rem;
    font-weight:700;
    color:#111827;
    margin-bottom:25px;
}

.industry-heading{
    position:relative;
    display:inline-block;
}

.industry-heading::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-10px;
    width:70px;
    height:4px;
    border-radius:20px;
    background:linear-gradient(90deg,#0d6efd,#198754);
}

/* LISTS */

.industry-list{
    list-style:none;
    padding:0;
    margin:0;
}

.industry-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:12px 0;
    color:#475569;
    font-weight:500;
    border-bottom:1px solid rgba(0,0,0,.06);
}

.industry-list li:last-child{
    border-bottom:none;
}

.industry-list i{
    margin-top:3px;
    font-size:1rem;
}

.bi-check-circle-fill{
    color:#198754;
}

.bi-exclamation-circle-fill{
    color:#dc3545;
}

/* SERVICE CARDS */

.service-card{
    text-align:center;
}

.service-icon-wrap{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#0d6efd,#198754);
    box-shadow:
    0 15px 35px rgba(13,110,253,.25);
}

.service-icon{
    color:#fff;
    font-size:2rem;
}

.service-card h4{
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
}

.service-card p{
    color:#64748b;
    line-height:1.8;
    margin:0;
}

/* BENEFITS */

.benefit-box{
    background:#fff;
    border-radius:22px;
    padding:35px 20px;
    text-align:center;
    height:100%;
    border:1px solid rgba(0,0,0,.06);
    transition:.35s ease;
    box-shadow:
    0 8px 25px rgba(0,0,0,.04);
}

.benefit-box:hover{
    transform:translateY(-8px);
    border-color:#0d6efd;
    box-shadow:
    0 15px 40px rgba(13,110,253,.12);
}

.benefit-box i{
    font-size:2.5rem;
    margin-bottom:18px;
    display:block;
    color:#0d6efd;
}

.benefit-box h4{
    font-size:1rem;
    font-weight:700;
    color:#111827;
    margin-bottom:0;
}

.benefit-box p{
    margin:0;
    font-weight:600;
    color:#334155;
}

/* CTA STYLE */

.education-section .btn-primary{
    background:linear-gradient(135deg,#0d6efd,#198754);
    border:none;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
}

.education-section .btn-primary:hover{
    transform:translateY(-2px);
}

/* MOBILE */

@media (max-width:991px){

    .industry-title{
        font-size:2.4rem;
    }

    .glass-card{
        padding:25px;
    }

    .section-title,
    .industry-heading{
        font-size:1.5rem;
    }
}

@media (max-width:576px){

    .education-section{
        padding:70px 0;
    }

    .industry-title{
        font-size:2rem;
    }

    .industry-subtitle{
        font-size:1rem;
    }

    .service-icon-wrap{
        width:70px;
        height:70px;
    }

    .service-icon{
        font-size:1.6rem;
    }

    .benefit-box{
        padding:25px 15px;
    }
}

/* EDUCATION COLORS */

.industry-badge{
    background:#e8f1ff;
    color:#0d6efd;
    border:1px solid #cfe2ff;
}

.industry-heading::after{
    background:linear-gradient(90deg,#0d6efd,#198754);
}

.service-icon-wrap{
    background:linear-gradient(135deg,#0d6efd,#198754);
}

.service-icon{
    color:#fff;
}

.bi-check-circle-fill{
    color:#198754 !important;
}

.bi-exclamation-circle-fill{
    color:#dc3545 !important;
}

.benefit-box i{
    color:#0d6efd;
}

.glass-card:hover{
    border-color:#0d6efd;
}

.benefit-box:hover{
    border-color:#0d6efd;
}

.education-section{
    background:
    radial-gradient(circle at top left,
    rgba(13,110,253,.12),
    transparent 40%),

    radial-gradient(circle at bottom right,
    rgba(25,135,84,.12),
    transparent 40%),

    #ffffff;
}
/* =================================
   FORCE EDUCATION THEME COLORS
================================= */

.education-section .industry-title{
    color:#0f172a !important;
}

.education-section .industry-subtitle{
    color:#64748b !important;
}

.education-section .section-title,
.education-section .industry-heading{
    color:#0f172a !important;
}

.education-section .glass-card{
    background:#ffffff !important;
    border:1px solid #dbeafe !important;
}

.education-section .glass-card:hover{
    border-color:#0d6efd !important;
}

.education-section .service-card{
    background:#ffffff;
}

.education-section .service-card h4{
    color:#0f172a !important;
}

.education-section .service-card p{
    color:#64748b !important;
}

.education-section .benefit-box{
    background:#ffffff !important;
}

.education-section .benefit-box i{
    color:#0d6efd !important;
}

.education-section .benefit-box h4,
.education-section .benefit-box p{
    color:#0f172a !important;
}

/* Strong Gradient Icons */

.education-section .service-icon-wrap{
    background:linear-gradient(
        135deg,
        #2563eb 0%,
        #0d6efd 50%,
        #198754 100%
    ) !important;
}

/* Headings Accent */

.education-section .industry-heading::after{
    width:90px;
    height:5px;
    background:linear-gradient(
        90deg,
        #2563eb,
        #198754
    ) !important;
}

/* Premium Hover */

.education-section .benefit-box:hover,
.education-section .glass-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 20px 50px rgba(37,99,235,.15) !important;
}

/* Education Badge */

.education-section .industry-badge{
    background:#eff6ff !important;
    color:#2563eb !important;
    border:1px solid #bfdbfe !important;
}

/* Section Background */

.education-section{
    background:
        radial-gradient(circle at top left,
        rgba(37,99,235,.15),
        transparent 40%),

        radial-gradient(circle at bottom right,
        rgba(34,197,94,.15),
        transparent 40%),

        linear-gradient(
        180deg,
        #f8fbff 0%,
        #ffffff 100%
        ) !important;
}