/* ===== PGDM PROGRAM PAGE CSS START ===== */
/* File: /css/sections/programs/programs-pgdm.css */
/* Purpose: Complete styles for PGDM program page with updated color palette */
/* Dependencies: main.css, programs.css */
/* Last Updated: 2025-01-15 */

/* Tab colors - Updated to match programs.css palette */
:root {
    --tab-pgdm: var(--nsb-primary);
    --tab-global: #2A5C8B;
    --tab-international: #1A7F64;
    --tab-indicator-height: 4px;
}

/* ===== TAB STYLES ===== */
/* Tab colors matching programs.css pattern */
.tab-pgdm.active { 
    background: linear-gradient(135deg, var(--nsb-primary) 0%, #1a2b4d 100%);
}

.tab-global.active { 
    background: linear-gradient(135deg, var(--tab-global) 0%, #1d3d5c 100%);
}

.tab-international.active { 
    background: linear-gradient(135deg, var(--tab-international) 0%, #0f5c47 100%);
}

/* Hover states for non-active tabs */
.tab-pgdm:hover:not(.active) {
    border-color: var(--nsb-primary);
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.05) 0%, rgba(26, 43, 77, 0.02) 100%);
}

.tab-global:hover:not(.active) {
    border-color: var(--tab-global);
    background: linear-gradient(135deg, rgba(42, 92, 139, 0.05) 0%, rgba(29, 61, 92, 0.02) 100%);
}

.tab-international:hover:not(.active) {
    border-color: var(--tab-international);
    background: linear-gradient(135deg, rgba(26, 127, 100, 0.05) 0%, rgba(15, 92, 71, 0.02) 100%);
}

/* ===== PROGRAM HERO/BADGE ===== */
/* PGDM Specific Hero */
.pgdm-hero {
    background: linear-gradient(135deg, var(--nsb-primary) 0%, #1a2b4d 100%);
}

/* Program Badge - Consolidated from multiple declarations */
.program-badge {
    background: linear-gradient(135deg, var(--nsb-primary) 0%, #1a2b4d 100%);
    color: var(--nsb-white);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semi-bold);
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Badge variations based on tab */
.tab-content[data-tab="global_immersion"] .program-badge {
    background: linear-gradient(135deg, var(--tab-global) 0%, #1d3d5c 100%);
    box-shadow: 0 4px 15px rgba(42, 92, 139, 0.2);
}

.tab-content[data-tab="international_internship"] .program-badge {
    background: linear-gradient(135deg, var(--tab-international) 0%, #0f5c47 100%);
    box-shadow: 0 4px 15px rgba(26, 127, 100, 0.2);
}

.program-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.program-badge span {
    position: relative;
    z-index: 2;
}

/* ===== PROGRAM META INFORMATION ===== */
/* Enhanced Program Meta - Consolidated */
.program-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 800px;
    margin: 2rem auto;
    background: var(--nsb-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    animation: fadeInUp 0.6s ease 0.4s both;
    position: relative;
    overflow: hidden;
}

.program-meta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--nsb-primary) 0%, 
        var(--tab-global) 50%, 
        var(--tab-international) 100%
    );
    opacity: 0.8;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    padding: 0.5rem;
    position: relative;
}

.meta-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--nsb-light);
}

.meta-label {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--nsb-text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--nsb-primary);
    line-height: 1.3;
}

.meta-value.price {
    color: var(--nsb-accent);
    font-size: 1.4rem;
    font-weight: 700;
}

.meta-note {
    font-size: 0.85rem;
    color: var(--nsb-text-light);
    margin-top: 0.5rem;
    text-align: center;
    font-style: italic;
    max-width: 200px;
}

/* ===== PROGRAM HIGHLIGHTS GRID ===== */
/* PGDM Highlights Grid */
.pgdm-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pgdm-highlight-item {
    background: var(--nsb-white);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--nsb-primary);
    transition: all var(--transition-normal);
}

.pgdm-highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 71, 161, 0.12);
}

.pgdm-highlight-title {
    color: var(--nsb-primary);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.pgdm-highlight-description {
    color: var(--nsb-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== FEE TABLE ===== */
/* Enhanced Fee Table */
.fee-comparison {
    margin-top: var(--spacing-xl);
    overflow-x: auto;
}

.fee-comparison-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    font-family: var(--font-secondary);
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.fee-comparison-table th {
    background: linear-gradient(135deg, var(--nsb-primary) 0%, #1a2b4d 100%);
    color: var(--nsb-white);
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: 600;
    font-family: var(--font-primary);
}

.fee-comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--nsb-light);
    vertical-align: top;
}

.fee-comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.fee-comparison-table tr:hover {
    background: #e9ecef;
}

.highlight-fee {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.1) 0%, rgba(26, 43, 77, 0.05) 100%);
    border-left: 4px solid var(--nsb-primary);
}

.installment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.installment-list li {
    padding: 0.25rem 0;
    color: var(--nsb-text-secondary);
    font-size: 0.9rem;
}

/* ===== SCHOLARSHIPS ===== */
/* Scholarships Grid */
.scholarship-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.scholarship-category {
    background: var(--nsb-white);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform var(--transition-normal);
    border-top: 4px solid var(--nsb-primary);
}

.scholarship-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 71, 161, 0.12);
}

.category-title {
    color: var(--nsb-primary);
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.scholarship-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scholarship-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--nsb-text-primary);
    line-height: 1.5;
}

.scholarship-list li::before {
    content: "✓";
    color: var(--nsb-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ===== PLACEMENT STATISTICS ===== */
/* Placement Statistics */
.placement-statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.stat-card {
    background: var(--nsb-white);
    border-radius: 12px;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform var(--transition-normal);
    border-top: 4px solid var(--nsb-primary);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 71, 161, 0.12);
}

.stat-value {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--nsb-primary);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--nsb-primary);
    margin-bottom: var(--spacing-sm);
}

.stat-description {
    font-size: 0.9rem;
    color: var(--nsb-text-secondary);
    line-height: 1.4;
}

/* ===== RECRUITERS ===== */
/* Top Recruiters */
.top-recruiters {
    margin-top: var(--spacing-xl);
}

.recruiter-category {
    margin-bottom: var(--spacing-lg);
}

.recruiter-category h4 {
    color: var(--nsb-primary);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.company-tag {
    background: var(--nsb-light);
    color: var(--nsb-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    border: 1px solid var(--nsb-light);
}

.company-tag:hover {
    background: var(--nsb-primary);
    color: var(--nsb-white);
    transform: translateY(-2px);
}

/* ===== TEACHING METHODS ===== */
/* Teaching Methods */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.method-card {
    background: var(--nsb-white);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform var(--transition-normal);
    border-top: 4px solid var(--nsb-primary);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 71, 161, 0.12);
}

.method-title {
    color: var(--nsb-primary);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.method-description {
    color: var(--nsb-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== ACCREDITATIONS ===== */
/* Accreditation Cards */
.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.accreditation-card {
    background: var(--nsb-white);
    border-radius: 12px;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform var(--transition-normal);
    border-top: 4px solid var(--nsb-primary);
}

.accreditation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 71, 161, 0.12);
}

.accreditation-title {
    color: var(--nsb-primary);
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.accreditation-description {
    color: var(--nsb-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== KEY POINTS ===== */
/* Key Points Grid */
.key-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.key-point-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--nsb-light);
    border-radius: 8px;
}

.key-point-bullet {
    width: 8px;
    height: 8px;
    background: var(--nsb-primary);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.key-point-text {
    color: var(--nsb-text-primary);
    font-size: 1rem;
    line-height: 1.5;
}

/* ===== ELIGIBILITY ===== */
/* Eligibility Content */
.eligibility-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.eligibility-requirements,
.admission-process {
    background: var(--nsb-white);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid var(--nsb-primary);
}

.requirements-list,
.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--nsb-text-primary);
    line-height: 1.5;
}

.requirements-list li::before {
    content: "•";
    color: var(--nsb-accent);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.process-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--nsb-text-primary);
    line-height: 1.5;
    counter-increment: step;
}

.process-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    background: var(--nsb-primary);
    color: var(--nsb-white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== INTERNATIONAL INTERNSHIP ===== */
/* International Internship Note */
.international-internship-note {
    background: linear-gradient(135deg, rgba(26, 127, 100, 0.1) 0%, rgba(15, 92, 71, 0.05) 100%);
    border-left: 4px solid var(--tab-international);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-top: var(--spacing-lg);
}

.international-internship-note p {
    color: var(--tab-international);
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* ===== ENHANCED TAB STYLES ===== */
/* Enhanced Tab Styles */
.program-tabs-section {
    background: var(--nsb-white);
    padding: var(--spacing-lg) 0;
    position: relative;
}

.program-tabs-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--nsb-primary) 0%, 
        var(--tab-global) 33%, 
        var(--tab-international) 66%, 
        var(--nsb-primary) 100%
    );
    opacity: 0.1;
}

.program-tabs-container {
    position: relative;
    padding: 1rem 0 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.program-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    background: transparent;
    position: relative;
    z-index: 2;
}

.program-tab {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    background: var(--nsb-white);
    border: 2px solid var(--nsb-light);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
    font-weight: 600;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.program-tab:hover {
    border-color: var(--nsb-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.program-tab.active {
    color: var(--nsb-white);
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    animation: tabPulse 0.5s ease;
}

.program-tab.active::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    background: var(--nsb-white);
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

@keyframes tabPulse {
    0% { transform: scale(1) translateY(-4px); }
    50% { transform: scale(1.02) translateY(-4px); }
    100% { transform: scale(1) translateY(-4px); }
}

.tab-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
}

.tab-icon-container {
    color: inherit;
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 0.25rem;
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.program-tab:hover .tab-icon-container {
    transform: scale(1.1);
}

.program-tab.active .tab-icon-container {
    transform: scale(1.1);
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.2); }
}

.tab-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tab-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    display: block;
    margin-bottom: 0.25rem;
    color: inherit;
}

.tab-short {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1.4;
    display: block;
    color: inherit;
}

.program-tab:not(.active) .tab-title {
    color: var(--nsb-primary);
}

.program-tab:not(.active) .tab-short {
    color: var(--nsb-text-secondary);
}

.tab-badge {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-normal);
    color: inherit;
    font-size: 0.9rem;
}

.program-tab.active .tab-badge {
    opacity: 0.8;
    transform: translateX(0);
}

.program-tab:hover:not(.active) .tab-badge {
    opacity: 0.5;
    transform: translateX(0);
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    height: var(--tab-indicator-height);
    background: linear-gradient(90deg, var(--nsb-primary), var(--tab-global), var(--tab-international));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px 2px 0 0;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 1;
}

.tab-helper-text {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--nsb-light);
}

.tab-helper-text p {
    color: var(--nsb-text-secondary);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.tab-helper-text i {
    color: var(--nsb-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== PROGRAM HIGHLIGHTS GRID SECTION ===== */
.program-highlights-grid {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.program-highlights-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--nsb-primary) 0%, 
        var(--tab-global) 33%, 
        var(--tab-international) 66%
    );
    opacity: 0.8;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--nsb-primary);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--nsb-accent);
    border-radius: 2px;
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--nsb-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Highlights Grid Container */
.highlights-grid-container {
    max-width: 1200px;
    margin: 0 auto var(--spacing-xl);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0.5rem;
}

/* Highlight Card */
.highlight-card {
    height: 100%;
    min-height: 180px;
}

.highlight-card-inner {
    background: var(--nsb-white);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.highlight-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--nsb-accent);
    border-radius: 2px 2px 0 0;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-card-inner {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.highlight-card:hover .highlight-card-inner::before {
    height: 6px;
    background: linear-gradient(90deg, var(--nsb-accent), #e59400);
}

/* Highlight Icon */
.highlight-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--nsb-primary), #1a2b4d);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--nsb-white);
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.highlight-card:nth-child(2n) .highlight-icon {
    background: linear-gradient(135deg, var(--tab-global), #1d3d5c);
}

.highlight-card:nth-child(3n) .highlight-icon {
    background: linear-gradient(135deg, var(--tab-international), #0f5c47);
}

.highlight-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: inherit;
    border-radius: 18px;
    opacity: 0.15;
    z-index: -1;
}

/* Highlight Content */
.highlight-content {
    flex: 1;
    width: 100%;
}

.highlight-text {
    color: var(--nsb-text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
    position: relative;
    padding-left: 0.5rem;
}

.highlight-text::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    top: 0;
    color: var(--nsb-accent);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Highlight Number */
.highlight-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--nsb-text-secondary);
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-number {
    background: var(--nsb-accent);
    color: var(--nsb-white);
    transform: scale(1.1) rotate(5deg);
}

/* Special Note Box */
.special-note-box {
    background: linear-gradient(135deg, 
        rgba(26, 127, 100, 0.08) 0%, 
        rgba(15, 92, 71, 0.04) 100%
    );
    border: 1px solid rgba(26, 127, 100, 0.15);
    border-radius: 14px;
    padding: 1.75rem;
    margin-top: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.special-note-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--tab-international), #0f5c47);
}

.note-icon {
    color: var(--tab-international);
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
    animation: pulse 2s infinite;
}

.note-content h4 {
    color: var(--tab-international);
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.note-content p {
    color: var(--nsb-text-primary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.note-content strong {
    color: var(--tab-international);
    font-weight: 600;
}

/* ===== PROGRAM HEADER ===== */
/* Center Aligned Program Header */
.program-header {
    text-align: center;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.program-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--nsb-primary) 0%, 
        var(--tab-global) 50%, 
        var(--tab-international) 100%
    );
    opacity: 0.8;
}

.program-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.program-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 0.6s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.program-main-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nsb-primary);
    text-align: center;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.2;
    max-width: 800px;
    animation: fadeInUp 0.6s ease 0.2s both;
    position: relative;
}

.program-main-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--nsb-accent);
    border-radius: 2px;
}

/* Animation for tab switching */
.tab-content.active .program-header-content > * {
    animation: fadeInUp 0.5s ease forwards;
}

.tab-content.active .program-badge-wrapper {
    animation-delay: 0.1s;
}

.tab-content.active .program-main-title {
    animation-delay: 0.2s;
}

.tab-content.active .program-meta {
    animation-delay: 0.3s;
}

/* Animation for grid items */
.highlight-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.highlight-card:nth-child(1) { animation-delay: 0.1s; }
.highlight-card:nth-child(2) { animation-delay: 0.2s; }
.highlight-card:nth-child(3) { animation-delay: 0.3s; }
.highlight-card:nth-child(4) { animation-delay: 0.4s; }
.highlight-card:nth-child(5) { animation-delay: 0.5s; }
.highlight-card:nth-child(6) { animation-delay: 0.6s; }
.highlight-card:nth-child(7) { animation-delay: 0.7s; }
.highlight-card:nth-child(8) { animation-delay: 0.8s; }
.highlight-card:nth-child(9) { animation-delay: 0.9s; }

/* ===== MINIMAL PROGRAM SUMMARY ===== */
.program-summary-section {
    background: var(--nsb-white);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--nsb-light);
    border-bottom: 1px solid var(--nsb-light);
}

.program-summary-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.program-summary-section .section-title {
    color: var(--nsb-primary);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.program-summary-section .section-subtitle {
    color: var(--nsb-text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Summary Stats Grid */
.summary-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
}

.stat-item {
    background: var(--nsb-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--nsb-light);
    background: var(--nsb-white);
}

.stat-item.highlight {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.1) 0%, rgba(26, 43, 77, 0.05) 100%);
    border: 1px solid rgba(13, 71, 161, 0.2);
}

.stat-item.highlight:hover {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.15) 0%, rgba(26, 43, 77, 0.08) 100%);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--nsb-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nsb-white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-item.highlight .stat-icon {
    background: var(--nsb-accent);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--nsb-primary);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.stat-item.highlight .stat-number {
    color: var(--nsb-primary);
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--nsb-text-secondary);
    margin-bottom: 0.25rem;
}

.stat-subtext {
    font-size: 0.85rem;
    color: var(--nsb-text-light);
}

/* Credit Distribution */
.credit-distribution {
    background: var(--nsb-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.distribution-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--nsb-primary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.distribution-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.distribution-item {
    background: var(--nsb-white);
    border-radius: 8px;
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.distribution-item:hover {
    border-color: var(--nsb-light);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.trimester-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.trimester-icon {
    color: var(--nsb-primary);
    font-size: 1rem;
    width: 24px;
    text-align: center;
}

.trimester-name {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--nsb-text-primary);
}

.trimester-credits {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.credit-number {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--nsb-primary);
}

.credit-label {
    font-size: 0.9rem;
    color: var(--nsb-text-secondary);
}

/* Different colors for each trimester */
.distribution-item:nth-child(1) .trimester-icon { color: var(--nsb-primary); }
.distribution-item:nth-child(1) .credit-number { color: var(--nsb-primary); }

.distribution-item:nth-child(2) .trimester-icon { color: var(--tab-global); }
.distribution-item:nth-child(2) .credit-number { color: var(--tab-global); }

.distribution-item:nth-child(3) .trimester-icon { color: var(--tab-international); }
.distribution-item:nth-child(3) .credit-number { color: var(--tab-international); }

.distribution-item:nth-child(4) .trimester-icon { color: #8E24AA; }
.distribution-item:nth-child(4) .credit-number { color: #8E24AA; }

.distribution-item:nth-child(5) .trimester-icon { color: #FF9800; }
.distribution-item:nth-child(5) .credit-number { color: #FF9800; }

.distribution-item:nth-child(6) .trimester-icon { color: #43A047; }
.distribution-item:nth-child(6) .credit-number { color: #43A047; }

/* ===== TOP RECRUITERS SECTION - SIMPLE TWO COLUMN ===== */
.recruiters-section {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
    background: var(--nsb-white);
    border-top: 1px solid var(--nsb-light);
    border-bottom: 1px solid var(--nsb-light);
}

.recruiters-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-md);
}

.recruiters-section .section-title {
    color: var(--nsb-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.recruiters-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--nsb-accent);
    border-radius: 2px;
}

.recruiters-section .section-subtitle {
    color: var(--nsb-text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Two Column Grid */
.recruiters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Recruiter Category */
.recruiter-category {
    background: var(--nsb-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.recruiter-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.category-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--nsb-primary);
    margin: 0;
}

.company-count {
    background: var(--nsb-primary);
    color: var(--nsb-white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Different colors for different categories */
.recruiter-category:nth-child(2) .company-count {
    background: var(--tab-global);
}

.recruiter-category:nth-child(3) .company-count {
    background: var(--tab-international);
}

.recruiter-category:nth-child(4) .company-count {
    background: #8E24AA;
}

/* Company Tags */
.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.company-tag {
    background: var(--nsb-white);
    color: var(--nsb-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--nsb-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 36px;
}

.company-tag:hover {
    background: var(--nsb-primary);
    color: var(--nsb-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.2);
    border-color: var(--nsb-primary);
}

/* Different hover colors for different categories */
.recruiter-category:nth-child(1) .company-tag:hover {
    background: var(--nsb-primary);
    border-color: var(--nsb-primary);
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.2);
}

.recruiter-category:nth-child(2) .company-tag:hover {
    background: var(--tab-global);
    border-color: var(--tab-global);
    box-shadow: 0 4px 12px rgba(42, 92, 139, 0.2);
}

.recruiter-category:nth-child(3) .company-tag:hover {
    background: var(--tab-international);
    border-color: var(--tab-international);
    box-shadow: 0 4px 12px rgba(26, 127, 100, 0.2);
}

.recruiter-category:nth-child(4) .company-tag:hover {
    background: #8E24AA;
    border-color: #8E24AA;
    box-shadow: 0 4px 12px rgba(142, 36, 170, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recruiter-category {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.recruiter-category:nth-child(1) { animation-delay: 0.1s; }
.recruiter-category:nth-child(2) { animation-delay: 0.2s; }
.recruiter-category:nth-child(3) { animation-delay: 0.3s; }
.recruiter-category:nth-child(4) { animation-delay: 0.4s; }

/* ===== RESPONSIVE DESIGN ===== */
/* Tab Responsive Design */
@media (max-width: 1024px) {
    .program-tabs {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .program-tab {
        flex: 1 0 calc(33.333% - 0.75rem);
        min-width: 200px;
    }
    
    .program-main-title {
        font-size: 2.2rem;
        padding: 0 var(--spacing-md);
    }
    
    .program-meta {
        padding: 1.75rem;
        gap: 1.5rem;
    }
    
    .meta-item {
        min-width: 180px;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.25rem;
    }
    
    .highlight-card-inner {
        padding: 1.5rem 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .program-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .program-tab {
        width: 100%;
        max-width: 400px;
        margin-bottom: 0.5rem;
    }
    
    .tab-content-wrapper {
        gap: 0.75rem;
    }
    
    .tab-icon-container {
        font-size: 1.3rem;
    }
    
    .tab-title {
        font-size: 0.95rem;
    }
    
    .tab-short {
        font-size: 0.8rem;
    }
    
    .program-header {
        padding: var(--spacing-lg) 0;
    }
    
    .program-main-title {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-md);
    }
    
    .program-main-title::after {
        bottom: -8px;
        width: 60px;
    }
    
    .program-meta {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .meta-item {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .meta-item:not(:last-child)::after {
        display: none;
    }
    
    .meta-item:not(:last-child) {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--nsb-light);
    }
    
    .meta-label {
        font-size: 0.9rem;
    }
    
    .meta-value {
        font-size: 1.1rem;
    }
    
    .meta-value.price {
        font-size: 1.3rem;
    }
    
    .program-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .program-highlights-grid {
        padding: 2.5rem 0;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .highlight-card-inner {
        padding: 1.5rem 1.25rem;
        min-height: 160px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
        border-radius: 12px;
    }
    
    .highlight-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .special-note-box {
        padding: 1.5rem;
        margin-top: 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .note-icon {
        font-size: 1.6rem;
    }
    
    .note-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .note-content p {
        font-size: 1rem;
    }
    
    /* Program Summary Responsive */
    .program-summary-section {
        padding: var(--spacing-lg) 0;
    }
    
    .program-summary-section .section-title {
        font-size: 1.6rem;
    }
    
    .program-summary-section .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .summary-stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .stat-item {
        padding: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .credit-distribution {
        padding: var(--spacing-md);
        margin: 0 1rem;
    }
    
    .distribution-item {
        padding: var(--spacing-sm);
    }
    
    .credit-number {
        font-size: 1.2rem;
    }
    
    /* Recruiters Responsive */
    .recruiters-section {
        padding: var(--spacing-lg) 0;
        margin: var(--spacing-lg) 0;
    }
    
    .recruiters-section .section-title {
        font-size: 1.8rem;
    }
    
    .recruiters-section .section-subtitle {
        font-size: 1rem;
    }
    
    .recruiters-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        max-width: 500px;
        padding: 0 var(--spacing-sm);
    }
    
    .company-tags {
        gap: 0.4rem;
    }
    
    .company-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        min-height: 32px;
    }
}

@media (max-width: 576px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .highlight-card-inner {
        padding: 1.5rem;
    }
    
    .special-note-box {
        padding: 1.25rem;
        margin: 1.5rem auto 0;
    }
    
    /* Program Summary Responsive */
    .program-summary-section .section-title {
        font-size: 1.4rem;
    }
    
    .trimester-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .trimester-icon {
        width: auto;
    }
    
    /* Recruiters Responsive */
    .recruiters-section .section-title {
        font-size: 1.6rem;
    }
    
    .recruiter-category {
        padding: 1.25rem;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .company-count {
        align-self: flex-start;
    }
    
    .company-tags {
        gap: 0.35rem;
    }
    
    .company-tag {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .program-main-title {
        font-size: 1.6rem;
    }
    
    .program-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .program-meta {
        padding: 1.25rem;
    }
    
    .meta-label {
        font-size: 0.85rem;
    }
    
    .meta-value {
        font-size: 1rem;
    }
    
    .meta-value.price {
        font-size: 1.2rem;
    }
    
    .program-tab {
        padding: 1rem;
    }
    
    .tab-content-wrapper {
        gap: 0.5rem;
    }
    
    .tab-icon-container {
        font-size: 1.2rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .program-highlights-grid {
        background: none !important;
        padding: 1rem 0 !important;
    }
    
    .highlight-card-inner {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }
    
    .highlight-icon {
        background: #333 !important;
        color: white !important;
    }
    
    .program-summary-section {
        background: #fff !important;
        border: 1px solid #ddd !important;
    }
    
    .stat-item {
        background: #f8f9fa !important;
        border: 1px solid #ddd !important;
    }
    
    .credit-distribution {
        background: #f8f9fa !important;
        border: 1px solid #ddd !important;
    }
    
    .recruiters-section {
        background: none !important;
        border: 1px solid #ddd !important;
        padding: 1rem 0 !important;
    }
    
    .recruiter-category {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        page-break-inside: avoid;
        margin-bottom: 1rem;
    }
    
    .company-count {
        background: #333 !important;
        color: white !important;
    }
    
    .company-tag {
        border: 1px solid #ddd !important;
        background: #f8f9fa !important;
        color: #000 !important;
    }
}

/* ===== PROGRAM OVERVIEW WITH HIGHLIGHTS CARDS ===== */
.program-highlights-cards {
    margin-top: 40px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.highlight-card {
    background: var(--nsb-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--nsb-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.highlight-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.highlight-title {
    color: var(--nsb-primary);
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.highlight-description {
    color: var(--nsb-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
    margin: 0;
}

/* ===== SECTION SEPARATOR ===== */
.section-separator {
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 50px 0;
    width: 100%;
}

/* ===== UPDATED FEE TABLE STYLES ===== */
.fee-wrapper .curriculum-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.fee-wrapper .curriculum-table th {
    background-color: var(--nsb-primary);
    color: var(--nsb-white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-family: var(--font-primary);
}

.fee-wrapper .curriculum-table td {
    padding: 15px;
    border-bottom: 1px solid var(--nsb-light);
    background-color: var(--nsb-white);
    vertical-align: top;
}

.fee-wrapper .curriculum-table tr:hover td {
    background-color: var(--nsb-light);
}

.program-name {
    font-weight: 600;
    color: var(--nsb-primary);
    margin-bottom: 5px;
}

.program-fee, .registration-fee, .total-amount {
    font-weight: 600;
    color: var(--nsb-primary);
}

.total-amount {
    font-size: 1.1rem;
    color: var(--nsb-accent);
}

.fee-note {
    font-size: 0.85rem;
    color: var(--nsb-text-light);
    margin-top: 5px;
}

.installment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.installment-list li {
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--nsb-light);
}

.installment-list li:last-child {
    border-bottom: none;
}

.installment-number {
    color: var(--nsb-text-secondary);
    margin-right: 10px;
}

.installment-label {
    flex-grow: 1;
    color: var(--nsb-text-secondary);
}

.installment-amount {
    font-weight: 600;
    color: var(--nsb-primary);
    min-width: 100px;
    text-align: right;
}

/* ===== FLOATING APPLY WIDGET ===== */
.floating-apply-widget {
    position: fixed;
    z-index: 9998;
    display: flex;
    align-items: center;
    transition: all var(--transition-normal);
}

/* Desktop - Middle Left */
@media (min-width: 769px) {
    .floating-apply-widget {
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: row;
    }
    
    .floating-apply-btn {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        transform: rotate(180deg);
        padding: 1.5rem 0.75rem;
        border-radius: 8px 0 0 8px;
    }
}

/* Mobile - Bottom Center */
@media (max-width: 768px) {
    .floating-apply-widget {
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
        width: 100%;
    }
    
    .floating-apply-btn {
        padding: 0.875rem 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
}

.floating-apply-btn {
    background: var(--nsb-accent);
    color: var(--nsb-white);
    border: 3px solid var(--nsb-primary);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semi-bold);
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    animation: pulse 2s infinite;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-apply-btn:hover {
    background: var(--nsb-primary);
    border-color: var(--nsb-accent);
    transform: scale(1.05);
    animation: none;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(252, 163, 17, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(252, 163, 17, 0); }
    100% { box-shadow: 0 0 0 0 rgba(252, 163, 17, 0); }
}
/* ===== PGDM PROGRAM PAGE CSS END ===== */