.second-hone-body-cointainer {
    height: 60vh;
    
    display: flex;
    align-items: center;
    /* width: 100%; */
    /* max-width: 1062px; */
    justify-content: center;
    margin: auto;
    /* padding: 0 117px; */
}

.Explore-content-serach {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 50% ;

}

.serach-area-sections {
    width: 100%;
}

.logo-area-sections {
    width: 100%;
    text-align: end;
}

.search-container {
    max-width: 500px;
    margin: 100px auto;
}

.input-search-border {
    border-radius: 9px 0 0 9px;
    border: 1px solid black;
    padding: 0 10px;
}

.input-search-border:focus-visible {
    border: 1px solid black;
    outline: none;

}

.arrow-icon-serach {
    border-radius: 0 9px 9px 0;
}

.form-control {
    /* border-radius: 50px; */
    padding-left: 10px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.btn-search {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-radius: 50px;
}

.custom-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-responsive-image {
    width: 100%;
    max-width: 400px;
    height: auto;
}

#search-results {
    background-color: #fff;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#search-results {
    display: none;
    position: absolute;
    z-index: 1000;
}

#search-results li {
    padding: 12px;
    cursor: pointer;
}

#search-results li:hover {
    background-color: #f1f1f1;
}

.homePageHeight {
    height: 50vh;
}

.home-page-navbar-brand {
    display: flex;
    align-items: center;
    justify-content: start;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.form-control:focus {
    box-shadow: none;
}


.serach-page-header-logo {
    width: 200px;
}

@media(max-width:768px) {
    .homePageHeight {
        height: 20vh;
    }


}

@media(max-width:767px) {
    .explore-height {
        height: 30vh;
    }

    .custom-responsive-image {
        max-width: 200px;
    }

    

    .serach-area-sections {
        order: 1;
    }

    .logo-area-sections {
        order: 0;
        text-align: center;
    }

    .second-hone-body-cointainer {
        height: 60vh;
        
    }

    .Explore-content-serach {
        gap: 70px;
        flex-direction: column;
        width: 100%;
    }

    .home-page-navbar-brand {
        justify-content: center;
    }

}