.dwallnet-alumni-section{
    padding:100px 0;
    background:#020617;
    position:relative;
}


.alumni-header{
    max-width:750px;
    margin:auto;
    text-align:center;
}


.section-tag{
    color:#06b6d4;
    font-weight:600;
}


.alumni-header h2{
    font-size:45px;
    color:white;
    margin:20px 0;
}


.alumni-header p{
    color:#94a3b8;
    line-height:1.8;
}



.alumni-stats{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin:60px 0;

}


.alumni-stat-card{

    padding:35px;
    text-align:center;
    border-radius:20px;

    background:
    rgba(255,255,255,0.05);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.1);

}


.alumni-stat-card h3{

    font-size:40px;
    color:#22d3ee;
    margin-bottom:10px;

}


.alumni-stat-card span{
    color:#cbd5e1;
}




.alumni-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}



.alumni-card{

    padding:35px;

    background:
    linear-gradient(
    145deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.03)
    );

    border-radius:25px;

    text-align:center;

    transition:.4s;

}


.alumni-card:hover{

    transform:translateY(-10px);

}



.alumni-avatar img{

    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;

    margin-bottom:20px;

}



.alumni-card h3{

    color:white;

}



.alumni-card span{

    color:#22d3ee;

}



.alumni-card p{

    color:#94a3b8;
    line-height:1.7;

}

.alumni-card a{
    color: #fff !important
}

.alumni-button{

    text-align:center;
    margin-top:50px;

}

.alumni-button a{
    color: #fff !important
}



@media(max-width:900px){

    .alumni-stats{
        grid-template-columns:repeat(2,1fr);
    }


    .alumni-grid{
        grid-template-columns:1fr;
    }


    .alumni-header h2{
        font-size:32px;
    }

}



@media(max-width:500px){

    .alumni-stats{
        grid-template-columns:1fr;
    }

}

/* ============================*/

