.navBar {
    display: flex;
    align-items: center;
    background-image: url("/Shahidali/New folder/Frame 1.png");
    height: 21vh;
    background-position: center;
    background-repeat: repeat-x;
}

.list-box {
    margin-bottom: 100px;
    display: flex;
  
}

.list {

    width: 3000px;

}

.list-box .list ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    gap: 30px;
    padding: 10px;
    margin: 10px;
    /* flex-direction: row; */
    /* line-height: 2; */
    color: black;
    transform: ;

}

.list ul li a {
    text-decoration: none;
    background-color: rgb(59, 57, 57);
    color: white;
    padding: 3px 10px;
    border-radius: 5px;
    width: 700px;
    /* margin: 10px 10px; */


}

.list ul li {
    /* text-decoration: none; */
    list-style: none;
    /* margin: 10; */

}

.search {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #7a3b08be;
    /* elegant dark tone */
    height: 12vh;
    margin: 15px auto;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

/* inner container */
.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 80%;
}

/* input box */
.search-bar input {
    width: 70%;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    border-color: #3498db;
    box-shadow: 0 0 8px #3498db;
}

/* filter button */
.search-bar button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.search-bar button:hover {
    background-color: #217dbb;
    transform: scale(1.05);
}