/* Parallax Section */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specific Backgrounds for Each Parallax Section */
#hero {
    background-image: url('images/hero-background.jpg'); /* Replace with your hero image */
}

#parallax-project {
    background-image: url('images/project-background.jpg'); /* Replace with your project image */
}

.parallax .container {
    color: white;
}
