.banner {
    position: relative;
    background-size: cover;
    height: 400px;
    color: white;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay */
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.search-form-container {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1100px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.box-body.container.mx-5 {
    padding-top: 50px;
}

.navbar {
    position: relative;
    min-height: 100px !important;
    margin-bottom: 0px !important;
    border: 1px solid transparent;
    text-align: center !important;
    display: flex !important;
;
}

@media (max-width: 768px) {
    .form-inline {
        flex-direction: column;
        align-items: stretch;
    }

    .form-inline .form-control {
        margin-bottom: 10px;
        width: 100%;
    }
}
