.page-hero {
    background: linear-gradient(135deg, var(--primary-color), #1a2530);
    padding: 150px 0 80px;
    color: white;
    text-align: center;
}

.programs-hero {
    background-image: url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.programs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.programs-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* Program Filter */
.program-filter .nav-pills {
    gap: 10px;
}

.program-filter .nav-link {
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
    color: var(--primary-color);
    background: white;
    transition: all 0.3s ease;
}

.program-filter .nav-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.program-filter .nav-link.active {
    background: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(29, 117, 25, 0.3);
}

/* Stats Section */
.stat-card {
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons .btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
}

.cta-buttons .btn-outline-primary {
    color: white;
    border-color: white;
}

.cta-buttons .btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
}

/* Program View Specific Styles */

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--light-color);
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #666;
}

/* Program Header */
.program-header {
    padding: 60px 0;
    background: white;
}

.program-badge .badge {
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 20px;
}

.program-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0 15px;
}

.program-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
}

.program-meta {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.meta-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.program-image img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.program-image img:hover {
    transform: scale(1.02);
}

/* Program Content */
.content-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.content-section h2 i {
    color: var(--secondary-color);
}

.content-section p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Skill tags on programs*/
.skills-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.5rem;
}
.skill-tag {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.career-path {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.career-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}
.career-icon {
    width: 40px;
    height: 40px;
    background: #d1fae5;
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Subject Cards */
.subject-card {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}
.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.subject-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary-color);
}
.subject-card h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}
.subject-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.subject-card li {
    padding: 5px 0;
    color: #666;
    border-bottom: 1px dashed #ddd;
}
.subject-card li:last-child {
    border-bottom: none;
}

/* Outcomes List */
.outcomes-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.outcome-item i {
    font-size: 1.2rem;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.facility-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 40px;
}

.facility-item span {
    font-weight: 500;
    color: #333;
}

/* Sidebar Widgets */
.sidebar-widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

/* Quick Info */
.quick-info {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: var(--primary-color);
}

.info-item span {
    color: #666;
    text-align: right;
}

/* Apply Card */
.apply-card {
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    color: white;
}

.apply-card h5 {
    color: white;
    margin-bottom: 10px;
}

.apply-card p {
    opacity: 0.9;
}

.apply-card .btn {
    border-radius: 25px;
    padding: 10px;
    font-weight: 500;
}

/* Related Programs */
.related-programs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-program {
    display: block;
    padding: 15px;
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-program:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.related-program i {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.related-program h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.related-program small {
    font-size: 0.85rem;
}

/* Alumni Section */
.alumni-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.alumni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.alumni-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.alumni-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.alumni-content h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.alumni-quote {
    font-style: italic;
    color: #666;
    margin-top: 15px;
    border-left: 3px solid var(--secondary-color);
    padding-left: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .program-title {
        font-size: 2.5rem;
    }
    
    .program-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .program-filter .nav-pills {
        flex-direction: column;
        align-items: center;
    }
    
    .program-filter .nav-link {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .program-title {
        font-size: 2rem;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .alumni-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .program-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-card {
        margin-bottom: 20px;
    }
}