 @font-face {
            font-family: 'Aharoni';
            src: url('https://gns-corporation.com/gns/fonts/fonnts.com-Aharoni-Bold.ttf');
        }
    
        .header {
            display: flex;
            flex-direction: row;
            width: 100vw;
            padding: 7px;
            justify-content: space-between;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            align-items: center;
            position: relative;  
            min-width: 360px;
            z-index: 100;
          
        }
        .header-LF{
          position: relative;
           width: fit-content;
           justify-content: center;
           text-align: center;        
           gap: 0;
           padding-left: 50px;
           line-height: 10px; 
        }
        .header-LF h1 {
          width: fit-content;
          font-size: 1.2rem;
          min-width: max-content;
          color: #074D0F;
          font-family: Aharoni;
          cursor: pointer;
        }
        .header-LF p{
            font-size: .8rem;
            letter-spacing: .5rem;
            color: #074D0F;
            cursor: default;
        }
        .gns-logo {
            width: 80x;
            height: 40px;
            cursor: pointer;
        }

        .header-RI {
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        .nav-top {
            align-self: flex-end;
            font-family: segoe UI;
            display: flex;
        }
        .nav-top a {
            text-decoration: none;
            color: #074D0F;
            font-weight: bold;
            font-family: Aharoni;
            font-size: 1.15rem;
            text-transform: uppercase;
            position: relative;
            margin-right: 40px;
            padding-bottom: 5px;
        }
        .nav-top a:not(.no-underline)::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 2px;
            background-color: #DBA54F;
            transition: width 0.3s ease-in-out;
        }
        .nav-top a:not(.no-underline):hover::after {
            width: 100%;
        }

        .nav-top a.active {
            color: #000;
            position: relative;
            font-weight: bold;
        }

        .nav-top a.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 2px;
            width: 100%;
            background-color: #DBA54F;
        }
       
        nav {
            width: 100%;
            display: flex;
            margin-top: 20px;
            align-items: center;
            justify-content: center;
            flex-direction: row;
            gap: 35px;
            right: 0;
            position: relative;
            font-family: segoe UI;
          
        }

        nav a {
            text-decoration: none;
            color: #074D0F;
            font-weight: bold;
            font-family: Aharoni;
            font-size: 1rem;
            text-transform: uppercase;
            position: relative;
            
        }

        /* Hover underline for non-dropdown links */
        nav a:not(.no-underline)::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 2px;
            background-color: #021E06;
            transition: width 0.3s ease-in-out;
        }

        nav a:not(.no-underline):hover::after {
            width: 100%;
        }
        

        .dropdown {
            position: relative;
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }
        .dropdown-button a{
          bottom: 3px;   
        }
        
        .dropdown-icon{
            width: 13px;
            height: 20px;
            color: #021E06;
            fill: #021E06;
            transition: transform 0.3s ease-in-out;
        }

        .dropdown:hover .dropdown-icon {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: calc(100% + -17px);        
            left: 0;
            background-color: #DBA54F;
            list-style: none;
            padding: 5px 0;
            width: fit-content;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        /* Keep the dropdown visible on hover */
        .dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-menu li {
            padding: 10px 20px;
        }

        .dropdown-menu li a {
            color: #fff;
            text-decoration: none;
            display: block;
            -webkit-text-stroke: .1px #000;
        }
        
        /* Hamburger Menu Styles */
        .hamburger {
            display: none;
            padding: 15px;
            cursor: pointer;
            background: transparent;
            border: 0;
            margin-right: 20px;
            z-index: 1000;
        }
        
        .hamburger-box {
            width: 30px;
            height: 24px;
            display: inline-block;
            position: relative;
        }
        
        .hamburger-inner {
            width: 100%;
            height: 3px;
            background-color: #074D0F;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            transition: background-color 0.2s ease-in-out;
        }
        
        .hamburger-inner::before,
        .hamburger-inner::after {
            content: "";
            width: 100%;
            height: 3px;
            background-color: #074D0F;
            position: absolute;
            left: 0;
            transition: transform 0.2s ease-in-out;
        }
        
        .hamburger-inner::before {
            top: -10px;
        }
        
        .hamburger-inner::after {
            top: 10px;
        }
        
        /* Active state for hamburger */
        .hamburger.active .hamburger-inner {
            background-color: transparent;
        }
        
        .hamburger.active .hamburger-inner::before {
            transform: translateY(10px) rotate(45deg);
        }
        
        .hamburger.active .hamburger-inner::after {
            transform: translateY(-10px) rotate(-45deg);
        }

        @media (max-width: 1100px){
          nav {
            gap: 25px;
          }
        }
        
        /* Mobile Styles */
        @media (max-width: 768px) {
            .header {
                padding: 10px 0;
            }
            
            .header-LF {
                padding-left: 10px;
                order: 1;
                h1 {
                  font-size: .9rem;
                }
                p {
                  font-size: .6rem;
                }
                img {
                  width: 70px;
                  height: 25px;
                }
            }
            
            .hamburger {
                display: inline-block;
                order: 2;
            }
            
            .header-RI {
                order: 3;
                display: none;
                flex-direction: column;
                padding: 20px;
                background-color: #fff;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                position: fixed;
                /* top is set by JS to be below the header */
                left: 0;
                width: 100%;
                /* height is set by JS to fill the viewport */
                overflow-y: auto;
                z-index: 999;
            }
            
            .header-RI.active {
                display: flex;
            }
            
            .nav-top {
                align-self: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                width: 100%;
                margin-bottom: 20px;
            }
            
            .nav-top a {
                margin: 10px 0;
                margin-right: 0;
                width: fit-content;
                text-align: center;
                padding: 0px;
            }
            
            nav {
                flex-direction: column;
                gap: 2px;
                margin-right: 0;
                width: 100%;
                align-items: center;
                top: -30px;
                a {
                  padding: 5px;
                  font-size: 1.15rem;
                }
            }
            
            .dropdown {
                flex-direction: column;
                text-align: center;
                justify-content: space-between;
                width: 100%;
     
            }
            .dropdown-button {
              display: flex;
              flex-direction: row;
              justify-content: space-between;
              text-align: center;
              align-items: center;
              
            }
            .dropdown-button a{
                bottom: 0px;   
            }
        
            
            .dropdown > a {
                width: 100%;
                padding: 10px 0;
            }
            
            .dropdown-menu {
                z-index: 1000;
                position: relative;
                display: none;
                top: 0;
                width: fit-content;
                box-shadow: none;
                background-color: #DBA54F;
            }
            
            .dropdown:hover .dropdown-menu {
                display: none;
            }
            
            .dropdown.active .dropdown-menu {
                display: block;
                animation: fadeIn 0.3s ease-in-out;
            }
            
            .dropdown-menu li a {
                color: white;
                padding: 0px 0;
                font-size: .9rem;
                text-align: start;
            }
            
            .dropdown-icon {
                display: inline-block;
                margin-left: 8px;
                width: 10px; height: 15px;
              
            }
            .dropdown:hover .dropdown-icon {
                transform: none;
            }


            
            @keyframes fadeIn {
                from { opacity: 0; transform: translateY(-10px); }
                to { opacity: 1; transform: translateY(0); }
            }
        }

        /* When scroll is locked, disable page scrolling */
        .lock-scroll {
            overflow: hidden;
            height: 100vh; /* prevent mobile bounce */
        }