.navbar-custom{
    background: white;
}

.navbar-custom .nav-link{
    color: black !important;
}

.navbar-custom.scrolled .nav-link{
    color: white !important;
}

.btn-about{
    border: 1px solid black;
    color: black;
}

.scrolled .btn-about{
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-login{
    background-color: black;
    color: white;
}

.scrolled .btn-login{
    background-color: white;
    color: black;
}

.navbar-toggler-icon_{
    color: black;
}

.scrolled .navbar-toggler-icon_{
    color: white;
}

.main-section .container-fluid{
    padding-top: 30px ;
    padding-inline:65px
}

.lang-switch{
    color: black !important;
}
.scrolled .lang-switch{
    color: white !important;
}

@media (max-width: 768px) {
    .main-section .container-fluid{
        padding-top: 30px ;
        padding-inline:30px
    }

}


/* Breadcrumb Searchbar */

.sprt-search-wrapper {
    background: white;
    border-radius: 15px;
    padding: 8px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.sprt-search-form {
    display: flex;
    align-items: center;
    gap: 0;
}

.sprt-search-btn {
    background-color: #000;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 40px;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    min-width: 100px;
    justify-content: center;
}

.sprt-search-btn:hover {
    background-color: #333;
    color: white;
}

.sprt-search-input {
    border: none;
    outline: none;
    font-size: 16px;
    padding: 12px 20px;
    flex: 1;
    background: transparent;
}

.sprt-search-input::placeholder {
    color: #999;
    font-size: 16px;
}

.sprt-search-icon {
    color: #666;
    font-size: 20px;
    padding: 0 15px;
    cursor: pointer;
}

.sprt-star-icon {
    font-size: 12px;
}

@media (max-width: 768px) {
    .sprt-search-wrapper {
        margin: 0 15px;
    }
    
    .sprt-search-btn {
        padding: 10px 30px;
        font-size: 14px;
        min-width: 80px;
    }
    
    .sprt-search-input {
        font-size: 14px;
        padding: 10px 15px;
    }
}