/* Graduate Destinations Section */
.alumni-section {
    background-color: #0f172a;
    /* Deep Navy/Black background */
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.alumni-header {
    text-align: center;
    margin-bottom: 60px;
}

.alumni-lead {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-top: 20px;
    line-height: 1.8;
}

/* Spotlight Grid */
.spotlight-title {
    font-size: 1.5rem;
    color: #fbbf24;
    /* Gold accent */
    margin-bottom: 30px;
    border-left: 4px solid #fbbf24;
    padding-left: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.spotlight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.spotlight-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(251, 191, 36, 0.5);
}

.spotlight-tag {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
}

.spotlight-card:hover .spotlight-tag {
    background: #fbbf24;
    color: #0f172a;
}

.spotlight-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

/* List Area */
.alumni-lists-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .alumni-lists-container {
        grid-template-columns: 1fr;
    }
}

.list-column h3 {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    font-weight: 600;
}

.school-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.school-list li {
    font-size: 0.95rem;
    color: #e2e8f0;
    position: relative;
    padding-left: 15px;
}

.school-list li::before {
    content: "•";
    color: #fbbf24;
    position: absolute;
    left: 0;
}

/* Footer CTA */
.alumni-footer {
    text-align: center;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #fbbf24;
    color: #fbbf24;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #fbbf24;
    color: #0f172a;
}

.btn-view-all i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* Animation Utility (if not already present) */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Light Mode Styles for Alumni Section */
body.light-mode .alumni-section {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #1e293b;
}

body.light-mode .alumni-lead {
    color: #475569;
}

body.light-mode .spotlight-title {
    color: #8b6914;
    border-left-color: #8b6914;
}

body.light-mode .spotlight-card {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.3) !important;
}

body.light-mode .spotlight-card:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(139, 105, 20, 0.5) !important;
}

body.light-mode .spotlight-tag {
    background: rgba(255, 255, 255, 0.3);
    color: #475569;
}

body.light-mode .spotlight-card:hover .spotlight-tag {
    background: #8b6914;
    color: #fff;
}

body.light-mode .spotlight-name {
    color: #0f172a;
}

body.light-mode .list-column h3 {
    color: #475569;
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .school-list li {
    color: #1e293b;
}

body.light-mode .school-list li::before {
    color: #8b6914;
}

body.light-mode .btn-view-all {
    border-color: #8b6914;
    color: #8b6914;
}

body.light-mode .btn-view-all:hover {
    background: #8b6914;
    color: #fff;
}