   
        .navbar {
          background-color: #000000;
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: space-between;
          height: 85px;
        }

        .nav-container {
          max-width: 100%;
          margin-left: 0px;
          margin-right: 50px;
          display: flex;
          align-items: center;
          justify-content: flex-end;
        }

        .logo img {
          max-width: 5.5rem;
          max-height: 5.5rem;
        }

        .nav-menu li a,
        .main_menu li a {
          color: white;
          text-decoration: none;
          font-size: 18px;
          font-family: var(--font-heading);
          font-weight: bold;
          text-transform: uppercase;
        }

        .nav-menu {
          display: flex;
          list-style: none;
          gap: 2.5rem;
          align-items: center;
          margin-right: 50px;
        }

        .nav-link {
          color: #ffffff;
          text-decoration: none;
          font-weight: 500;
          font-size: 0.95rem;
          transition: color 0.2s ease;
          position: relative;
        }

        .nav-link:hover {
          color: #22c55e;
        }

        .nav-link::after {
          content: '';
          position: absolute;
          bottom: -8px;
          left: 0;
          width: 0;
          height: 2px;
          background-color: #22c55e;
          transition: width 0.3s ease;
        }

        .nav-link:hover::after {
          width: 100%;
        }


        .burger {
          display: none;
          flex-direction: column;
          cursor: pointer;
          padding: 4px;
          background: none;
          border: none;
          z-index: 1000;
        }

        .burger span {
          width: 24px;
          height: 2px;
          background-color: #ffffff;
          margin: 3px 0;
          transition: 0.3s;
          border-radius: 2px;
        }

        .burger.active span:nth-child(1) {
          transform: rotate(-45deg) translate(-5px, 6px);
          z-index: 1000;
        }

        .burger.active span:nth-child(2) {
          opacity: 0;
        }

        .burger.active span:nth-child(3) {
          transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile Menu */
        .mobile-menu {
          position: fixed;
          left: 0;
          right: 0;
          background-color: #000000;
          border-bottom: 1px solid #333333;
          padding: 2rem;
          transform: translateY(-100%);
          transition: transform 0.3s ease;
          opacity: 0;
          visibility: hidden;
          z-index: 99;
        }


        .mobile-menu li a {
          color: white;
          text-decoration: none;
          font-family: var(--font-heading);
          font-weight: bold;
          text-transform: uppercase;
        }



        .mobile-menu.active {
          transform: translateY(0);
          opacity: 1;
          visibility: visible;
        }

        .mobile-nav-menu {
          list-style: none;
          display: flex;
          flex-direction: column;
          gap: 1.5rem;
          align-items: center;
        }

        .mobile-nav-link {
          color: #ffffff;
          text-decoration: none;
          font-weight: 500;
          font-size: 1.1rem;
          padding: 0.5rem;
          transition: color 0.2s ease;
        }

        .mobile-nav-link:hover {
          color: #22c55e;
        }

        .mobile-primary-btn {
          margin-top: 1rem;
        }




        .contact-us-button-mobile {
          display: none;
          color: var(--secondary) !important;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
          .navbar {
            padding: 0 1rem;
          }

          .nav-menu {
            display: none;
          }

          .burger {
            display: flex;
          }

          .content h1 {
            font-size: 2rem;
          }

          .content p {
            font-size: 1rem;
          }

          .contact-us-button {
            display: none;
          }

        }

        @media (max-width: 480px) {
          .nav-container {
            height: 60px;
          }

          .content {
            margin-top: 60px;
            padding: 2rem 1rem;
          }

          .logo img {
            max-width: 3rem;
            max-height: 3rem;
          }
        }