.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    text-transform: uppercase;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    height: 76px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.nav-link-header {
    color: #333 !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-header:hover {
    color: #FBB039 !important;
}

.yellow-border {
    position: relative;
}

.yellow-border::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: #FBB039;
    transition: all 0.3s ease;
}

.color-white, .color-black {
    color: #333 !important;
}

/* Language Dropdown Styling */
.language-dropdown {
    position: relative;
    margin-left: 1rem;
}

.dropdown-toggle {
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    background: none;
    border: none;
}

.dropdown-toggle:hover {
    background-color: rgba(251, 176, 57, 0.1);
}

.dropdown-toggle img {
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-menu {
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jqLanguageChange {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.jqLanguageChange:hover {
    background-color: rgba(251, 176, 57, 0.1);
}

.jqLanguageChange img {
    margin-right: 1rem;
    border-radius: 50%;
    object-fit: cover;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .navbar {
        height: 56px;
    }

    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin-top: 0.5rem;
    }

    .nav-link-header {
        padding: 0.75rem 1rem;
    }

    .yellow-border::after {
        left: 1rem;
        right: 1rem;
    }

    .language-dropdown {
        margin: 0.5rem 0;
        position: static;
    }

    .dropdown-menu {
        position: fixed;
        left: 1rem;
        right: 1rem;
        width: auto;
        min-width: auto;
        max-width: calc(100% - 2rem);
        margin: 0.5rem auto;
        transform-origin: top center;
    }

    .dropdown-menu.show {
        display: block;
        position: absolute;
        top: auto;
        left: 1rem;
        right: 1rem;
        transform: none;
        max-height: calc(100vh - 200px);
        overflow-y: auto;
    }
}

/* Search Form Styling */
.form-inline {
    margin-right: 1rem;
}

.input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: none;
    padding: 0.5rem 1rem;
    font-size: 14px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #FBB039;
}

.custom-btn.btn-yellow {
    background-color: #FBB039;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.custom-btn.btn-yellow:hover {
    background-color: #fcc167;
}

.site-header {
    position: fixed;
    width: 100%;
    height:100%;
    top: 0;
    left: 0;
    z-index: 999;
    height: 65px;
    color: #FFF;
    box-shadow: none;
    transition: all .3s ease;
}

.navbar-fixed-top {
    background-color: #fff;
}

.navbar-fixed-top.scrolled {
    background-color: #fff;
    color: black !important;
}

.mt-big {
    margin-top: 10rem;
}