.card {
    background: white;
    /* width: 30%; */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}


.card-header {
    height: 80px;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.card-body {
    padding: 0 20px 20px 20px;
    margin-top: -55px;
}


.profile-img img {
    width: 200px !important;
    display: unset !important;
    height: 210px;
    border-radius: 10px;
    border: 3px solid #eee;
    object-fit: cover;
    object-position: center;
    background: #fff;
}

.name {
    font-size: 23px;
    color: #2c3e50;
    font-weight: 600;
    margin: 15px 0 5px;
}

.class-tag {
    font-size: 16px;
    color: #7f8c8d;
    background: #f1f2f6;
    display: inline-block;
    padding: 4px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.stats div {
    display: flex;
    flex-direction: column;
}

.stats strong {
    font-size: 14px;
    color: #95a5a6;
}

.stats span {
    font-size: 18px;
    font-weight: 600;
    color: #2ecc71;
}

.student-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: monospace;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgb(88 89 88 / 30%);
}

.student-btn:hover {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    box-shadow: 0 6px 20px rgb(135 135 135 / 40%);
    letter-spacing: 1px;
    background: #212529;
    color: #fff;
}