.navbar-wrapper-7f010a83 {
    width: 100%;
    z-index: 999;
}
.navbar-placeholder-7f010a83 {
    display: none;
}
.navbar-wrapper-7f010a83.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.3s ease-in-out;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.navbar-container-7f010a83 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    border-radius: 10px;
    background-color: #e8e8eb;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    /* Ensure it doesn't span full width when sticky if you want it pill shaped */
    max-width: 1140px; /* Adjust to container width */
    margin: 0 auto;
}
.navbar-wrapper-7f010a83.is-sticky .navbar-container-7f010a83 {
    border-radius: 10px; /* Keep pill shape */
    margin-top: 20px; /* Add some spacing from top when sticky */
}
.nav-left-7f010a83,
.nav-right-7f010a83 {
    flex: 1;
    display: flex;
    align-items: center;
}
.nav-right-7f010a83 {
    justify-content: flex-end;
}
.nav-center-7f010a83 {
    display: flex;
    justify-content: center;
}
.nav-menu-7f010a83 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}
.nav-menu-7f010a83 a {
    text-decoration: none;
    font-weight: 500;
    color: #1a2b4c;
    transition: color 0.3s ease;
}
.nav-menu-7f010a83 a:hover {
    color: #c28822;
}
.nav-logo-7f010a83 {
    max-height: 50px;
    object-fit: contain;
}
.nav-btn-7f010a83 {
    background-color: #c28822;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.nav-btn-7f010a83:hover {
    background-color: #a6731b;
}

/* Mobile Burger Menu */
.nav-burger-7f010a83 {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}
.nav-burger-7f010a83 span {
    width: 30px;
    height: 3px;
    background: #1a2b4c;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

@media (max-width: 768px) {
    .nav-burger-7f010a83 {
        display: flex;
    }
    .nav-menu-7f010a83 {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #e8e8eb;
        flex-direction: column;
        padding: 20px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        z-index: 99;
    }
    .nav-menu-7f010a83.active {
        display: flex;
    }
    .navbar-container-7f010a83 {
        border-radius: 10px 10px 0 0;
    }
    .navbar-wrapper-7f010a83.is-sticky .navbar-container-7f010a83 {
        border-radius: 10px 10px 0 0;
        margin-top: 0;
    }
    .nav-burger-7f010a83.open span:nth-child(1) {
        transform: rotate(45deg);
    }
    .nav-burger-7f010a83.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-burger-7f010a83.open span:nth-child(3) {
        transform: rotate(-45deg);
    }
}
