
.impact-section{
    padding:70px 0;
background: linear-gradient(#eef8ff 10%,#d9f0ff 100%);
    position:relative;
}

.impact-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 70px;
}

.impact-heading span{
    display:inline-block;
    color:#0093DA;
    font-size:18px;
    font-weight:600;
    margin-bottom:15px;
}

.impact-heading h2{
    font-size:45px;
    color:#006FA3;
    font-weight:800;
    margin-bottom:18px;
}

.impact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.impact-card{

    background:#fff;

    padding:45px 30px;

    border-radius:24px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.4s;

    border:1px solid rgba(0,147,218,.08);

}

.impact-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,147,218,.18);

}

.impact-card:nth-child(odd){
    background: #fff;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}
.impact-card:nth-child(odd) h4{
    color:#006FA3;
}

.impact-card:nth-child(odd) p{
    color:#444;
}

.impact-card:nth-child(odd) .impact-number{
    color:#0093DA;
}

.impact-card:nth-child(even){
    background:linear-gradient(135deg,#0093DA,#006FA3);
    box-shadow:0 20px 50px rgba(0,111,163,.25);
}

.impact-card:nth-child(even) h4,
.impact-card:nth-child(even) p,
.impact-card:nth-child(even) .impact-number{
    color:#fff;
}

.impact-card:nth-child(even) .impact-icon{
    background:#fff;
}

.impact-card:nth-child(even) .impact-icon i{
    color:#0093DA;
}

.impact-icon{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    border-radius:50%;

    background:linear-gradient(135deg,#0093DA,#006FA3);

    display:flex;

    justify-content:center;

    align-items:center;

}

.impact-icon i{

    color:#fff;

    font-size:40px;

}

.impact-number{

    font-size:35px;

    color:#0093DA;

    font-weight:800;

    margin-bottom:12px;

}

.impact-card h4{

    font-size:28px;

    color:#006FA3;

    margin-bottom:15px;

}

.impact-card p{

    color:#444;

    font-size:18px;

    line-height:1.9;

}

.impact-card:hover .impact-icon{

    transform:rotate(8deg) scale(1.08);

    transition:.35s;

}

@media(max-width:992px){

.impact-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:480px){

.impact-section{

padding:70px 0;

}

.impact-heading h2{

font-size:30px;

}

.impact-heading p{

font-size:16px;

}

.impact-grid{

grid-template-columns:1fr;

gap:20px;

}

.impact-card{

padding:35px 25px;
margin-left: 10px;
margin-right: 10px;

}

.impact-number{

font-size:34px;

}

}