/*=========================================
        IMPACT SECTION
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    overflow-x:hidden;
}

/*=========================================
BACKGROUND
=========================================*/

.impact{

    width:100%;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:70px 8%;

    position:relative;
    overflow:hidden;

    background:
    radial-gradient(circle at top right,
    rgba(123,47,247,.15),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(168,85,247,.08),
    transparent 35%),

    linear-gradient(
    135deg,
    #ffffff 0%,
    #faf8ff 55%,
    #ffffff 100%);
}

.impact::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    right:-200px;
    top:-180px;

    background:#A855F7;

    opacity:.10;

    border-radius:50%;

    filter:blur(150px);
}

/*=========================================
CONTAINER
=========================================*/

.impact-container{

    width:100%;
    max-width:1400px;

    text-align:center;

    position:relative;

    z-index:2;

}

/*=========================================
HEADING
=========================================*/

.impact-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:#F3ECFF;

    border:1.5px solid #C084FC;

    color:#6D28D9;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;
}

.impact h2{

    color:#18122B;

    font-size:52px;

    line-height:1.2;

    margin-bottom:18px;
}

.impact-subtitle{

    color:#666666;

    font-size:18px;

    line-height:1.8;

    max-width:700px;

    margin:0 auto 50px;
}

/*=========================================
STATISTICS
=========================================*/

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-bottom:50px;

}

.stat-card{

    background:#FCFBFF;

    border:2px solid #7B2FF7;

    border-radius:24px;

    padding:35px 20px;

    transition:.35s;

    box-shadow:
    0 8px 25px rgba(123,47,247,.12);
}

.stat-card:hover{

    transform:translateY(-8px);

    background:#F6F1FF;

    border-color:#5B21B6;

    box-shadow:
    0 18px 45px rgba(123,47,247,.22);
}

.stat-card i{

    width:70px;
    height:70px;

    border-radius:18px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:0 auto 20px;

    background:#7B2FF7;

    color:#fff;

    font-size:30px;
}

.stat-card h3{

    color:#2F244D;

    font-size:40px;

    margin-bottom:12px;
}

.stat-card span{

    color:#666666;

    font-size:16px;
}

/*=========================================
TRUST BOX
=========================================*/

.trust-box p{

    color:#666666;

    font-size:18px;

    line-height:1.8;
}

.stars{

    color:#FFD700;

    font-size:22px;

    margin-bottom:15px;

}

.trust-box p{

    color:#D8D8E8;

    font-size:18px;

    line-height:1.8;

}

/*=========================================
BUTTON
=========================================*/

.impact-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    padding:17px 34px;

    border-radius:50px;

    background:linear-gradient(135deg,#7B2FF7,#5B21B6);

    color:#fff;

    font-weight:600;

    transition:.35s;
}

.impact-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(123,47,247,.35);
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.impact{

padding:70px 6%;

}

.impact h2{

font-size:38px;

}

.impact-subtitle{

font-size:16px;

}

.stats-grid{

grid-template-columns:1fr;

}

.stat-card h3{

font-size:34px;

}

}