/* Alumni Authentication Section */
.alumni-auth-section {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.alumni-auth-section li {
    display: inline-block;
}
.btn-alumni-login,
.btn-alumni-register {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-alumni-login {
    background-color: transparent;
    color: #34547d;
    border: 2px solid #34547d;
}

.btn-alumni-login:hover {
    background-color: #34547d;
    color: white;
}

.btn-alumni-register {
    background-color: #34547d;
    color: white;
    border: 2px solid #34547d;
}

.btn-alumni-register:hover {
    background-color: #2a4469;
    border-color: #2a4469;
}

/* Alumni Modal Styles */
.alumni-modal .modal-header {
    background: linear-gradient(135deg, #34547d 0%, #2a4469 100%);
    color: white;
    border-bottom: none;
    padding: 20px 25px;
}

.alumni-modal .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alumni-modal .modal-body {
    padding: 30px 25px;
}

.alumni-modal .btn-close {
    filter: brightness(0) invert(1);
}

.alumni-modal .form-label {
    font-weight: 500;
    color: #2a4469;
    margin-bottom: 8px;
}

.alumni-modal .form-control,
.alumni-modal .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.alumni-modal .form-control:focus,
.alumni-modal .form-select:focus {
    border-color: #34547d;
    box-shadow: 0 0 0 0.2rem rgba(52, 84, 125, 0.25);
}

.alumni-modal .form-check-input:checked {
    background-color: #34547d;
    border-color: #34547d;
}

.alumni-modal .btn-primary {
    background-color: #34547d;
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.alumni-modal .btn-primary:hover {
    background-color: #2a4469;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 84, 125, 0.3);
}

.alumni-modal .btn-success {
    background-color: #28a745;
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.alumni-modal .btn-success:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.alumni-modal a {
    color: #34547d;
    text-decoration: none;
    font-weight: 500;
}

.alumni-modal a:hover {
    text-decoration: underline;
}

/* Alert Styles */
.alert-container {
    margin-top: 15px;
}

.alert {
    border-radius: 8px;
    padding: 12px 15px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Membership Info Box */
#membership_info {
    border-left: 4px solid #34547d;
    margin-top: 15px;
}

#membership_info h6 {
    color: #34547d;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Fee Summary */
.fee-summary {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.fee-summary h6 {
    color: #34547d;
    font-weight: 600;
    margin-bottom: 10px;
}

.fee-summary p {
    margin: 5px 0;
}

/* Dropdown Menu */
.alumni-auth-section .dropdown-menu {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.alumni-auth-section .dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.alumni-auth-section .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #34547d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .alumni-auth-section {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 10px 0;
    }

    .btn-alumni-login,
    .btn-alumni-register {
        width: 100%;
        justify-content: center;
        margin: 5px 0;
    }

    .alumni-modal .modal-dialog {
        margin: 10px;
    }

    .alumni-modal .modal-body {
        padding: 20px 15px;
    }
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

/* Text Danger for Required Fields */
.text-danger {
    color: #dc3545;
}

/* Form Validation */
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #28a745;
}

/* Smooth Transitions */
* {
    transition: all 0.3s ease;
}

/* Card Styles for Dashboard */
.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.dashboard-card h5 {
    color: #34547d;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #6c757d;
}

.info-value {
    color: #2a4469;
}

/* Badge Styles */
.badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
}

.badge-success {
    background-color: #28a745;
}

.badge-warning {
    background-color: #ffc107;
    color: #000;
}

.badge-danger {
    background-color: #dc3545;
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, #34547d 0%, #2a4469 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
}

.welcome-banner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.welcome-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Upcoming Programs Section */
.upcoming-programs {
    padding: 60px 0;
}

.program-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.program-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #34547d 0%, #2a4469 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-image-placeholder i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.8);
}

.program-content {
    background: linear-gradient(135deg, #f8fbff, #eef4ff);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.program-content h4 {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.program-description {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-details {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.detail-item {
    font-size: 17px;
    font-weight: 600;
    color: #34495e;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.detail-item i {
    font-size: 20px;
    color: #0d6efd;
}

.program-footer {
    margin-top: 15px;
}

.program-footer .btn {
    font-size: 18px;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 30px;
}
.btn-primary {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #084298, #520dc2);
}

.btn-success {
    background: linear-gradient(135deg, #198754, #20c997);
    border: none;
}

.program-fee {
    font-size: 1.2rem;
    font-weight: 600;
    color: #28a745;
}

/* Payment QR Modal */
.payment-qr-container {
    text-align: center;
    padding: 20px;
}

.payment-qr-container img {
    max-width: 300px;
    border: 2px solid #34547d;
    border-radius: 8px;
    padding: 10px;
    background: white;
}

.payment-instructions {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: left;
}

.payment-instructions h6 {
    color: #34547d;
    font-weight: 600;
    margin-bottom: 15px;
}

.payment-instructions ol {
    padding-left: 20px;
}

.payment-instructions li {
    margin-bottom: 10px;
    color: #495057;
}

.payment-details {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid #dee2e6;
}

.payment-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.payment-detail-row:last-child {
    border-bottom: none;
}

.payment-detail-label {
    font-weight: 600;
    color: #6c757d;
}

.payment-detail-value {
    color: #2a4469;
    font-weight: 500;
}

/* Receipt Upload Section */
.receipt-upload-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.receipt-upload-section h6 {
    color: #34547d;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Payment Receipt Card */
.receipt-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #34547d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.receipt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.receipt-number {
    font-weight: 600;
    color: #34547d;
    font-size: 1.1rem;
}

.receipt-status {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.receipt-status.pending {
    background: #fff3cd;
    color: #856404;
}

.receipt-status.verified {
    background: #d4edda;
    color: #155724;
}

.receipt-status.rejected {
    background: #f8d7da;
    color: #721c24;
}

.receipt-body {
    font-size: 0.95rem;
    color: #6c757d;
}

.receipt-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #28a745;
    margin: 10px 0;
}
.page-header {
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
	margin-top: 80px;
}

.page-header::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.page-header-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.page-header-content {
    color: #fff;
}

/* Breadcrumb navigation */
.breadcrumb-nav {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.breadcrumb-nav a {
    color: #e0f2ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #ffffff;
}

.breadcrumb-nav span {
    margin: 0 6px;
    color: #cce7ff;
}

.breadcrumb-nav .current {
    font-weight: 600;
    color: #ffffff;
}

/* Page Title */
.page-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}