 /* Define the parallax container */
 .parallax-container {
    position: relative;
    height: 70vh; /* Adjust the height as needed */
    overflow: hidden;
}

/* Add a gradient overlay */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); /* Adjust the gradient colors and opacity */
    z-index: 1;
    opacity: 1; /* Initially hidden */
    transition: opacity 0.3s ease;
}

/* Add a background image */
.parallax-background {
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 100%;
    position: relative;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Create a content container inside the parallax container */
.content-container {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

/* Add some styling to the content */
.content-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Create more sections as needed */
.section {
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 70vh;
    text-align: center;
    color: #fff;
}
