.stat-card{

    background:white;

    border-radius:20px;

    padding:25px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-5px);

}

.stat-card h2{

    font-size:34px;

    color:var(--primary);

    font-weight:700;

}

.stat-card p{

    color:gray;

}

.stat-icon{

    width:65px;

    height:65px;

    border-radius:15px;

    background:#eef4ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:var(--primary);

    margin-bottom:20px;

}