.bg-blur {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    overflow: hidden;
}

.bg-blur::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/agungwarehouse/desain_5.jpg") no-repeat center center fixed;
    background-size: cover;
    filter: blur(3px);
    transform: scale(1.1); /* biar ga ada garis tepi hitam saat blur */
    z-index: 0;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(9, 30, 62, 0.6); /* overlay biru #091E3E */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2; /* pastikan konten di atas blur */
}
