 /* Navbar */
    .navbar {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      background: transparent;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 92px;
      z-index: 777;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }

    .logo img{
        width: 350px;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
    }

    .nav-links a {
      text-decoration: none;
      color: white;
    font-size: 28px;
    }

    .nav-links a:hover {
      color: #007BFF;
    }

    /* Hamburger Button */
    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
    }

    .hamburger svg {
      width: 24px;
      height: 24px;
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100%;
      background: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
      z-index: 999;
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    .mobile-menu a {
      margin: 1rem 0;
      font-size: 1.5rem;
      color: #333;
      text-decoration: none;
    }

    .mobile-menu a:hover {
      color: #007BFF;
    }

    .close-btn {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: none;
      border: none;
      cursor: pointer;
    }

    .close-btn svg {
      width: 24px;
      height: 24px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: block;
      }
    }