:root {
    --navy: #001f3f;
    --warning-yellow: #ffc107;
    --danger-red: #dc3545;
    --light-bg: #f8f9fa;
}


/* Alumni Directory */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--navy);
}
.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--danger-red);
}

.alumni-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}
.alumni-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.alumni-img {
    height: 250px;
    object-fit: cover;
}
.alumni-info {
    padding: 20px;
}
.alumni-tag {
    background-color: var(--warning-yellow);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}