.student-placement-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .35s;

    height: 100%;

}

.student-placement-card:hover {

    transform: translateY(-8px);

}

.student-image {

    height: 260px;

    overflow: hidden;

}

.student-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.student-placement-card:hover img {

    transform: scale(1.08);

}

.student-content {

    padding: 22px;

    text-align: center;

}

.student-content h5 {

    font-weight: 700;

    margin-bottom: 6px;

}

.company {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    margin: 18px 0;

}

.company img {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    object-fit: contain;

    background: #fff;

    padding: 5px;

    border: 1px solid #eee;

}

.package {

    font-size: 24px;

    font-weight: 800;

    color: #2563eb;

    margin-bottom: 10px;

}