/* Faculty Page Custom Styles */
.faculty-card {
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.faculty-card:hover {
    transform: translateY(-6px);
}

/* Custom Tab Panels hide/show */
.faculty-tab-panels > .tab-pane {
    display: none;
}
.faculty-tab-panels > .tab-pane.active {
    display: block;
}

/* Tab buttons modernization (branding green overrides) */
.faculty-tab-buttons .nav-link {
    color: #475569 !important; /* Slate neutral text */
    background: transparent;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Icon color defaults to brand green */
.faculty-tab-buttons .nav-link i {
    color: #159447 !important;
    transition: all 0.3s ease;
}

/* Hover state */
.faculty-tab-buttons .nav-link:hover {
    color: #159447 !important;
    background-color: #f0fdf4; /* light green tint */
}

/* Active state - brand green pill */
.faculty-tab-buttons .nav-link.active {
    color: #ffffff !important;
    background-color: #159447 !important;
    box-shadow: 0 4px 12px rgba(21, 148, 71, 0.2);
}

/* Active state icon turns white */
.faculty-tab-buttons .nav-link.active i {
    color: #ffffff !important;
}


