﻿

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.neumorphic-card {
    background: #1896d2;
    border-radius: 1.5rem;
    padding: 1rem;
    width: 100%;
    max-width: 300px;
    min-height: 340px;
    box-shadow: 14px 14px 28px #EBEBEB, -14px -14px 28px #EBEBEB;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .neumorphic-card:hover {
        box-shadow: 20px 20px 40px white, -20px -20px 40px white, inset 4px 4px 8px rgba(255,255,255,0.3), inset -4px -4px 8px rgba(0,0,0,0.1);
        transform: translateY(-8px);
    }

.avatar-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 0.5rem;
    padding: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 2px 2px 4px #EBEBEB, -2px -2px 4px #EBEBEB, inset 2px 2px 4px rgba(255,255,255,0.3), inset -2px -2px 4px rgba(0,0,0,0.05);
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: inset 4px 4px 8px rgba(0,0,0,0.1);
}

.name {
    font-size: 1.6rem;
    font-weight: 700;
    color: black;
    text-align: center;
    letter-spacing: -0.5px;
}

.course {
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    margin-bottom: 0.1rem;
}

.college {
    font-size: 0.95rem;
    color: white;
    text-align: center;
    margin-bottom: 0.1rem;
    font-weight: 500;
}

.batch {
    display: inline-block;
    background: linear-gradient(135deg, #667eea);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    font-weight: 700;
    margin: 0.25rem auto;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #d1d9e6, transparent);
    margin: 1rem 0;
}

.company {
    font-size: 1.3rem;
    font-weight: 700;
    color: #F4F754;
    text-align: center;
    margin-bottom: 0.2rem;
}

.designation {
    margin-top: 1rem;
    font-size: 1rem;
    color: blue;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    background-color: white;
    padding: 4px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0.3;
}

.icon {
    position: absolute;
    font-size: 2rem;
    pointer-events: none;
}

.icon-code {
    top: 15px;
    right: -40px;
    opacity: 0.7;
    font-weight: bold;
    font-size: 20px;
    background-color: white;
    padding: 5px 30px 5px 50px;
    color: blue;
    transform: rotate(45deg);
}

.icon-batch {
    top: 23px;
    left: -60px;
    opacity: 0.7;
    font-weight: bold;
    font-size: 20px;
    background-color: white;
    padding: 5px 45px 5px 50px;
    color: blue;
    transform: rotate(-45deg);
}

.icon-grad {
    bottom: 16px;
    left: 30px;
    transform: rotate(-20deg);
}

@media (max-width: 300px) {
    .neumorphic-card {
        padding: 1rem;
        margin: 10px;
    }

    .name {
        font-size: 1.4rem;
    }
}


