/* Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #ccc;
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: #007bff;
    transition: width 0.2s ease;
}

/* Dynamic Header */
.dynamic-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    color: #fff;
    text-align: center;
    transition: background-color 0.5s ease;
    z-index: 999;
}

.header-content {
    max-width: 600px;
    padding: 20px;
}

.header-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

.header-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: slideIn 0.5s ease-in-out;
}

.header-description {
    font-size: 1.2rem;
    color: #ccc;
    animation: slideIn 0.5s ease-in-out;
}

/* Content Sections */
.content-section {
    padding: 100vh 20px 20px; /* Add padding-top to push content below the header */
    min-height: 100vh;
    background-color: #fff;
    color: #333;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Keyframes for animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}