.alumni-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.alumni-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px #d1d1d1;
    overflow: hidden;
    width: 320px;
    margin: 10px 0;
    transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s;
    border: 3px solid #35923A;
}
.alumni-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 12px 24px #e19634;
    border-color: #E19634;
}
.alumni-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}
.alumni-info {
    padding: 1rem;
}
.alumni-info h3 {
    margin: 0;
    color: #35923A;
    font-size: 1.3rem;
    font-family: Poppins, Arial, sans-serif;
}
.alumni-info h4 {
    color: #267167;
    margin: 8px 0 12px 0;
    font-weight: bold;
}
.alumni-info p {
    color: #444;
    font-size: 1rem;
}
#alumni-form {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px #eee;
    max-width: 500px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 3px solid #35923A;
}
#alumni-form input, #alumni-form textarea {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    font-size: 1rem;
}
#alumni-form button {
    background: #35923A;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: Poppins, Arial, sans-serif;
    transition: background 0.2s;
}
#alumni-form button:hover { background: #E19634; color: #fff; }