   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        /* Header */
/*
        header {
            background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            height:200px;
        }
*/
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }
/* Add this to the top of your CSS */
.header-nav-bar {
/*    position: absolute;*/
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgb(70 119 41);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    z-index: 9;
}

.header-nav-bar .nav-menu {
    display: flex;
    justify-content: center;
    gap: 18px;
    list-style: none;
}
.orSymbol{
    color: white;
    display:block;
}
.

.header-nav-bar .nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s;
}

.header-nav-bar .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #ff8c42;
    transition: all 0.3s;
    transform: translateX(-50%);
}

.header-nav-bar .nav-menu a:hover::after {
    width: 100%;
}

.header-nav-bar .nav-menu a:hover {
    color: #ff8c42;
}
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: opacity 0.3s;
}

.nav-menu li a:hover {
    opacity: 0.8;
}

/* Hero stack on smaller screens */
@media (max-width: 968px) {
   
    .nav-container {
        margin-left: 0;
        margin-top: 20px;
        flex-direction: column;
        width: 100%;
        position: absolute;
    }

    .mobile-menu-toggle {
        display: block;
        align-self: flex-end;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 15px;
        background: rgba(0, 0, 0, 0.8);
        padding: 20px;
        border-radius: 10px;
        width: 63%;
        margin-top: 15px;
        text-align: center;
            margin: 0 auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        font-size: 16px;
    }

    .header-right {
        margin-top: 20px;
        align-items: center;
    }

    .address {
        font-size: 15px;
        text-align: center;
    }
    .orSymbol{
        display:none;
    }
}
