/* Admission Page Custom Styles */
.admission-header {
    background: linear-gradient(135deg, #159447 0%, #0a5c99 100%);
    color: #ffffff;
    padding: 60px 0;
}

.admission-card {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.admission-card:hover {
    transform: translateY(-5px);
}

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

/* Tab buttons modernization (branding green overrides) */
.admission-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 */
.admission-tab-buttons .nav-link i {
    color: #159447 !important;
    transition: all 0.3s ease;
}

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

/* Active state - brand green pill */
.admission-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 */
.admission-tab-buttons .nav-link.active i {
    color: #ffffff !important;
}
