body {
    font-family: Arial, sans-serif;
}

.search-section {
    background-color: #ffffff;
    padding: 65px;
}

.inner-search {
    position: relative;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-top: -50px; /* Adjust this value to control the amount of overlap */
    z-index: 3; /* Ensure the search section appears above the previous section */
}

.search-section h5 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.search-section hr {
    margin-top: 10px;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.form-control {
    border-radius: 20px;
}

.search-submit-btn {
    text-align: center;
}

.btn-round {
    background-color: black;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-round:hover {
    background-color: #0056b3;
}

@media (min-width: 992px) {
    
    .mobile-search {
        display: none;
    }
}


@media (max-width: 992px) {
    
    .search-section {
        display: none;
    }
    
}
