/* Global Background Styles */
body {
    background-image: url("../img/hero-bg.jpg") !important;
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    background-color: transparent !important;
}

/* Semi-transparent overlay to ensure content readability */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85); /* 85% white overlay */
    z-index: -1;
    pointer-events: none;
}
