/*=========================================
        IMPACT SECTION
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Hind',sans-serif;
    background:#ffffff;
    color:#222;
    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:.12;

    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-family:'Hind',sans-serif;

    font-size:16px;

    font-weight:600;

    margin-bottom:28px;

}

.impact h2{

    font-family:'Hind',sans-serif;

    color:#18122B;

    font-size:50px;

    font-weight:700;

    line-height:1.28;

    margin-bottom:28px;

}

.impact-subtitle{

    max-width:700px;

    margin:0 auto 55px;

    color:#444;

    font-family:'Hind',sans-serif;

    font-size:20px;

    font-weight:400;

    line-height:1.85;

}

/*=========================================
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{

    font-family:'Hind',sans-serif;

    color:#18122B;

    font-size:40px;

    font-weight:700;

    margin-bottom:12px;

}

.stat-card span{

    font-family:'Hind',sans-serif;

    color:#444;

    font-size:20px;

    font-weight:500;

}

/*=========================================
TRUST BOX
=========================================*/

.trust-box{

    margin-top:20px;

}

.stars{

    color:#FFD700;

    font-size:22px;

    margin-bottom:15px;

}

.trust-box p{

    max-width:700px;

    margin:0 auto 35px;

    color:#444;

    font-family:'Hind',sans-serif;

    font-size:20px;

    font-weight:400;

    line-height:1.85;

}

/*=========================================
BUTTON
=========================================*/

.impact-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;

    padding:17px 34px;

    border-radius:50px;

    background:linear-gradient(135deg,#7B2FF7,#5B21B6);

    color:#ffffff;

    font-family:'Hind',sans-serif;

    font-size:18px;

    font-weight:600;

    transition:.35s;

}

.impact-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 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;

        line-height:1.3;

    }

    .impact-subtitle{

        font-size:18px;

        line-height:1.8;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .stat-card{

        padding:30px 20px;

    }

    .stat-card h3{

        font-size:34px;

    }

    .stat-card span{

        font-size:18px;

    }

    .trust-box p{

        font-size:18px;

        line-height:1.8;

    }

}

@media(max-width:480px){

    .impact{

        padding:60px 5%;

    }

    .impact-badge{

        font-size:15px;

        padding:8px 18px;

    }

    .impact h2{

        font-size:32px;

    }

    .impact-subtitle{

        font-size:17px;

    }

    .stat-card{

        padding:28px 18px;

    }

    .stat-card i{

        width:60px;

        height:60px;

        font-size:26px;

    }

    .stat-card h3{

        font-size:30px;

    }

    .stat-card span{

        font-size:17px;

    }

    .impact-btn{

        width:100%;

        max-width:280px;

        font-size:17px;

        justify-content:center;

    }

}