         /* Academic Flowchart Specific Styles */
 .academic-flowchart-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.flowchart-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.flowchart-header {
    background: var(--dark-red);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.flowchart-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.flowchart-content {
    padding: 50px 40px;
}

.phases-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
}

.phases-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary-red), transparent);
    transform: translateX(-50%);
}

.phase {
    position: relative;
}

.phase-header {
    background: var(--primary-red);
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.3);
}

.phase-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    font-family: 'Playfair Display', serif;
}

.phase-subtitle {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    margin: 0;
}

.phase-activities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-activity {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 15px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.phase-activity::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--primary-red);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-red);
}

.phase-activity:hover {
    border-color: var(--primary-red);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.15);
}

.activity-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    padding-left: 20px;
}
        
        
        /* Responsive Design */
        @media (max-width: 991px) {
            .main-nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .flowchart-title {
                font-size: 2rem;
            }

            .phases-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .phases-container::before {
                display: none;
            }

            .flowchart-content {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            .academic-flowchart-section {
                padding: 100px 0 60px;
            }

            .flowchart-header {
                padding: 25px 20px;
            }

            .flowchart-title {
                font-size: 1.8rem;
            }

            .flowchart-content {
                padding: 30px 20px;
            }

            .phase-header {
                padding: 15px 20px;
            }

            .phase-title {
                font-size: 1.3rem;
            }

            .phase-activity {
                padding: 15px 20px;
            }

            .activity-text {
                font-size: 0.95rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .flowchart-title {
                font-size: 1.5rem;
            }

            .phase-title {
                font-size: 1.2rem;
            }

            .phase-subtitle {
                font-size: 0.9rem;
            }

            .activity-text {
                font-size: 0.9rem;
                padding-left: 15px;
            }
        }

        /* Banner Section Styles */
        .banner-section {
            position: relative;
            height: 400px;
            overflow: hidden;
            margin-top: 84px; /* Account for fixed header */
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #8B1538 0%, #6B1028 100%);
        }

        .banner-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
            z-index: 1;
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139, 21, 56, 0.8) 0%, rgba(107, 16, 40, 0.9) 100%);
            z-index: 2;
        }

        .banner-content {
            position: relative;
            z-index: 4;
            color: white;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .breadcrumb-nav {
            margin-bottom: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .breadcrumb-nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-nav a:hover {
            color: white;
        }

        .breadcrumb-nav .separator {
            margin: 0 10px;
            color: rgba(255, 255, 255, 0.6);
        }

        .breadcrumb-nav .current-page {
            color: white;
            font-weight: 600;
        }

        .banner-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            letter-spacing: -0.02em;
        }

        .banner-subtitle {
            font-size: 1.2rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        /* Banner Responsive Styles */
        @media (max-width: 768px) {
            .banner-section {
                height: 350px;
                margin-top: 76px;
            }
            
            .banner-title {
                font-size: 2.5rem;
            }
            
            .banner-subtitle {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .banner-section {
                height: 300px;
                margin-top: 68px;
            }
            
            .banner-title {
                font-size: 2rem;
            }
            
            .banner-subtitle {
                font-size: 0.9rem;
            }
        }