.main-bg {
    background: url("{{ asset('public/site/main/images/background.png') }}") no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

/* طبقة شفافة فوق الخلفية */
.main-bg::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* شفافية */
    z-index: -1;
}
