/* ===== BBA PROGRAM CSS START ===== */
/* File: /css/sections/programs/programs-bba.css */
/* Purpose: BBA program page specific styles */
/* Design: No icons, text-only, alternating backgrounds (white/grey), blue headers, yellow highlights */
/* Structure: Follows MBA-style layout with responsive design */
/* Dependencies: main.css for variables, programs-base.css for base styles */
/* Last Updated: 2024-01-15 */

/* ===== BASE STYLES START ===== */
.program-page-wrapper {
    width: 100%;
    overflow-x: hidden;
}

.program-container {
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    padding: 0 1rem;
}

.program-section {
    padding: var(--section-spacing-desktop, 80px) 0;
    width: 100%;
}

@media (max-width: 768px) {
    .program-section {
        padding: var(--section-spacing-mobile, 50px) 0;
    }
}
/* ===== BASE STYLES END ===== */

/* ===== BACKGROUND ALTERNATION START ===== */
.section-white {
    background-color: var(--nsb-white);
}

.section-light {
    background-color: var(--nsb-light);
}

.section-primary {
    background-color: var(--nsb-primary);
    color: var(--nsb-white);
}

.section-accent {
    background-color: var(--nsb-accent);
    color: var(--nsb-dark);
}
/* ===== BACKGROUND ALTERNATION END ===== */

/* ===== TYPOGRAPHY START ===== */
.program-title {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    color: var(--nsb-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.program-title-large {
    font-size: 2.5rem;
}

.program-title-medium {
    font-size: 2rem;
}

.program-title-small {
    font-size: 1.5rem;
}

.program-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--nsb-text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
}

.program-text {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--nsb-text-primary);
    margin-bottom: 1.5rem;
}

.program-note {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--nsb-text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .program-title {
    margin-bottom: 0.5rem;
}

.section-header .program-subtitle {
    margin-bottom: 0;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--nsb-primary);
    margin-bottom: 1.5rem;
    font-weight: var(--font-weight-semi-bold);
}

.component-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--nsb-primary);
    margin-bottom: 1rem;
    font-weight: var(--font-weight-semi-bold);
}

/* Text colors for primary sections */
.section-primary .program-title,
.section-primary .program-subtitle,
.section-primary .program-text {
    color: var(--nsb-white);
}

.section-primary .program-subtitle {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .program-title-large {
        font-size: 2rem;
    }
    
    .program-title-medium {
        font-size: 1.75rem;
    }
    
    .program-title-small {
        font-size: 1.25rem;
    }
    
    .program-subtitle {
        font-size: 1.1rem;
    }
    
    .program-text {
        font-size: 1rem;
    }
}
/* ===== TYPOGRAPHY END ===== */

/* ===== BREADCRUMB NAVIGATION START ===== */
.program-breadcrumbs {
    padding: 1.5rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--nsb-light);
    background-color: var(--nsb-white);
}

.program-breadcrumbs a {
    color: var(--nsb-primary);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.program-breadcrumbs a:hover {
    color: var(--nsb-accent);
    text-decoration: underline;
}

.program-breadcrumbs span {
    color: var(--nsb-text-secondary);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
}

.program-breadcrumbs .program-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .program-breadcrumbs {
        padding: 1rem 0;
    }
    
    .program-breadcrumbs a,
    .program-breadcrumbs span {
        font-size: 0.85rem;
    }
}
/* ===== BREADCRUMB NAVIGATION END ===== */

/* ===== HERO SECTION START ===== */
.program-hero-section {
    text-align: center;
    background: linear-gradient(135deg, var(--nsb-primary) 0%, #1a2b4d 100%);
    color: var(--nsb-white);
    padding: 100px 0;
}

.program-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.program-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semi-bold);
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-accent {
    background: var(--nsb-accent);
    color: var(--nsb-dark);
    border: 2px solid var(--nsb-accent);
}

.btn-accent:hover {
    background: #e59400;
    border-color: #e59400;
    color: var(--nsb-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 163, 17, 0.3);
}

.btn-white {
    background: var(--nsb-white);
    color: var(--nsb-primary);
    border: 2px solid var(--nsb-white);
}

.btn-white:hover {
    background: #f8f9fa;
    border-color: #f8f9fa;
    color: var(--nsb-primary);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--nsb-white);
    border: 2px solid var(--nsb-white);
}

.btn-outline-white:hover {
    background: var(--nsb-white);
    color: var(--nsb-primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    min-width: 160px;
}

@media (max-width: 768px) {
    .program-hero-section {
        padding: 60px 0;
    }
    
    .program-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}
/* ===== HERO SECTION END ===== */

/* ===== KEY POINTS GRID START ===== */
.key-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.key-point-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--nsb-light);
    border-radius: 6px;
    border-left: 4px solid var(--nsb-accent);
}

.key-point-bullet {
    width: 8px;
    height: 8px;
    background: var(--nsb-accent);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.key-point-text {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--nsb-text-primary);
}

@media (max-width: 768px) {
    .key-points-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
/* ===== KEY POINTS GRID END ===== */

/* ===== HIGHLIGHTS GRID START ===== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    background: var(--nsb-white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.highlight-number {
    background: var(--nsb-primary);
    color: var(--nsb-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.highlight-text {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--nsb-text-primary);
    margin: 0;
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-card {
        padding: 1.25rem;
    }
}
/* ===== HIGHLIGHTS GRID END ===== */

/* ===== CURRICULUM SECTION START ===== */
.curriculum-year {
    margin-bottom: 2.5rem;
}

.curriculum-year:last-child {
    margin-bottom: 0;
}

.courses-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.course-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--nsb-white);
    border-radius: 4px;
    border: 1px solid var(--nsb-light);
}

.course-bullet {
    width: 6px;
    height: 6px;
    background: var(--nsb-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.course-name {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--nsb-text-primary);
}

@media (max-width: 768px) {
    .courses-list {
        grid-template-columns: 1fr;
    }
}
/* ===== CURRICULUM SECTION END ===== */

/* ===== SPECIALIZATIONS GRID START ===== */
.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.specialization-card {
    background: var(--nsb-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.specialization-header {
    background: var(--nsb-primary);
    color: var(--nsb-white);
    padding: 1.5rem;
    text-align: center;
}

.specialization-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semi-bold);
    margin: 0;
    color: var(--nsb-white);
}

.specialization-content {
    padding: 1.5rem;
}

.specialization-description {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--nsb-text-primary);
    margin-bottom: 1.5rem;
}

.career-paths h4,
.key-courses h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--nsb-primary);
    margin-bottom: 0.75rem;
    font-weight: var(--font-weight-semi-bold);
}

.career-list,
.courses-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.career-list li,
.courses-list li {
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--nsb-text-primary);
}

.career-list li::before,
.courses-list li::before {
    content: "•";
    color: var(--nsb-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .specializations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* ===== SPECIALIZATIONS GRID END ===== */

/* ===== INTERNATIONAL SECTION START ===== */
.international-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.international-card {
    background: var(--nsb-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--nsb-primary);
}

.highlights-list {
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--nsb-light);
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-check {
    width: 20px;
    height: 20px;
    background: var(--nsb-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.highlight-check::after {
    content: "✓";
    color: var(--nsb-dark);
    font-size: 0.8rem;
    font-weight: bold;
}

.highlight-item span {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--nsb-text-primary);
}

@media (max-width: 768px) {
    .international-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .international-card {
        padding: 1.5rem;
    }
}
/* ===== INTERNATIONAL SECTION END ===== */

/* ===== INDUSTRY COMPONENTS GRID START ===== */
.industry-components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.industry-component {
    background: var(--nsb-white);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--nsb-light);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.industry-component:hover {
    transform: translateY(-5px);
    border-color: var(--nsb-accent);
}

.industry-component .component-title {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.component-description {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--nsb-text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .industry-components-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .industry-components-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== INDUSTRY COMPONENTS GRID END ===== */

/* ===== ELIGIBILITY SECTIONS START ===== */
.eligibility-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.eligibility-section {
    background: var(--nsb-white);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--nsb-light);
}

.eligibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eligibility-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--nsb-text-primary);
    border-bottom: 1px solid var(--nsb-light);
}

.eligibility-list li:last-child {
    border-bottom: none;
}

.eligibility-list li::before {
    content: "✓";
    color: var(--nsb-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .eligibility-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* ===== ELIGIBILITY SECTIONS END ===== */

/* ===== FEE COMPONENTS START ===== */
.fee-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fee-component {
    background: var(--nsb-white);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--nsb-light);
}

.fee-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fee-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--nsb-light);
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--nsb-text-primary);
}

.fee-list li:last-child {
    border-bottom: none;
}

.fee-list li.highlight-fee {
    background-color: var(--table-highlight-bg);
    color: var(--table-highlight-color);
    font-weight: var(--font-weight-semi-bold);
    padding: 0.75rem;
    border-radius: 4px;
    margin: 0.5rem 0;
    border: none;
}

@media (max-width: 768px) {
    .fee-components {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* ===== FEE COMPONENTS END ===== */

/* ===== SCHOLARSHIP CATEGORIES START ===== */
.scholarship-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.scholarship-category {
    background: var(--nsb-white);
    border-radius: 8px;
    padding: 1.5rem;
    border: 2px solid var(--nsb-primary);
}

.scholarship-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scholarship-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--nsb-light);
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--nsb-text-primary);
}

.scholarship-list li:last-child {
    border-bottom: none;
}

.scholarship-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 2rem;
}

.scholarship-note .program-text {
    color: #856404;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .scholarship-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* ===== SCHOLARSHIP CATEGORIES END ===== */

/* ===== PLACEMENT STATISTICS START ===== */
.placement-statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--nsb-white);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--nsb-primary);
}

.stat-value {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--nsb-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--font-weight-semi-bold);
    color: var(--nsb-text-primary);
    margin-bottom: 0.25rem;
}

.stat-description {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--nsb-text-secondary);
}

/* Recruitment Process */
.recruitment-process {
    margin-bottom: 3rem;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.process-list li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--nsb-text-primary);
    border-bottom: 1px solid var(--nsb-light);
}

.process-list li:last-child {
    border-bottom: none;
}

.process-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--nsb-primary);
    color: var(--nsb-white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.9rem;
}

/* Top Recruiters */
.top-recruiters {
    margin-top: 3rem;
}

.recruiter-category {
    margin-bottom: 1.5rem;
}

.recruiter-category h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--nsb-primary);
    margin-bottom: 0.75rem;
    font-weight: var(--font-weight-semi-bold);
}

.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.company-tag {
    background: var(--nsb-white);
    border: 1px solid var(--nsb-light);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--nsb-text-primary);
    transition: all 0.3s ease;
}

.company-tag:hover {
    background: var(--nsb-primary);
    color: var(--nsb-white);
    border-color: var(--nsb-primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .placement-statistics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .company-tags {
        gap: 0.375rem;
    }
    
    .company-tag {
        padding: 0.375rem 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .placement-statistics {
        grid-template-columns: 1fr;
    }
}
/* ===== PLACEMENT STATISTICS END ===== */

/* ===== ACCREDITATIONS GRID START ===== */
.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.accreditation-card {
    background: var(--nsb-white);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--nsb-light);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.accreditation-card:hover {
    transform: translateY(-3px);
    border-color: var(--nsb-primary);
}

.accreditation-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--nsb-primary);
    margin-bottom: 0.75rem;
    font-weight: var(--font-weight-semi-bold);
}

.accreditation-description {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--nsb-text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .accreditations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .accreditations-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== ACCREDITATIONS GRID END ===== */

/* ===== CTA SECTION START ===== */
.program-cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--nsb-primary) 0%, #1a2b4d 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .program-cta-section {
        padding: 60px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cta-buttons .btn-large {
        width: 100%;
        max-width: 300px;
    }
}
/* ===== CTA SECTION END ===== */

/* ===== RESPONSIVE UTILITIES START ===== */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
    
    .show-on-mobile {
        display: block !important;
    }
    
    .mobile-text-center {
        text-align: center;
    }
    
    .mobile-full-width {
        width: 100% !important;
    }
}

@media (min-width: 769px) {
    .hide-on-desktop {
        display: none !important;
    }
    
    .show-on-desktop {
        display: block !important;
    }
}
/* ===== RESPONSIVE UTILITIES END ===== */

/* ===== PRINT STYLES START ===== */
@media print {
    .program-breadcrumbs,
    .program-hero-actions,
    .btn,
    .company-tags,
    .highlight-card:hover,
    .specialization-card:hover {
        display: none !important;
    }
    
    .program-section {
        padding: 40px 0 !important;
        page-break-inside: avoid;
    }
    
    .program-title {
        color: #000 !important;
    }
    
    .section-primary {
        background: #fff !important;
        color: #000 !important;
    }
    
    .highlight-card,
    .specialization-card,
    .international-card,
    .industry-component,
    .eligibility-section,
    .fee-component,
    .scholarship-category,
    .stat-card,
    .accreditation-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}
/* ===== PRINT STYLES END ===== */

/* ===== BBA PROGRAM CSS END ===== */