/* /Pages/Admin/ManageApplicationPeriods.razor.rz.scp.css */
/* Manage Application Periods - Figma Design System Styles */
/* Following Microsoft Fluent Design principles */

/* Page Layout */
.page-header[b-tj133ao5ms] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 24px;
}

.header-content[b-tj133ao5ms] {
    flex: 1;
}

.page-title[b-tj133ao5ms] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #0e1726;
    margin: 0 0 8px 0;
}

.page-subtitle[b-tj133ao5ms] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #605e5c;
    margin: 0;
}

/* Buttons */
.btn[b-tj133ao5ms] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 4px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    gap: 8px;
}

.btn-primary[b-tj133ao5ms] {
    background-color: #0078d4;
    color: #ffffff;
}

.btn-primary:hover[b-tj133ao5ms] {
    background-color: #106ebe;
}

.btn-primary:active[b-tj133ao5ms] {
    background-color: #005a9e;
}

.btn-secondary[b-tj133ao5ms] {
    background-color: #ffffff;
    color: #323130;
    border: 1px solid #8a8886;
}

.btn-secondary:hover[b-tj133ao5ms] {
    background-color: #f3f2f1;
}

.btn-icon[b-tj133ao5ms] {
    font-size: 18px;
    line-height: 1;
}

/* Filter Card */
.filter-card[b-tj133ao5ms] {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
    padding: 24px;
    margin-bottom: 24px;
}

.filter-container[b-tj133ao5ms] {
    width: 100%;
}

.filter-row[b-tj133ao5ms] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: end;
}

.filter-group[b-tj133ao5ms] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label[b-tj133ao5ms] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #323130;
    margin: 0;
}

.filter-select[b-tj133ao5ms] {
    height: 36px;
    padding: 0 12px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #323130;
    background-color: #ffffff;
    border: 1px solid #8a8886;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-select:hover[b-tj133ao5ms] {
    border-color: #323130;
}

.filter-select:focus[b-tj133ao5ms] {
    outline: none;
    border-color: #0078d4;
    box-shadow: 0 0 0 1px #0078d4;
}

/* Content Card */
.content-card[b-tj133ao5ms] {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
    overflow: hidden;
}

.table-container[b-tj133ao5ms] {
    width: 100%;
    overflow-x: auto;
}

/* Data Table */
.data-table[b-tj133ao5ms] {
    width: 100%;
    overflow-x: auto;
}

.periods-table[b-tj133ao5ms] {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
}

.periods-table thead[b-tj133ao5ms] {
    background-color: #faf9f8;
    border-bottom: 1px solid #edebe9;
}

.periods-table th[b-tj133ao5ms] {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    color: #323130;
    white-space: nowrap;
}

.periods-table tbody tr[b-tj133ao5ms] {
    border-bottom: 1px solid #edebe9;
    transition: background-color 0.15s ease;
}

.periods-table tbody tr:hover[b-tj133ao5ms] {
    background-color: #f3f2f1;
}

.periods-table td[b-tj133ao5ms] {
    padding: 16px;
    font-size: 14px;
    line-height: 20px;
    color: #323130;
    vertical-align: middle;
}

/* Badges */
.badge[b-tj133ao5ms] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 8px;
    border-radius: 12px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    white-space: nowrap;
}

.bg-info[b-tj133ao5ms] {
    background-color: #e3f2fd;
    color: #0078d4;
}

.bg-success[b-tj133ao5ms] {
    background-color: #dff6dd;
    color: #107c10;
}

.bg-warning[b-tj133ao5ms] {
    background-color: #fff4ce;
    color: #d83b01;
}

.bg-danger[b-tj133ao5ms] {
    background-color: #fde7e9;
    color: #d13438;
}

.bg-secondary[b-tj133ao5ms] {
    background-color: #edebe9;
    color: #605e5c;
}

.text-success[b-tj133ao5ms] {
    color: #107c10;
}

.text-muted[b-tj133ao5ms] {
    color: #8a8886;
}

/* Tier Badge Mini (Inline Badge Icons) */
.tier-badge-mini[b-tj133ao5ms] {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 6px;
    vertical-align: middle;
    flex-shrink: 0;
}

.tier-badge-bg[b-tj133ao5ms] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.tier-badge-content[b-tj133ao5ms] {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.tier-badge-caps[b-tj133ao5ms] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
    max-width: 20px;
}

.tier-badge-caps-two[b-tj133ao5ms] {
    gap: 2.5px;
}

.tier-badge-caps-three[b-tj133ao5ms] {
    gap: 2px;
}

.tier-cap-icon[b-tj133ao5ms] {
    width: 7px;
    height: 7px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 1px 1px rgba(0,0,0,0.6));
}

.tier-cap-icon-bottom[b-tj133ao5ms] {
    width: 100%;
    margin-top: -1.5px;
}

/* Icon-based Indicators */
.tier-indicator[b-tj133ao5ms],
.type-indicator[b-tj133ao5ms],
.status-indicator[b-tj133ao5ms],
.completion-count[b-tj133ao5ms] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    text-transform: capitalize;
}

.tier-indicator i[b-tj133ao5ms] {
    color: #ffc83d;
    font-size: 14px;
}

.type-indicator[b-tj133ao5ms] {
    color: #605e5c;
}

.type-indicator i[b-tj133ao5ms] {
    font-size: 14px;
}

.type-indicator i.bi-file-earmark-plus[b-tj133ao5ms] {
    color: #107c10;
}

.type-indicator i.bi-arrow-repeat[b-tj133ao5ms] {
    color: #0078d4;
}

.type-indicator i.bi-trophy[b-tj133ao5ms] {
    color: #d83b01;
}

.type-indicator i.bi-clipboard-check[b-tj133ao5ms] {
    color: #0078d4;
}

.status-indicator.required[b-tj133ao5ms] {
    color: #d13438;
}

.status-indicator.required i[b-tj133ao5ms] {
    font-size: 15px;
}

.status-indicator.optional[b-tj133ao5ms] {
    color: #0078d4;
}

.status-indicator.optional i[b-tj133ao5ms] {
    font-size: 15px;
}

.status-indicator.active[b-tj133ao5ms] {
    color: #107c10;
}

.status-indicator.active i[b-tj133ao5ms] {
    font-size: 15px;
}

.status-indicator.inactive[b-tj133ao5ms] {
    color: #8a8886;
}

.status-indicator.inactive i[b-tj133ao5ms] {
    font-size: 15px;
}

.completion-count[b-tj133ao5ms] {
    color: #323130;
    font-weight: 600;
}

.completion-count i[b-tj133ao5ms] {
    color: #0078d4;
    font-size: 14px;
}

/* Action Buttons */
.btn-group-sm[b-tj133ao5ms] {
    display: inline-flex;
    gap: 8px;
}

.btn-group-sm .btn[b-tj133ao5ms] {
    height: 32px;
    padding: 0 12px;
    font-size: 13px;
}

.btn-group-sm .btn i[b-tj133ao5ms] {
    font-size: 14px;
}

.btn-danger[b-tj133ao5ms] {
    background-color: #d13438;
    color: #ffffff;
    border: none;
}

.btn-danger:hover[b-tj133ao5ms] {
    background-color: #a4262c;
}

/* Modal */
.modal[b-tj133ao5ms] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-dialog[b-tj133ao5ms] {
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-content[b-tj133ao5ms] {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.modal-header[b-tj133ao5ms] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #edebe9;
}

.modal-title[b-tj133ao5ms] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #323130;
    margin: 0;
}

.btn-close[b-tj133ao5ms] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    color: #605e5c;
    transition: all 0.2s ease;
}

.btn-close:hover[b-tj133ao5ms] {
    background-color: #f3f2f1;
    color: #323130;
}

.modal-body[b-tj133ao5ms] {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.modal-footer[b-tj133ao5ms] {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    padding: 16px 24px !important;
    border-top: 1px solid #edebe9 !important;
    background-color: #faf9f8 !important;
    flex-shrink: 0 !important;
}

.modal-footer .btn[b-tj133ao5ms] {
    margin: 0 !important;
}

/* Form Controls */
.mb-3[b-tj133ao5ms] {
    margin-bottom: 20px;
}

.form-label[b-tj133ao5ms] {
    display: block;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #323130;
    margin-bottom: 8px;
}

.form-control[b-tj133ao5ms], .form-select[b-tj133ao5ms] {
    width: 100%;
    height: 36px;
    padding: 0 12px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #323130;
    background-color: #ffffff;
    border: 1px solid #8a8886;
    border-radius: 4px;
    transition: all 0.2s ease;
}

textarea.form-control[b-tj133ao5ms] {
    height: auto;
    min-height: 80px;
    padding: 8px 12px;
    resize: vertical;
}

.form-control:hover[b-tj133ao5ms], .form-select:hover[b-tj133ao5ms] {
    border-color: #323130;
}

.form-control:focus[b-tj133ao5ms], .form-select:focus[b-tj133ao5ms] {
    outline: none;
    border-color: #0078d4;
    box-shadow: 0 0 0 1px #0078d4;
}

.form-control:disabled[b-tj133ao5ms], .form-select:disabled[b-tj133ao5ms] {
    background-color: #f3f2f1;
    color: #a19f9d;
    cursor: not-allowed;
}

/* Form Check (Checkbox/Toggle) */
.checkbox-row[b-tj133ao5ms] {
    display: flex !important;
    align-items: center !important;
    gap: 40px;
    padding: 8px 0;
    margin: 0 !important;
}

.form-check[b-tj133ao5ms] {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px;
    margin-bottom: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
}

.form-check-input[b-tj133ao5ms] {
    width: 20px !important;
    height: 20px !important;
    border: 1px solid #8a8886 !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    vertical-align: middle !important;
    position: relative !important;
    float: none !important;
}

.form-check-label[b-tj133ao5ms] {
    font-family: 'Segoe UI', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    color: #323130 !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: middle !important;
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap !important;
}

.form-switch .form-check-input[b-tj133ao5ms] {
    width: 40px !important;
    height: 20px !important;
    border-radius: 10px !important;
}

.form-text[b-tj133ao5ms] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #605e5c;
    margin-top: 4px;
}

/* Alert Messages */
.alert[b-tj133ao5ms] {
    padding: 16px;
    border-radius: 4px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
}

.alert-info[b-tj133ao5ms] {
    background-color: #f3f2f1;
    color: #323130;
    border-left: 4px solid #0078d4;
}

.alert-warning[b-tj133ao5ms] {
    background-color: #fff4ce;
    color: #323130;
    border-left: 4px solid #d83b01;
}

.alert-sm[b-tj133ao5ms] {
    padding: 12px;
    font-size: 13px;
}

/* Loading Spinner */
.spinner-border[b-tj133ao5ms] {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 3px solid rgba(0, 120, 212, 0.2);
    border-top-color: #0078d4;
    border-radius: 50%;
    animation: spinner-border-b-tj133ao5ms 0.75s linear infinite;
}

@keyframes spinner-border-b-tj133ao5ms {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .page-header[b-tj133ao5ms] {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-row[b-tj133ao5ms] {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-title[b-tj133ao5ms] {
        font-size: 24px;
        line-height: 32px;
    }
    
    .filter-card[b-tj133ao5ms] {
        padding: 16px;
    }
    
    .filter-row[b-tj133ao5ms] {
        grid-template-columns: 1fr;
    }
    
    .modal-dialog[b-tj133ao5ms] {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header[b-tj133ao5ms],
    .modal-body[b-tj133ao5ms],
    .modal-footer[b-tj133ao5ms] {
        padding: 16px;
    }
    
    .periods-table th[b-tj133ao5ms],
    .periods-table td[b-tj133ao5ms] {
        padding: 12px;
        font-size: 13px;
    }
    
    .data-table[b-tj133ao5ms] {
        overflow-x: scroll;
    }
}

@media (max-width: 480px) {
    .page-header[b-tj133ao5ms] {
        margin-bottom: 20px;
    }
    
    .btn-group-sm[b-tj133ao5ms] {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-group-sm .btn[b-tj133ao5ms] {
        width: 100%;
    }
}
/* /Pages/Admin/ManageTierRequirements.razor.rz.scp.css */
/* Manage Tier Requirements - Figma Design System Styles */
/* Following Microsoft Fluent Design principles */

/* Page Layout */
.page-header[b-e3x2wwk1k6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 24px;
}

.header-content[b-e3x2wwk1k6] {
    flex: 1;
}

.page-title[b-e3x2wwk1k6] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #0e1726;
    margin: 0 0 8px 0;
}

.page-subtitle[b-e3x2wwk1k6] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #605e5c;
    margin: 0;
}

/* Buttons */
.btn[b-e3x2wwk1k6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 4px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    gap: 8px;
}

.btn-primary[b-e3x2wwk1k6] {
    background-color: #0078d4;
    color: #ffffff;
}

.btn-primary:hover[b-e3x2wwk1k6] {
    background-color: #106ebe;
}

.btn-primary:active[b-e3x2wwk1k6] {
    background-color: #005a9e;
}

.btn-secondary[b-e3x2wwk1k6] {
    background-color: #ffffff;
    color: #323130;
    border: 1px solid #8a8886;
}

.btn-secondary:hover[b-e3x2wwk1k6] {
    background-color: #f3f2f1;
}

.btn-icon[b-e3x2wwk1k6] {
    font-size: 18px;
    line-height: 1;
}

/* Filter Card */
.filter-card[b-e3x2wwk1k6] {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
    padding: 24px;
    margin-bottom: 24px;
}

.filter-container[b-e3x2wwk1k6] {
    width: 100%;
}

.filter-row[b-e3x2wwk1k6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: end;
}

.filter-group[b-e3x2wwk1k6] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label[b-e3x2wwk1k6] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #323130;
    margin: 0;
}

.filter-select[b-e3x2wwk1k6] {
    height: 36px;
    padding: 0 12px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #323130;
    background-color: #ffffff;
    border: 1px solid #8a8886;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-select:hover[b-e3x2wwk1k6] {
    border-color: #323130;
}

.filter-select:focus[b-e3x2wwk1k6] {
    outline: none;
    border-color: #0078d4;
    box-shadow: 0 0 0 1px #0078d4;
}

/* Content Card */
.content-card[b-e3x2wwk1k6] {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
    overflow: hidden;
}

.table-container[b-e3x2wwk1k6] {
    width: 100%;
    overflow-x: auto;
}

/* Data Table */
.data-table[b-e3x2wwk1k6] {
    width: 100%;
    overflow-x: auto;
}

.requirements-table[b-e3x2wwk1k6] {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
}

.requirements-table thead[b-e3x2wwk1k6] {
    background-color: #faf9f8;
    border-bottom: 1px solid #edebe9;
}

.requirements-table th[b-e3x2wwk1k6] {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    color: #323130;
    white-space: nowrap;
}

.requirements-table tbody tr[b-e3x2wwk1k6] {
    border-bottom: 1px solid #edebe9;
    transition: background-color 0.15s ease;
}

.requirements-table tbody tr:hover[b-e3x2wwk1k6] {
    background-color: #f3f2f1;
}

.requirements-table td[b-e3x2wwk1k6] {
    padding: 16px;
    font-size: 14px;
    line-height: 20px;
    color: #323130;
    vertical-align: middle;
}

/* Badges */
.badge[b-e3x2wwk1k6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 8px;
    border-radius: 12px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    white-space: nowrap;
}

.bg-info[b-e3x2wwk1k6] {
    background-color: #e3f2fd;
    color: #0078d4;
}

.bg-success[b-e3x2wwk1k6] {
    background-color: #dff6dd;
    color: #107c10;
}

.bg-warning[b-e3x2wwk1k6] {
    background-color: #fff4ce;
    color: #d83b01;
}

.bg-danger[b-e3x2wwk1k6] {
    background-color: #fde7e9;
    color: #d13438;
}

.bg-secondary[b-e3x2wwk1k6] {
    background-color: #edebe9;
    color: #605e5c;
}

.text-success[b-e3x2wwk1k6] {
    color: #107c10;
}

.text-muted[b-e3x2wwk1k6] {
    color: #8a8886;
}

/* Tier Badge Mini (Inline Badge Icons) */
.tier-badge-mini[b-e3x2wwk1k6] {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 6px;
    vertical-align: middle;
    flex-shrink: 0;
}

.tier-badge-bg[b-e3x2wwk1k6] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.tier-badge-content[b-e3x2wwk1k6] {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.tier-badge-caps[b-e3x2wwk1k6] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
    max-width: 20px;
}

.tier-badge-caps-two[b-e3x2wwk1k6] {
    gap: 2.5px;
}

.tier-badge-caps-three[b-e3x2wwk1k6] {
    gap: 2px;
}

.tier-cap-icon[b-e3x2wwk1k6] {
    width: 7px;
    height: 7px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 1px 1px rgba(0,0,0,0.6));
}

.tier-cap-icon-bottom[b-e3x2wwk1k6] {
    width: 100%;
    margin-top: -1.5px;
}

/* Icon-based Indicators */
.tier-indicator[b-e3x2wwk1k6],
.type-indicator[b-e3x2wwk1k6],
.status-indicator[b-e3x2wwk1k6],
.completion-count[b-e3x2wwk1k6] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    text-transform: capitalize;
}

.tier-indicator i[b-e3x2wwk1k6] {
    color: #ffc83d;
    font-size: 14px;
}

.type-indicator[b-e3x2wwk1k6] {
    color: #605e5c;
}

.type-indicator i[b-e3x2wwk1k6] {
    font-size: 14px;
}

.type-indicator i.bi-trophy[b-e3x2wwk1k6] {
    color: #d83b01;
}

.type-indicator i.bi-clipboard-check[b-e3x2wwk1k6] {
    color: #0078d4;
}

.status-indicator.required[b-e3x2wwk1k6] {
    color: #d13438;
}

.status-indicator.required i[b-e3x2wwk1k6] {
    font-size: 15px;
}

.status-indicator.optional[b-e3x2wwk1k6] {
    color: #0078d4;
}

.status-indicator.optional i[b-e3x2wwk1k6] {
    font-size: 15px;
}

.status-indicator.active[b-e3x2wwk1k6] {
    color: #107c10;
}

.status-indicator.active i[b-e3x2wwk1k6] {
    font-size: 15px;
}

.status-indicator.inactive[b-e3x2wwk1k6] {
    color: #8a8886;
}

.status-indicator.inactive i[b-e3x2wwk1k6] {
    font-size: 15px;
}

.completion-count[b-e3x2wwk1k6] {
    color: #323130;
    font-weight: 600;
}

.completion-count i[b-e3x2wwk1k6] {
    color: #0078d4;
    font-size: 14px;
}

/* Action Buttons */
.btn-group-sm[b-e3x2wwk1k6] {
    display: inline-flex;
    gap: 8px;
}

.btn-group-sm .btn[b-e3x2wwk1k6] {
    height: 32px;
    padding: 0 12px;
    font-size: 13px;
}

.btn-group-sm .btn i[b-e3x2wwk1k6] {
    font-size: 14px;
}

.btn-danger[b-e3x2wwk1k6] {
    background-color: #d13438;
    color: #ffffff;
    border: none;
}

.btn-danger:hover[b-e3x2wwk1k6] {
    background-color: #a4262c;
}

/* Modal */
.modal[b-e3x2wwk1k6] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-dialog[b-e3x2wwk1k6] {
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-content[b-e3x2wwk1k6] {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.modal-header[b-e3x2wwk1k6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #edebe9;
}

.modal-title[b-e3x2wwk1k6] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #323130;
    margin: 0;
}

.btn-close[b-e3x2wwk1k6] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    color: #605e5c;
    transition: all 0.2s ease;
}

.btn-close:hover[b-e3x2wwk1k6] {
    background-color: #f3f2f1;
    color: #323130;
}

.modal-body[b-e3x2wwk1k6] {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.modal-footer[b-e3x2wwk1k6] {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    padding: 16px 24px !important;
    border-top: 1px solid #edebe9 !important;
    background-color: #faf9f8 !important;
    flex-shrink: 0 !important;
}

.modal-footer .btn[b-e3x2wwk1k6] {
    margin: 0 !important;
}

/* Form Controls */
.mb-3[b-e3x2wwk1k6] {
    margin-bottom: 20px;
}

.form-label[b-e3x2wwk1k6] {
    display: block;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #323130;
    margin-bottom: 8px;
}

.form-control[b-e3x2wwk1k6], .form-select[b-e3x2wwk1k6] {
    width: 100%;
    height: 36px;
    padding: 0 12px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #323130;
    background-color: #ffffff;
    border: 1px solid #8a8886;
    border-radius: 4px;
    transition: all 0.2s ease;
}

textarea.form-control[b-e3x2wwk1k6] {
    height: auto;
    min-height: 80px;
    padding: 8px 12px;
    resize: vertical;
}

.form-control:hover[b-e3x2wwk1k6], .form-select:hover[b-e3x2wwk1k6] {
    border-color: #323130;
}

.form-control:focus[b-e3x2wwk1k6], .form-select:focus[b-e3x2wwk1k6] {
    outline: none;
    border-color: #0078d4;
    box-shadow: 0 0 0 1px #0078d4;
}

.form-control:disabled[b-e3x2wwk1k6], .form-select:disabled[b-e3x2wwk1k6] {
    background-color: #f3f2f1;
    color: #a19f9d;
    cursor: not-allowed;
}

/* Form Check (Checkbox/Toggle) */
.checkbox-row[b-e3x2wwk1k6] {
    display: flex !important;
    align-items: center !important;
    gap: 40px;
    padding: 8px 0;
    margin: 0 !important;
}

.form-check[b-e3x2wwk1k6] {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px;
    margin-bottom: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
}

.form-check-input[b-e3x2wwk1k6] {
    width: 20px !important;
    height: 20px !important;
    border: 1px solid #8a8886 !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    vertical-align: middle !important;
    position: relative !important;
    float: none !important;
}

.form-check-label[b-e3x2wwk1k6] {
    font-family: 'Segoe UI', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    color: #323130 !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: middle !important;
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap !important;
}

.form-switch .form-check-input[b-e3x2wwk1k6] {
    width: 40px !important;
    height: 20px !important;
    border-radius: 10px !important;
}

.form-text[b-e3x2wwk1k6] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #605e5c;
    margin-top: 4px;
}

/* Alert Messages */
.alert[b-e3x2wwk1k6] {
    padding: 16px;
    border-radius: 4px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
}

.alert-info[b-e3x2wwk1k6] {
    background-color: #f3f2f1;
    color: #323130;
    border-left: 4px solid #0078d4;
}

.alert-warning[b-e3x2wwk1k6] {
    background-color: #fff4ce;
    color: #323130;
    border-left: 4px solid #d83b01;
}

.alert-sm[b-e3x2wwk1k6] {
    padding: 12px;
    font-size: 13px;
}

/* Loading Spinner */
.spinner-border[b-e3x2wwk1k6] {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 3px solid rgba(0, 120, 212, 0.2);
    border-top-color: #0078d4;
    border-radius: 50%;
    animation: spinner-border-b-e3x2wwk1k6 0.75s linear infinite;
}

@keyframes spinner-border-b-e3x2wwk1k6 {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .page-header[b-e3x2wwk1k6] {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-row[b-e3x2wwk1k6] {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-title[b-e3x2wwk1k6] {
        font-size: 24px;
        line-height: 32px;
    }
    
    .filter-card[b-e3x2wwk1k6] {
        padding: 16px;
    }
    
    .filter-row[b-e3x2wwk1k6] {
        grid-template-columns: 1fr;
    }
    
    .modal-dialog[b-e3x2wwk1k6] {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header[b-e3x2wwk1k6],
    .modal-body[b-e3x2wwk1k6],
    .modal-footer[b-e3x2wwk1k6] {
        padding: 16px;
    }
    
    .requirements-table th[b-e3x2wwk1k6],
    .requirements-table td[b-e3x2wwk1k6] {
        padding: 12px;
        font-size: 13px;
    }
    
    .data-table[b-e3x2wwk1k6] {
        overflow-x: scroll;
    }
}

@media (max-width: 480px) {
    .page-header[b-e3x2wwk1k6] {
        margin-bottom: 20px;
    }
    
    .btn-group-sm[b-e3x2wwk1k6] {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-group-sm .btn[b-e3x2wwk1k6] {
        width: 100%;
    }
}
/* /Pages/Public/PublicLanding.razor.rz.scp.css */
/* Main Landing Page Styles */
/* Story 454358 - Main Landing Page Scaffold */

.main-landing-page[b-hw27krzcwf] {
    min-height: 100vh;
    background-color: #ffffff;
}

.page-content[b-hw27krzcwf] {
  /* padding-top: 50px;*/ /* Account for fixed navigation bar */
    min-height: calc(100vh - 50px);
}
.stories-section[b-hw27krzcwf] {
    width: 100%;
    padding: 60px 0 40px 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    position: relative;
}

.stories-container[b-hw27krzcwf] {
    max-width: 1600px;
    width: 100%;
    padding: 0 120px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.stories-header[b-hw27krzcwf] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.stories-title[b-hw27krzcwf] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #0e1726;
    letter-spacing: -1.6px;
    margin: 0;
}

.stories-subtitle[b-hw27krzcwf] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: #000000;
    margin: 0;
}

.stories-content[b-hw27krzcwf] {
    display: flex;
    gap: 40px;
    align-items: center;
    width: 100%;
    justify-content: center;
}


.stories-image[b-hw27krzcwf] {
/*    width: 744px;
*/    /*height: 436px;*/
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

    .stories-image img[b-hw27krzcwf] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }



/* Responsive Design */
@media (max-width: 1400px) {

    .stories-image[b-hw27krzcwf] {
        width: 550px;
        height: 350px;
    }


}

@media (max-width: 1024px) {

    .stories-image[b-hw27krzcwf] {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {


    .stories-image[b-hw27krzcwf] {
        height: 300px;
    }

}

@media (max-width: 1200px) {


    .stories-content[b-hw27krzcwf] {
        display: block;

    }

}
/* /Shared/FooterSection.razor.rz.scp.css */
/* FooterSection Component Styles - Responsive Design */

footer[b-41ad2gie6g] {
    background-color: #f2f2f2;
    border-top: 1px solid #e0e0e0;
    padding: 2rem 1rem;
    margin-top: auto;
    color: #333;
}

.footer-container[b-41ad2gie6g] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Footer Brand Section */
.footer-brand[b-41ad2gie6g] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo[b-41ad2gie6g] {
    width: 32px;
    height: 32px;
}

.footer-brand h4[b-41ad2gie6g] {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: #0078d4;
}

.footer-brand p[b-41ad2gie6g] {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

/* Footer Navigation */
.footer-nav[b-41ad2gie6g] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav h5[b-41ad2gie6g] {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #333;
}

.footer-links[b-41ad2gie6g] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li[b-41ad2gie6g] {
    display: flex;
}

.footer-links a[b-41ad2gie6g] {
    color: #0078d4;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    padding: 0.25rem 0;
}

.footer-links a:hover[b-41ad2gie6g] {
    color: #005a9e;
    text-decoration: underline;
}

.footer-links a:focus[b-41ad2gie6g] {
    outline: 2px solid #0078d4;
    outline-offset: 2px;
    border-radius: 2px;
}

.footer-links a:active[b-41ad2gie6g] {
    color: #004578;
}

/* Footer Meta Information */
.footer-meta[b-41ad2gie6g] {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.footer-meta p[b-41ad2gie6g] {
    margin: 0;
}

/* Tablet Breakpoint (768px and up) */
@media (min-width: 768px) {
    footer[b-41ad2gie6g] {
        padding: 2.5rem 2rem;
    }

    .footer-container[b-41ad2gie6g] {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .footer-brand[b-41ad2gie6g] {
        flex: 1;
        min-width: 250px;
    }

    .footer-nav[b-41ad2gie6g] {
        flex: 1;
        min-width: 200px;
    }

    .footer-links[b-41ad2gie6g] {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-meta[b-41ad2gie6g] {
        flex-basis: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Desktop Breakpoint (1024px and up) */
@media (min-width: 1024px) {
    footer[b-41ad2gie6g] {
        padding: 3rem 2rem;
    }

    .footer-container[b-41ad2gie6g] {
        gap: 4rem;
    }

    .footer-brand h4[b-41ad2gie6g] {
        font-size: 1.25rem;
    }

    .footer-nav h5[b-41ad2gie6g] {
        font-size: 1.125rem;
    }

    .footer-links a[b-41ad2gie6g] {
        font-size: 0.9375rem;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    footer[b-41ad2gie6g] {
        border-top: 2px solid #000;
    }

    .footer-links a[b-41ad2gie6g] {
        font-weight: 600;
    }

    .footer-links a:focus[b-41ad2gie6g] {
        outline-width: 3px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .footer-links a[b-41ad2gie6g] {
        transition: none;
    }
}

/* Print Styles */
@media print {
    footer[b-41ad2gie6g] {
        border-top: 1px solid #000;
        padding: 1rem;
        background-color: #fff;
    }

    .footer-links a[b-41ad2gie6g] {
        color: #000;
        text-decoration: underline;
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-e3hp2l0in8] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-e3hp2l0in8] {
    flex: 1;
}

.sidebar[b-e3hp2l0in8] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-e3hp2l0in8] {
    background-color: #fff;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-e3hp2l0in8]  a, .top-row .btn-link[b-e3hp2l0in8] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-e3hp2l0in8] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-e3hp2l0in8] {
        display: none;
    }

    .top-row.auth[b-e3hp2l0in8] {
        justify-content: space-between;
    }

    .top-row a[b-e3hp2l0in8], .top-row .btn-link[b-e3hp2l0in8] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-e3hp2l0in8] {
        flex-direction: row;
    }

    .sidebar[b-e3hp2l0in8] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-e3hp2l0in8] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-e3hp2l0in8], article[b-e3hp2l0in8] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-h9xi5mkgw8] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-h9xi5mkgw8] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-h9xi5mkgw8] {
    font-size: 1.1rem;
}

.oi[b-h9xi5mkgw8] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-h9xi5mkgw8] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-h9xi5mkgw8] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-h9xi5mkgw8] {
        padding-bottom: 1rem;
    }

    .nav-item[b-h9xi5mkgw8]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-h9xi5mkgw8]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-h9xi5mkgw8]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-h9xi5mkgw8] {
        display: none;
    }

    .collapse[b-h9xi5mkgw8] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-h9xi5mkgw8] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Shared/Public/ApplicationStepsAccordion.razor.rz.scp.css */
/* Application Steps Accordion Section Styles */
/* Figma Design Reference: https://www.figma.com/design/jhCDGezU9sAx4VmK9GFD3E/MIEE-SCS?node-id=725-28570 */

.application-steps[b-glg7cppecx] {
    width: 100%;
   /* padding: 60px 150px;*/
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.image-accordion-container[b-glg7cppecx] {
    display: flex;
    gap: 40px;
    align-items: center;
    width: 100%;
    /*max-width: 1600px;*/
}

/* Hero Image Section */
.hero-image-container[b-glg7cppecx] {
    flex-shrink: 0;
    width: 744px;
    height: 436px;
    position: relative;
    overflow: hidden;
}

.hero-image-mask[b-glg7cppecx] {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.hero-image-mask img[b-glg7cppecx] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Accordion Container */
.accordion-container[b-glg7cppecx] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 0;
}

/* Accordion Item */
.accordion-item[b-glg7cppecx] {
    position: relative;
    display: flex;
    gap: 32px;
}

    .accordion-item.collapsed[b-glg7cppecx] {
        margin-left: 32px;
    }

/* Blue Background Bar - Only visible when expanded */
.accordion-background[b-glg7cppecx] {
    width: 3.52px;
    background-color: #005597;
    border-radius: 4px;
    flex-shrink: 0;
    align-self: stretch;
}

/* Accordion Content */
.accordion-content[b-glg7cppecx] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

/* Accordion Header */
.accordion-header[b-glg7cppecx] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.accordion-title[b-glg7cppecx] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #0e1726;
    letter-spacing: -0.6px;
    margin: 0;
   /* white-space: nowrap;*/
}

/* Chevron Icon */
.chevron-icon[b-glg7cppecx] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.chevron-icon.expanded[b-glg7cppecx] {
    transform: rotate(180deg);
}

.chevron-icon svg[b-glg7cppecx] {
    width: 20px;
    height: 20px;
}

/* Accordion Text */
.accordion-text[b-glg7cppecx] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    letter-spacing: -0.48px;
    margin: 0;
}

/* Accordion Role */
.accordion-role[b-glg7cppecx] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    letter-spacing: -0.48px;
    margin: 0;
    font-style: normal;
}

/* Accordion Links List */
.accordion-links-list[b-glg7cppecx] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: #0e1726;
    margin: 0;
    padding-left: 20px;
    list-style: disc;
}

.accordion-links-list li[b-glg7cppecx] {
    margin-bottom: 4px;
}

.accordion-links-list a[b-glg7cppecx] {
    color: #0e1726;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
}

.accordion-links-list a:hover[b-glg7cppecx] {
    color: #0074d3;
}

/* Learn More Link */
.learn-more-link[b-glg7cppecx] {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 8px;
    cursor: pointer;
}

.link-text[b-glg7cppecx] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 23px;
    color: #0074d3;
    letter-spacing: -0.48px;
    text-decoration: none;
}

.link-text:hover[b-glg7cppecx] {
    text-decoration: underline;
}

.learn-more-link svg[b-glg7cppecx] {
    width: 24px;
    height: 24px;
}

/* Divider Line */
.divider-line[b-glg7cppecx] {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 0 0 0 36px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .application-steps[b-glg7cppecx] {
      /*  padding: 60px 60px;*/
    }

    .hero-image-container[b-glg7cppecx] {
        width: 600px;
        height: 350px;
    }
}

@media (max-width: 1200px) {
    .image-accordion-container[b-glg7cppecx] {
        flex-direction: column;
        gap: 40px;
    }

    .hero-image-container[b-glg7cppecx] {
        width: 100%;
        height: 400px;
    }

    .accordion-container[b-glg7cppecx] {
        width: 100%;
    }
    .application-steps[b-glg7cppecx] {
          padding: 30px 0px;
    }

}

@media (max-width: 768px) {
    .application-steps[b-glg7cppecx] {
        padding: 40px 24px;
    }

    .hero-image-container[b-glg7cppecx] {
        height: 300px;
    }

    .accordion-title[b-glg7cppecx] {
        font-size: 18px;
        line-height: 24px;
        white-space: normal;
    }

    .accordion-text[b-glg7cppecx] {
        font-size: 14px;
        line-height: 20px;
    }

    .divider-line[b-glg7cppecx] {
        margin-left: 0;
    }

    .accordion-item[b-glg7cppecx] {
        gap: 16px;
    }
}
/* /Shared/Public/CommunityListsSection.razor.rz.scp.css */
/* Community Lists Section */
/* Figma Reference: Node 658:46776 */

.community-lists-section[b-k18lfwpwc5] {
    width: 100%;
    display: grid;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 15px 120px 80px 120px;
    box-sizing: border-box;
    background: linear-gradient(90.3329deg, rgb(237, 233, 246) 0.16124%, rgb(242, 249, 253) 54%, rgb(220, 238, 248) 98.394%);
}

.section-title[b-k18lfwpwc5] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1.6px;
    color: #0e1726;
    text-align: center;
    margin: 0;
    white-space: pre-wrap;
    min-width: 100%;
    width: min-content;
    flex-shrink: 0;
}

.community-items[b-k18lfwpwc5] {
    display: flex;
    gap: 20px;
    align-items: start;
    flex-shrink: 0;
    width: 100%;
/*    justify-content: space-between;
*/}

.community-item[b-k18lfwpwc5] {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.community-card[b-k18lfwpwc5] {
    background-color: #fefefe;
    border-radius: 24px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 4px 0px rgba(0, 0, 0, 0.14);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 329px;
    height: 559px;
    min-width: 1px;
    flex-shrink: 0;
    box-sizing: border-box;
    position: relative;
}

.card-image-container[b-k18lfwpwc5] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 8px 0 8px;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.image-wrapper[b-k18lfwpwc5] {
    display: flex;
    align-items: flex-start;
    max-width: 650px;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
    flex-shrink: 0;
}

.image-content[b-k18lfwpwc5] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 634px;
    width: 313px;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.image-frame[b-k18lfwpwc5] {
    width: 100%;
    height: 254px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.image-frame img[b-k18lfwpwc5] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}



.card-text-container[b-k18lfwpwc5] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
    width: 100%;
    min-width: 1px;
    flex: 1;
    box-sizing: border-box;
}

.card-content[b-k18lfwpwc5] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    flex-shrink: 0;
}

.card-header[b-k18lfwpwc5] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    flex-shrink: 0;
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: none;
}

.card-title[b-k18lfwpwc5] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.card-description-wrapper[b-k18lfwpwc5] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    flex: 1;
    box-sizing: border-box;
}

.card-description-wrapper.full-width[b-k18lfwpwc5] {
    padding: 0;
}

.card-description[b-k18lfwpwc5] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: #000000;
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
}

.card-actions[b-k18lfwpwc5] {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
}

.view-list-btn[b-k18lfwpwc5] {
    background-color: #0078d4;
    border: none;
    border-radius: 4px;
    display: flex;
    gap: 6px;
    height: 40px;
    align-items: center;
    justify-content: flex-end;
    padding: 6px 12px;
    flex-shrink: 0;
    box-sizing: border-box;
    cursor: pointer;
}

.view-list-btn:hover[b-k18lfwpwc5] {
    background-color: #106ebe;
}

.view-list-btn span[b-k18lfwpwc5] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1400px) {
    .community-items[b-k18lfwpwc5] {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .community-items[b-k18lfwpwc5] {
        flex-direction: column;
        align-items: center;
    }
    
    .community-card[b-k18lfwpwc5] {
        width: 100%;
        max-width: 329px;
    }
}
/* /Shared/Public/HeroSection.razor.rz.scp.css */
/* Hero Section Styles */
/* Figma Reference: https://www.figma.com/design/jhCDGezU9sAx4VmK9GFD3E/MIEE-SCS?node-id=2390-4700&m=dev */

.hero-section[b-bxp7wl4p2r] {
    width: 100%;
    min-height: 560px;
    position: relative;
    /*   overflow: hidden;*/
    display: flex;
    align-items: center;
    /* justify-content: flex-start;*/
    /*    padding: 80px 120px;
*/ box-sizing: border-box;
    background: linear-gradient(135deg, #87CEEB 0%, #E6B3D4 50%, #87CEEB 100%);
    background-image: url('/images/Elevate-background-waves.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
}

.hero-background-overlay[b-bxp7wl4p2r] {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.6) 33.482%, rgba(255, 255, 255, 0) 66.518%);
    pointer-events: none;
    data-node-id: 2390:4700;
}

.hero-container[b-bxp7wl4p2r] {
    max-width: 1600px;
    width: 100%;
    padding: 80px 120px;

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.hero-content[b-bxp7wl4p2r] {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 670px;
    flex-shrink: 0;
    padding: 24px 0px !important;
}

.hero-headings[b-bxp7wl4p2r] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-eyebrow[b-bxp7wl4p2r] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.96px;
    color: #005597;
    text-transform: uppercase;
    text-align: left;
    margin: 0;
}

.hero-title[b-bxp7wl4p2r] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -2px;
    color: #0e1726;
    text-align: left;
    margin: 0;
}

.hero-description[b-bxp7wl4p2r] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.48px;
    color: #17253d;
    text-align: left;
    margin: 0;
}

.hero-actions[b-bxp7wl4p2r] {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 0;
}

.btn[b-bxp7wl4p2r] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 8px 20px;
    border-radius: 8px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    box-sizing: border-box;
    white-space: nowrap;
}

.btn-primary[b-bxp7wl4p2r] {
    background-color: #0078d4;
    margin-bottom: 0px !important;
    color: #ffffff;
}

.btn-primary:hover[b-bxp7wl4p2r] {
    background-color: #106ebe;
}

.btn-secondary[b-bxp7wl4p2r] {
    background-color: transparent;
    color: #2a446f;
    border: 2px solid #2a446f;
}

.btn-secondary:hover[b-bxp7wl4p2r] {
    background-color: rgba(0, 120, 212, 0.08);
}

.hero-media[b-bxp7wl4p2r] {
    flex-shrink: 0;
    min-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mosaic-container[b-bxp7wl4p2r] {
    position: relative;
    width: 314px;
    height: 369px;
    display: grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
}

.mosaic-image-main[b-bxp7wl4p2r] {
    grid-area: 1 / 1;
    width: 314px;
    height: 369px;
    object-fit: cover;
    object-position: center;
}

.mosaic-image-overlay[b-bxp7wl4p2r] {
    grid-area: 1 / 1;
    width: 201px;
    height: 304px;
    margin-left: 63px;
    margin-top: 73px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.mosaic-accent-box[b-bxp7wl4p2r] {
    grid-area: 1 / 1;
    background-color: #fff8f3;
    border-radius: 16px;
}

.mosaic-accent-1[b-bxp7wl4p2r] {
    width: 98px;
    height: 140px;
    margin-left: 0;
    margin-top: 12px;
}

.mosaic-accent-2[b-bxp7wl4p2r] {
    width: 112px;
    height: 140px;
    margin-left: 191px;
    margin-top: 251px;
}

/* Responsive Design */
    @media (max-width: 1265px) {
        .hero-section[b-bxp7wl4p2r] {
            padding: 60px 80px;
            min-height: 500px;
        }

        .hero-container[b-bxp7wl4p2r] {
            gap: 60px;
            padding: 60px 0px;
        }

        .hero-title[b-bxp7wl4p2r] {
            font-size: 40px;
            line-height: 48px;
        }

        .hero-media[b-bxp7wl4p2r] {
          /*  min-width: 350px;*/
        }

        .hero-content[b-bxp7wl4p2r] {
            max-width: 500px;
        }
    }
@media (max-width: 920px) {
    .hero-media[b-bxp7wl4p2r] {
        min-width: 100%;
        display: none;
    }
}

@media (min-width: 921px)(max-width: 126px) {
    .hero-content[b-bxp7wl4p2r] {
        max-width: 375px;
    }

}
    @media (max-width: 768px) {
        .hero-section[b-bxp7wl4p2r] {
            padding: 60px 40px;
            min-height: auto;
        }

        .hero-container[b-bxp7wl4p2r] {
            flex-direction: column;
            gap: 40px;
        }

        .hero-content[b-bxp7wl4p2r] {
            max-width: 100%;
            gap: 24px;
        }

        .hero-title[b-bxp7wl4p2r] {
            font-size: 32px;
            line-height: 40px;
        }

        .hero-description[b-bxp7wl4p2r] {
            font-size: 14px;
            line-height: 20px;
        }

        .hero-actions[b-bxp7wl4p2r] {
            flex-wrap: wrap;
        }

        .btn[b-bxp7wl4p2r] {
            flex: 1;
            min-width: 200px;
        }

        .hero-media[b-bxp7wl4p2r] {
            min-width: 100%;
            /* max-width: 400px;*/
        }
    }

    @media (max-width: 480px) {
        .hero-section[b-bxp7wl4p2r] {
            padding: 40px 20px;
            min-height: auto;
        }

        .hero-container[b-bxp7wl4p2r] {
            gap: 24px;
        }

        .hero-content[b-bxp7wl4p2r] {
            gap: 16px;
        }

        .hero-title[b-bxp7wl4p2r] {
            font-size: 24px;
            line-height: 32px;
        }

        .hero-description[b-bxp7wl4p2r] {
            font-size: 13px;
            line-height: 18px;
        }

        .hero-actions[b-bxp7wl4p2r] {
            flex-direction: column;
            width: 100%;
        }

        .btn[b-bxp7wl4p2r] {
            width: 100%;
            min-width: auto;
        }

        .hero-media[b-bxp7wl4p2r] {
            min-width: 100%;
            max-width: 300px;
        }
    }
/* /Shared/Public/InsightsSection.razor.rz.scp.css */
/* Overall Insights Section - Program Cards */
/* Figma Reference: https://www.figma.com/design/jhCDGezU9sAx4VmK9GFD3E/MIEE-SCS?node-id=2390-4768&m=dev */

.overall-insights[b-dpkgmdezee] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding: 80px 40px;
    background: linear-gradient(99.1778deg, rgb(255, 226, 219) 6.8349%, rgb(220, 232, 251) 99.784%);
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.insights-title[b-dpkgmdezee] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: normal;
    letter-spacing: -0.512px;
    color: #000000;
    text-align: center;
    margin: 0;
    padding: 0;
    max-width: 900px;
}

.insights-subtitle-wrapper[b-dpkgmdezee] {
    display: flex;
    justify-content: center;
    width: 100%;
}

.insights-subtitle[b-dpkgmdezee] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.48px;
    color: #17253d;
    text-align: center;
    margin: 0;
    padding: 0;
    max-width: 500px;
}

/* Benefits Cards */
.insights-benefits[b-dpkgmdezee] {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    flex-wrap: nowrap;
}

.benefit-card[b-dpkgmdezee] {
    background-color: #fefefe;
    border: 1px solid #e6f2fb;
    border-radius: 8px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 380px;
    box-sizing: border-box;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 4px 0px rgba(0, 0, 0, 0.14);
    min-height: 267px;
}

.benefit-icon[b-dpkgmdezee] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #fefefe;
    border: 1px solid #e6f2fb;
    border-radius: 8px;
    flex-shrink: 0;
}

.benefit-icon svg[b-dpkgmdezee] {
    width: 24px;
    height: 24px;
}

.benefit-title[b-dpkgmdezee] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: normal;
    letter-spacing: -0.6px;
    color: #0e1726;
    text-align: center;
    margin: 0;
    padding: 0;
}

.benefit-description[b-dpkgmdezee] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: #000000;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Program Cards Layout */
.program-cards[b-dpkgmdezee] {
    display: flex;
    gap: 29px;
    align-items: center;
    flex-shrink: 0;
}

.program-card[b-dpkgmdezee] {
    background-color: #fefefe;
    border: 1px solid #e6f2fb;
    border-radius: 24px;
    flex-shrink: 0;
    position: relative;
}

.card-content-wrapper[b-dpkgmdezee] {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: inherit;
}

.card-text[b-dpkgmdezee] {
    display: flex;
    flex-direction: column;
    gap: 23px;
    align-items: flex-start;
    flex-shrink: 0;
}

.card-title[b-dpkgmdezee] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1.6px;
    color: #0e1726;
    text-align: left;
    margin: 0;
    min-width: 100%;
    width: min-content;
    white-space: pre-wrap;
}

.card-description[b-dpkgmdezee] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: #000000;
    text-align: left;
    margin: 0;
    width: 300px;
    white-space: pre-wrap;
    flex-shrink: 0;
}

.card-description p[b-dpkgmdezee] {
    margin: 0 0 1em 0;
}

.card-description p:last-child[b-dpkgmdezee] {
    margin-bottom: 0;
}

.learn-more-btn[b-dpkgmdezee] {
    background-color: #0078d4;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 16px 20px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.3px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    white-space: nowrap; 
    width: max-content; 
    min-width: max-content; 
    overflow: visible; 
    flex: 0 0 auto; 
    line-height: 1.2; 
    box-sizing: border-box;
}

.learn-more-btn p[b-dpkgmdezee] {
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}
.learn-more-btn:hover[b-dpkgmdezee] {
    background-color: #106ebe;
}

.learn-more-text[b-dpkgmdezee] {
    display: inline-block; 
    line-height: 1.2; 
}


.card-image-wrapper[b-dpkgmdezee] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 64px 10px;
    overflow: hidden;
    border-radius: 16px;
    flex-shrink: 0;
    width: 272px;
    height: 310px;
    box-sizing: border-box;
    position: relative;
}

.program-card:first-child .card-image-wrapper[b-dpkgmdezee] {
    background: linear-gradient(140.935deg, #023570 0%, #a9a5cc 103.21%);
}

.program-card:last-child .card-image-wrapper[b-dpkgmdezee] {
    background: linear-gradient(140.935deg, #f39fa2 0%, #755568 103.21%);
}

/* MIE Card Image - 182px dimension from Figma */
.program-card:first-child .card-image[b-dpkgmdezee] {
    height: 182px;
    width: 182px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SCS Card Image - 182px dimension from Figma */
.program-card:last-child .card-image[b-dpkgmdezee] {
    height: 182px;
    width: 182px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image[b-dpkgmdezee] {
    position: relative;
    overflow: visible;
    pointer-events: none;
}

/* MIE Image positioning - centered in 182px container */
.program-card:first-child .card-image img[b-dpkgmdezee] {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    max-width: none;
}

/* SCS Image positioning - centered in 182px container */
.program-card:last-child .card-image img[b-dpkgmdezee] {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    max-width: none;
}

/* Responsive */
@media (max-width: 900px) {
    .program-cards[b-dpkgmdezee] {
        flex-direction: column;
        gap: 40px;
    }
    
    .card-content-wrapper[b-dpkgmdezee] {
        flex-direction: column;
        gap: 24px;
    }
    
    .card-text[b-dpkgmdezee] {
        width: 100%;
    }
    
    .card-description[b-dpkgmdezee] {
        width: 100%;
    }
}

.learn-more-btn[b-dpkgmdezee] {
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    letter-spacing: -0.3px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.learn-more-btn:hover[b-dpkgmdezee] {
    background-color: #106ebe;
}

@media (max-width: 768px) {
    .overall-insights[b-dpkgmdezee] {
        padding: 60px 0;
    }
    
    .insights-container[b-dpkgmdezee] {
        padding: 0 24px;
    }
    
    .insights-title[b-dpkgmdezee] {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .card-content[b-dpkgmdezee] {
        flex-direction: column;
        padding: 24px;
    }
    
    .card-text[b-dpkgmdezee] {
        max-width: 100%;
    }
    
    .card-title[b-dpkgmdezee] {
        font-size: 24px;
        line-height: 32px;
    }
    
    .card-description[b-dpkgmdezee] {
        font-size: 14px;
    }
    
    .card-image-wrapper[b-dpkgmdezee] {
        width: 100%;
        padding: 30px 20px;
    }
    
    .card-image img[b-dpkgmdezee] {
        width: 200px;
        height: 200px;
    }
}

.learn-more-btn[b-dpkgmdezee] {
    width: 107px;
    height: 47px;
    background-color: #0078d4;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}

.learn-more-btn:hover[b-dpkgmdezee] {
    background-color: #005a9e;
}

.learn-more-btn:active[b-dpkgmdezee] {
    background-color: #004578;
}

.card-image-placeholder[b-dpkgmdezee] {
    width: 272px;
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 4px;
}

.image-placeholder[b-dpkgmdezee] {
    font-size: 32px;
    font-weight: 600;
    color: #0078d4;
}

/* Program-specific card styling */
.miee-card .card-image-placeholder[b-dpkgmdezee] {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.scs-card .card-image-placeholder[b-dpkgmdezee] {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.scs-card .image-placeholder[b-dpkgmdezee] {
    color: #7b1fa2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .program-cards[b-dpkgmdezee] {
        gap: 32px;
        display: unset !important;
      
    }

    .program-card[b-dpkgmdezee] {
        height: auto;
        margin-bottom: 22px;
    }
    
    .card-content[b-dpkgmdezee] {
        flex-direction: column;
    }
    
    .card-text[b-dpkgmdezee] {
        max-width: 100%;
    }
    
    .card-image-placeholder[b-dpkgmdezee] {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .overall-insights[b-dpkgmdezee] {
        padding: 60px 24px;
    }
    
    .insights-title[b-dpkgmdezee] {
        font-size: 28px;
        margin: 0 0 40px 0;
    }
    
    .program-cards[b-dpkgmdezee] {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .card-title[b-dpkgmdezee] {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .overall-insights[b-dpkgmdezee] {
        padding: 40px 16px;
    }
    
    .insights-title[b-dpkgmdezee] {
        font-size: 24px;
    }
    
    .card-content[b-dpkgmdezee] {
        padding: 20px;
    }
    
    .card-title[b-dpkgmdezee] {
        font-size: 18px;
    }
    
    .card-description[b-dpkgmdezee] {
        font-size: 13px;
    }
}
@media (min-width: 1350px) and (max-width: 1400px) {

    .card-image-wrapper[b-dpkgmdezee] {
        width: 232px !important;
    }

    .program-card:first-child .card-image-wrapper[b-dpkgmdezee] {
        height: 272px !important;
    }

    .program-card:last-child .card-image-wrapper[b-dpkgmdezee] {
        height: 272px !important;
    }


}
@media (max-width: 1349px) {

    .card-image-wrapper[b-dpkgmdezee] {
        width: 222px !important;
    }

    .program-card:first-child .card-image-wrapper[b-dpkgmdezee] {
        height: 252px !important;
    }

    .program-card:last-child .card-image-wrapper[b-dpkgmdezee] {
        height: 252px !important;
    }


}
/* /Shared/Public/MieResourcesSection.razor.rz.scp.css */
.mie-resources-section[b-y6eiw4tw0g] {
    width: 100%;
    padding: 96px 0;
    background: linear-gradient(112.968deg, rgb(255, 223, 215) 0%, rgb(244, 250, 253) 49.563%, rgb(255, 226, 218) 99.135%);
    display: flex;
    align-items: flex-start;
}

.mie-resources-container[b-y6eiw4tw0g] {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
}

.mie-resources-header[b-y6eiw4tw0g] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding-left: 40px;
}

.mie-resources-eyebrow-wrapper[b-y6eiw4tw0g] {
    width: 100%;
    padding-bottom: 8px;
}

.mie-resources-eyebrow[b-y6eiw4tw0g] {
    font-family: "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.96px;
    color: #005597;
    margin: 0;
    line-height: 16px;
}

.mie-resources-body[b-y6eiw4tw0g] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.mie-resources-title[b-y6eiw4tw0g] {
    font-family: "Segoe UI", sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #0e1726;
    margin: 0;
    line-height: 48px;
    letter-spacing: -2px;
}

.mie-resources-description[b-y6eiw4tw0g] {
    font-family: "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #17253d;
    margin: 0;
    line-height: 24px;
    letter-spacing: -0.48px;
}

/* Loading State */
.loading-container[b-y6eiw4tw0g] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    width: 100%;
}

.loading-container p[b-y6eiw4tw0g] {
    font-family: "Segoe UI", sans-serif;
    font-size: 16px;
    color: #686868;
}

/* No Resources State */
.no-resources[b-y6eiw4tw0g] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    width: 100%;
}

.no-resources p[b-y6eiw4tw0g] {
    font-family: "Segoe UI", sans-serif;
    font-size: 16px;
    color: #686868;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .mie-resources-title[b-y6eiw4tw0g] {
        font-size: 32px;
    }

    .mie-resources-description[b-y6eiw4tw0g] {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .mie-resources-section[b-y6eiw4tw0g] {
        padding: 40px 0;
    }

    .mie-resources-container[b-y6eiw4tw0g] {
        padding: 0 20px;
        gap: 20px;
    }

    .mie-resources-title[b-y6eiw4tw0g] {
        font-size: 28px;
    }

    .mie-resources-description[b-y6eiw4tw0g] {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .mie-resources-section[b-y6eiw4tw0g] {
        padding: 32px 0;
    }

    .mie-resources-container[b-y6eiw4tw0g] {
        padding: 0 16px;
    }

    .mie-resources-title[b-y6eiw4tw0g] {
        font-size: 24px;
    }

    .mie-resources-subtitle[b-y6eiw4tw0g] {
        font-size: 12px;
    }
}

/* RTL Support */
:global(body.langdirection-rtl) .mie-resources-section[b-y6eiw4tw0g] {
    direction: rtl;
}

:global(body.langdirection-rtl) .mie-resources-header[b-y6eiw4tw0g] {
    text-align: right;
}

:global(body.langdirection-rtl) .mie-resources-description[b-y6eiw4tw0g] {
    text-align: right;
}
/* /Shared/Public/ProfessionalDevelopmentSection.razor.rz.scp.css */
/* Professional Development Section */
/* Figma Reference: https://www.figma.com/design/jhCDGezU9sAx4VmK9GFD3E/MIEE-SCS?node-id=2390-4804&m=dev */

.professional-dev-section[b-ohe20x13of] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    padding: 96px 0;
    background: linear-gradient(to right, #daf2fd 0%, #b1e4fb 50%, #dbf2fc 100%);
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.professional-dev-container[b-ohe20x13of] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    padding: 0;
    box-sizing: border-box;
}

.professional-dev-header[b-ohe20x13of] {
    width: 100%;
    padding-left: 40px;
    gap: 16px;
    align-items: flex-start;
}

.professional-dev-eyebrow-wrapper[b-ohe20x13of] {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.professional-dev-eyebrow[b-ohe20x13of] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.96px;
    color: #005597;
    text-align: left;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

.professional-dev-body[b-ohe20x13of] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

.professional-dev-title[b-ohe20x13of] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -2px;
    color: #0e1726;
    text-align: left;
    margin: 0;
    padding-top: 16px;
}

.professional-dev-description[b-ohe20x13of] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.48px;
    color: #17253d;
    text-align: left;
    margin: 0;
    padding: 0;
}

.loading-container[b-ohe20x13of] {
    width: 100%;
    text-align: center;
    padding: 40px;
}

.no-resources[b-ohe20x13of] {
    width: 100%;
    text-align: center;
    padding: 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .professional-dev-container[b-ohe20x13of] {
        padding: 0 24px;
    }

    .professional-dev-title[b-ohe20x13of] {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 768px) {
    .professional-dev-section[b-ohe20x13of] {
        padding: 60px 0;
        gap: 32px;
    }

    .professional-dev-container[b-ohe20x13of] {
        padding: 0 16px;
        gap: 32px;
    }

    .professional-dev-title[b-ohe20x13of] {
        font-size: 28px;
        line-height: 36px;
    }

    .professional-dev-description[b-ohe20x13of] {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .professional-dev-section[b-ohe20x13of] {
        padding: 40px 0;
        gap: 24px;
    }

    .professional-dev-container[b-ohe20x13of] {
        padding: 0 16px;
        gap: 24px;
    }

    .professional-dev-title[b-ohe20x13of] {
        font-size: 24px;
        line-height: 32px;
    }

    .professional-dev-description[b-ohe20x13of] {
        font-size: 13px;
        line-height: 18px;
    }
}
/* /Shared/Public/ResourceCard.razor.rz.scp.css */
.resource-card[b-rv8iaza3j8] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    padding: 8px;
    width: 100%;
    max-width: none;
    border-radius: 24px;
    border: 1px solid #F0F0F0;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.resource-card:hover[b-rv8iaza3j8] {
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.resource-card:focus[b-rv8iaza3j8] {
    outline: 3px solid #0078D4;
    outline-offset: 2px;
}

.resource-card:focus-visible[b-rv8iaza3j8] {
    outline: 3px solid #0078D4;
    outline-offset: 2px;
}

/* Card Preview / Image */
.card-preview[b-rv8iaza3j8] {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.card-preview img[b-rv8iaza3j8] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Card Content */
.card-content[b-rv8iaza3j8] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 12px 8px 8px 8px;
    min-height: 200px;
    justify-content: space-between;
}

/* Metadata Row (Categories + Content Type) */
.card-metadata[b-rv8iaza3j8] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.category-pill[b-rv8iaza3j8] {
    display: inline-block;
    padding: 4px 0px;
    border-radius: 50px;
/*     background-color: #0078D4; */
    color: #0078D4;
    font-family: "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

.content-type-badge[b-rv8iaza3j8] {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    background-color: #686868;
    color: white;
    font-family: "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

/* Title */
.card-title[b-rv8iaza3j8] {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    font-family: "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0E1726;
    margin: 6px 0;
    line-height: 1.3;
}

/* Description */
.card-description[b-rv8iaza3j8] {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    font-family: "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #0E1726;
    margin: 6px 0;
    line-height: 1.5;
    flex-grow: 1;
}

/* Card Footer / Link */
.card-footer[b-rv8iaza3j8] {
    margin-top: auto;
    padding-top: 8px;
    background-color: unset !important;
    border-top: unset !important;
    padding: .75rem 0 !important;
}

.card-link[b-rv8iaza3j8] {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #0067B8;
    font-family: "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.card-link:hover[b-rv8iaza3j8] {
    text-decoration: underline;
}

.card-link:focus[b-rv8iaza3j8] {
    outline: none;
    text-decoration: underline;
}

.card-link:focus-visible[b-rv8iaza3j8] {
    outline: 2px solid #0078D4;
    outline-offset: 2px;
}

.link-button[b-rv8iaza3j8] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background-color: #0078D4;
    flex-shrink: 0;
}

.arrow-icon[b-rv8iaza3j8] {
    color: white;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.link-text[b-rv8iaza3j8] {
    color: #0067B8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

/* Responsive Styles */
    @media (min-width: 1470px) and (max-width: 1599px) {
    .resource-card[b-rv8iaza3j8] {
        width: 300px;
    }
}

@media (max-width: 1470px) and (min-width: 1310px) {
    .resource-card[b-rv8iaza3j8] {
        width: 260px;
    }
}

@media (max-width: 1309px) and (min-width: 1200px) {
    .resource-card[b-rv8iaza3j8] {
        width: 240px;
    }
}

@media (max-width: 1199px) {
    .resource-card[b-rv8iaza3j8] {
        width: 318px;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .resource-card[b-rv8iaza3j8] {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .resource-card[b-rv8iaza3j8] {
        width: 100%;
        max-width: 400px;
    }
}

/* RTL Support */
:global(body.langdirection-rtl) .resource-card[b-rv8iaza3j8] {
    direction: rtl;
    text-align: right;
}

:global(body.langdirection-rtl) .card-link[b-rv8iaza3j8] {
    flex-direction: row-reverse;
}

:global(body.langdirection-rtl) .arrow-icon[b-rv8iaza3j8] {
    transform: rotate(180deg);
}

:global(body.langdirection-rtl) .card-metadata[b-rv8iaza3j8] {
    flex-direction: row-reverse;
}
/* /Shared/Public/ResourceCardGrid.razor.rz.scp.css */
.resource-cards-carousel[b-2lckd0rea6] {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.carousel-wrapper[b-2lckd0rea6] {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.carousel-slides[b-2lckd0rea6] {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 24px;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    align-items: stretch;
}

.carousel-slides[b-2lckd0rea6]::-webkit-scrollbar {
    display: none;
}

.carousel-slide-item[b-2lckd0rea6] {
    flex: 0 0 432px;
    min-width: 432px;
    max-width: 432px;
    display: flex;
  /*  height: 100%;*/
}

.carousel-controls[b-2lckd0rea6] {
    display: flex;
    justify-content: flex-start;
    padding: 0;
    box-sizing: border-box;
}

.carousel-button-group[b-2lckd0rea6] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-button[b-2lckd0rea6] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid #2a446f;
    border-radius: 200px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 14px;
    flex-shrink: 0;
}

    .carousel-button:hover:not(:disabled)[b-2lckd0rea6] {
        background-color: lightgrey;
    }

.carousel-button:disabled[b-2lckd0rea6] {
    opacity: 0.2;
    cursor: not-allowed;
}

.carousel-button svg[b-2lckd0rea6] {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button-prev[b-2lckd0rea6] {
}

.carousel-button-next[b-2lckd0rea6] {
}

/* Responsive Design */
@media (max-width: 1200px) {
    .carousel-slide-item[b-2lckd0rea6] {
        flex: 0 0 calc((100% - 48px) / 3.5);
        min-width: calc((100% - 48px) / 3.5);
    }
}

@media (max-width: 1022px) {
    .carousel-slide-item[b-2lckd0rea6] {
        flex: 0 0 calc((100% - 16px) / 2);
        min-width: calc((100% - 16px) / 2);
    }

    .carousel-slides[b-2lckd0rea6] {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .carousel-slide-item[b-2lckd0rea6] {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .carousel-slides[b-2lckd0rea6] {
        gap: 16px;
    }
}

.show-more-button:hover .show-more-arrow[b-2lckd0rea6] {
    transform: translateY(2px);
}

/* Responsive Grid - 3 columns */
@media (max-width: 1400px) {
    .resource-cards-grid[b-2lckd0rea6] {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Responsive Grid - 2 columns */
@media (max-width: 1022px) {
    .resource-cards-grid[b-2lckd0rea6] {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Responsive Grid - 1 column (mobile) */
@media (max-width: 700px) {
    .resource-cards-grid[b-2lckd0rea6] {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* RTL Support */
:global(body.langdirection-rtl) .resource-cards-grid[b-2lckd0rea6] {
    direction: rtl;
}
/* /Shared/Public/SuccessStoriesSection.razor.rz.scp.css */
/* Success Stories Section */
/* Figma Reference: Node 658:46747 */

.success-stories[b-6582k2xdmu] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 60px 0 60px 0;
    box-sizing: border-box;
}

.center-content[b-6582k2xdmu] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

.section-title[b-6582k2xdmu] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1.6px;
    color: #0e1726;
    margin: 0;
    white-space: pre-wrap;
    min-width: 100%;
    width: min-content;
}

.section-description[b-6582k2xdmu] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: #000000;
    text-align: left;
    margin: 0;
    flex-shrink: 0;
}

.image-accordion-container[b-6582k2xdmu] {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-shrink: 0;
}

.hero-image-container[b-6582k2xdmu] {
    display: inline-grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    justify-items: start;
    line-height: 0;
    flex-shrink: 0;
    position: relative;
}



    .hero-image-mask img[b-6582k2xdmu] {
        /*  position: absolute;*/
        inset: 0;
        border-radius: 12px;
        width: 834px;
        height: 434px;
        object-fit: cover;
        object-position: 50% 50%;
        max-width: none;
        pointer-events: none;
    }

.accordion-container[b-6582k2xdmu] {
    width: 597px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-shrink: 0;
}

.accordion-item[b-6582k2xdmu] {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    width: 100%;
    /* transition: all 0.3s ease;*/
    overflow: hidden;
}

    .accordion-item.active[b-6582k2xdmu] {
        gap: 32px;
    }

    .accordion-item.collapsed[b-6582k2xdmu] {
        margin-left: 32px;
    }

        .accordion-item.collapsed .accordion-background[b-6582k2xdmu] {
            display: none;
        }

        .accordion-item.collapsed .accordion-content[b-6582k2xdmu] {
            width: 100%;
        }

.accordion-background[b-6582k2xdmu] {
    width: 3px;
    height: 172px;
    background-color: #005597;
    border-radius: 4px;
    flex-shrink: 0;
}

.accordion-content[b-6582k2xdmu] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    flex-shrink: 0;
    min-width: 0;
    flex-grow: 1;
}

.accordion-header[b-6582k2xdmu] {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    text-align: left;
    outline: none;
}

    .accordion-header:hover[b-6582k2xdmu] {
        opacity: 0.8;
    }

    .accordion-header:focus[b-6582k2xdmu] {
        outline: 2px solid #0074d3;
        outline-offset: 2px;
    }

.accordion-title[b-6582k2xdmu] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.6px;
    color: #0e1726;
    text-align: left;
    margin: 0;
    flex-grow: 1;
    white-space: nowrap;
}

.chevron-icon[b-6582k2xdmu] {
    width: 20px;
    height: 20px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

    .chevron-icon.expanded[b-6582k2xdmu] {
        transform: rotate(180deg);
    }

    .chevron-icon svg[b-6582k2xdmu] {
        width: 100%;
        height: 100%;
    }

.accordion-text[b-6582k2xdmu] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.48px;
    color: #000000;
    text-align: left;
    margin: 0;
    white-space: pre-wrap;
    min-width: 100%;
    width: min-content;
    flex-shrink: 0;
}

.learn-more-link[b-6582k2xdmu] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.link-text[b-6582k2xdmu] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: -0.48px;
    color: #0074d3;
    text-decoration: none;
    margin: 0;
    flex-shrink: 0;
}

    .link-text:hover[b-6582k2xdmu] {
        text-decoration: underline;
    }

.learn-more-link svg[b-6582k2xdmu] {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.divider-line[b-6582k2xdmu] {
    height: 1px;
    background-color: #d1d1d1;
    width: 100%;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1400px) {
    .image-accordion-container[b-6582k2xdmu] {
        flex-direction: column;
        gap: 32px;
    }

    .hero-image-mask[b-6582k2xdmu] {
        margin-left: 0;
        width: 100%;
        max-width: 654px;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .accordion-container[b-6582k2xdmu] {
        width: 100%;
        max-width: 597px;
    }

    .accordion-item[b-6582k2xdmu] {
        width: 100%;
    }

    .accordion-content[b-6582k2xdmu] {
        width: 100%;
    }
}
/* /Shared/Public/TopNavigationBar.razor.rz.scp.css */
/* Top Navigation Bar Styles */
/* Figma Reference: Node 725:31012 */

.top-navigation[b-m5erg62ug6] {
    position: relative;
    height: 50px;
  /*  width: 1600px;*/
    flex-shrink: 0;
}

.line[b-m5erg62ug6] {
    position: absolute;
    inset: 0;
    background-color: white;
    z-index: -1;
}

.navigation-links[b-m5erg62ug6] {
    max-width: 1600px;
    margin: 0 auto;
    padding: 7px 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left Side */
.left-side[b-m5erg62ug6] {
    display: flex;
    align-items: center;
    gap: 23px;
    flex-shrink: 0;
}

.microsoft-logo-container[b-m5erg62ug6] {
    width: 107px;
    height: 23px;
    flex-shrink: 0;
    position: relative;
}

.microsoft-logo[b-m5erg62ug6] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    max-width: none;
    pointer-events: none;
}

.line-vertical[b-m5erg62ug6] {
    width: 2px;
    height: 24px;
    background-color: black;
    flex-shrink: 0;
}

.flex[b-m5erg62ug6] {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.program-title[b-m5erg62ug6] {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: normal;
    color: black;
    text-align: left;
    white-space: pre;
    flex-shrink: 0;
    margin: 0;
}

.navigation-items[b-m5erg62ug6] {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 19px;
    flex-shrink: 0;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: normal;
    color: black;
    text-align: left;
    white-space: pre;
}

.nav-item[b-m5erg62ug6] {
    position: relative;
    flex-shrink: 0;
    margin: 0;
}

.nav-link-external[b-m5erg62ug6] {
    text-decoration: none;
    color: black;
    transition: color 0.2s ease;
}

.nav-link-external:hover[b-m5erg62ug6] {
    color: #0078d4;
    text-decoration: underline;
}

/* Right Side */
.right-side[b-m5erg62ug6] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-shrink: 0;
}

/* User Profile and Dropdown - Namespaced with tnb- prefix */
.tnb-user-profile-container[b-m5erg62ug6] {
    position: relative !important;
    display: inline-block !important;
}

.tnb-user-profile[b-m5erg62ug6] {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    padding: 4px !important;
    border-radius: 4px !important;
    transition: background-color 0.2s ease !important;
}

.tnb-user-profile:hover[b-m5erg62ug6] {
    background-color: #f5f5f5 !important;
}

.tnb-user-name[b-m5erg62ug6] {
    font-family: 'Segoe UI', sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 13px !important;
    line-height: normal !important;
    color: black !important;
    text-align: left !important;
    white-space: pre !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.tnb-mask-group[b-m5erg62ug6] {
    display: inline-grid !important;
    grid-template-columns: max-content !important;
    grid-template-rows: max-content !important;
    place-items: start !important;
    line-height: 0 !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

.tnb-user-avatar[b-m5erg62ug6] {
    grid-area: 1 / 1 !important;
    width: 34px !important;
    height: 33px !important;
    margin-left: -3px !important;
    margin-top: -2.5px !important;
    position: relative !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cpath d='M14 0C6.268 0 0 6.268 0 14s6.268 14 14 14 14-6.268 14-14S21.732 0 14 0zm0 4.2c2.324 0 4.2 1.876 4.2 4.2s-1.876 4.2-4.2 4.2-4.2-1.876-4.2-4.2 1.876-4.2 4.2-4.2zm0 19.6c-3.5 0-6.58-1.792-8.4-4.508.042-2.786 5.6-4.312 8.4-4.312 2.786 0 8.358 1.526 8.4 4.312-1.82 2.716-4.9 4.508-8.4 4.508z' fill='%23000'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cpath d='M14 0C6.268 0 0 6.268 0 14s6.268 14 14 14 14-6.268 14-14S21.732 0 14 0zm0 4.2c2.324 0 4.2 1.876 4.2 4.2s-1.876 4.2-4.2 4.2-4.2-1.876-4.2-4.2 1.876-4.2 4.2-4.2zm0 19.6c-3.5 0-6.58-1.792-8.4-4.508.042-2.786 5.6-4.312 8.4-4.312 2.786 0 8.358 1.526 8.4 4.312-1.82 2.716-4.9 4.508-8.4 4.508z' fill='%23000'/%3E%3C/svg%3E") !important;
    -webkit-mask-repeat: no-repeat !important;
    mask-repeat: no-repeat !important;
    -webkit-mask-position: 3px 2.5px !important;
    mask-position: 3px 2.5px !important;
    -webkit-mask-size: 28px 28px !important;
    mask-size: 28px 28px !important;
    mask-composite: intersect !important;
    -webkit-mask-composite: source-in !important;
    background-color: #e0e0e0 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.tnb-chevron-icon[b-m5erg62ug6] {
    font-family: 'Segoe MDL2 Assets', 'Segoe UI Symbol' !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 12px !important;
    line-height: normal !important;
    color: black !important;
    text-align: center !important;
    white-space: pre !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    width: 12px !important;
    height: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.tnb-chevron-icon[b-m5erg62ug6]::before {
    content: '\E70D' !important;
}

/* Dropdown Menu - Namespaced */
.tnb-dropdown-menu[b-m5erg62ug6] {
    position: absolute !important;
    top: calc(100% + 4px) !important;
    right: 0 !important;
    background-color: white !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 4px 0 !important;
    border-radius: 4px !important;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) !important;
    z-index: 10000 !important;
    min-width: 150px !important;
    white-space: nowrap !important;
}

.tnb-dropdown-item[b-m5erg62ug6] {
    background-color: white !important;
    box-sizing: border-box !important;
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    padding: 10px 16px !important;
    cursor: pointer !important;
    transition: background-color 0.15s ease !important;
    width: 100% !important;
}

.tnb-dropdown-item:hover[b-m5erg62ug6] {
    background-color: #f5f5f5 !important;
}

.tnb-dropdown-item:active[b-m5erg62ug6] {
    background-color: #e8e8e8 !important;
}

.tnb-dropdown-item p[b-m5erg62ug6] {
    font-family: 'Segoe UI', sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 14px !important;
    line-height: normal !important;
    color: black !important;
    text-align: left !important;
    white-space: pre !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.tnb-view-profile-icon[b-m5erg62ug6] {
    width: 14px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='18' viewBox='0 0 14 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 9C9.20914 9 11 7.20914 11 5C11 2.79086 9.20914 1 7 1C4.79086 1 3 2.79086 3 5C3 7.20914 4.79086 9 7 9Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1 17C1 14.2386 3.68629 12 7 12C10.3137 12 13 14.2386 13 17' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.tnb-sign-out-icon[b-m5erg62ug6] {
    width: 19.997px !important;
    height: 16.396px !important;
    flex-shrink: 0 !important;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='17' viewBox='0 0 20 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 12.5L11.5 8.5L7.5 4.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.5 8.5H0.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.5 0.5V16.5H7.5V12.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* Sign In Container - For unauthenticated users */
.tnb-sign-in-container[b-m5erg62ug6] {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-shrink: 0 !important;
}

.tnb-btn[b-m5erg62ug6] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
    font-family: 'Segoe UI', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    border: none !important;
    outline: none !important;
}

.tnb-btn span[b-m5erg62ug6] {
    padding-bottom: 2px !important;
}

.tnb-btn-primary[b-m5erg62ug6] {
    background-color: #0f6cbd !important;
    color: #ffffff !important;
}

.tnb-btn-primary:hover[b-m5erg62ug6] {
    background-color: #115ea3 !important;
}

.tnb-btn-primary:active[b-m5erg62ug6] {
    background-color: #0f548c !important;
}

.tnb-btn-outline[b-m5erg62ug6] {
    background-color: #ffffff !important;
    color: #242424 !important;
    border: 1px solid #d1d1d1 !important;
}

.tnb-btn-outline:hover[b-m5erg62ug6] {
    background-color: #f5f5f5 !important;
    border-color: #c7c7c7 !important;
}

.tnb-btn-outline:active[b-m5erg62ug6] {
    background-color: #e0e0e0 !important;
    border-color: #b3b3b3 !important;
}

/* Responsive */
@media (max-width: 1600px) {
    .top-navigation[b-m5erg62ug6] {
        width: 100%;
    }
    
    .navigation-links[b-m5erg62ug6] {
       /* width: 90%;
        max-width: 1359px;*/
    }
}
