body {
    margin: 0;
    font-family: sans-serif;
    color: #111;

/* Parallax Hero Section */
.parallax-hero {
    background-image: url("../images/IMG_7605.jpeg"); /* Replace with your image URL */
    min-height: 100vh; /* Full viewport height */
    background-attachment: fixed; /* This is key for the parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* Ensures the image covers the entire area */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative; /* Needed for z-index with content */
}

}
