      /* Header Container */
      .header-wrapper {
          position: relative;
          height: auto;
      }

      .header {
          background-color: #ffffff;
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
          padding: 12px 5%;
          display: flex;
          justify-content: space-between;
          align-items: center;
          flex-wrap: wrap;
          position: relative;
          transition: all 0.3s ease;
      }

      /* Sticky Header Styles */
      .header.sticky {
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          z-index: 1000;
          animation: slideDown 0.3s ease-out;
          padding: 8px 5%;
      }

      @keyframes slideDown {
          from {
              transform: translateY(-100%);
          }

          to {
              transform: translateY(0);
          }
      }

      /* Logo Styles */
      .logo {
          display: flex;
          align-items: center;
          z-index: 100;
          opacity: 0;
          transition: opacity 0.3s ease;
          width: 0;
          overflow: hidden;
      }

      .sticky .logo {
          opacity: 1;
          width: auto;
      }

      .logo-text {
          font-size: 24px;
          font-weight: 700;
          background: linear-gradient(90deg, #FF0000, #0000FF, #FFFF00);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          text-fill-color: transparent;
          white-space: nowrap;
      }

      /* Navigation Styles */
      .nav-links {
          display: flex;
          gap: 22px;
          align-items: center;
          transition: all 0.4s ease;
          margin-left: auto;
      }

      .nav-links a {
          text-decoration: none;
          color: #333333;
          font-weight: 500;
          font-size: 15px;
          position: relative;
          transition: all 0.3s ease;
          white-space: nowrap;
      }

      .nav-links a:hover {
          color: #FF0000;
      }

      .nav-links a:after {
          content: '';
          position: absolute;
          width: 0;
          height: 2px;
          bottom: -5px;
          left: 0;
          background-color: #0000FF;
          transition: width 0.3s ease;
      }

      .nav-links a:hover:after {
          width: 100%;
      }

      /* Dropdown Styles */
      .dropdown {
          position: relative;
          display: inline-block;
      }

      .dropdown-content {
          display: none;
          position: absolute;
          background-color: #fff;
          min-width: 200px;
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
          z-index: 1;
          border-radius: 5px;
          top: 100%;
          left: 0;
          opacity: 0;
          transition: opacity 0.3s ease;
      }

      .dropdown:hover .dropdown-content {
          display: block;
          opacity: 1;
      }

      .dropdown-content a {
          color: #333;
          padding: 12px 16px;
          text-decoration: none;
          display: block;
          transition: background-color 0.3s;
      }

      .dropdown-content a:hover {
          background-color: #f5f5f5;
          color: #FF0000;
      }

      /* Mobile Menu Button */
      .mobile-menu-btn {
          display: none;
          background: none;
          border: none;
          font-size: 24px;
          cursor: pointer;
          color: #333;
          z-index: 100;
      }

      /* Responsive Styles */
      @media (max-width: 1024px) {
          .nav-links {
              gap: 15px;
          }

          .nav-links a {
              font-size: 14px;
          }
      }

      @media (max-width: 768px) {
          .header {
              padding: 12px 20px;
          }

          .sticky .header {
              padding: 8px 20px;
          }

          .nav-links {
              position: fixed;
              top: 0;
              right: -100%;
              width: 70%;
              max-width: 300px;
              height: 100vh;
              background: white;
              flex-direction: column;
              align-items: flex-start;
              padding: 80px 30px 30px;
              box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
              gap: 25px;
              margin-left: 0;
          }

          .nav-links.active {
              right: 0;
          }

          .dropdown {
              width: 100%;
          }

          .dropdown-content {
              position: static;
              display: none;
              box-shadow: none;
              width: 100%;
              padding-left: 15px;
              opacity: 1;
          }

          .dropdown.active .dropdown-content {
              display: block;
          }

          .mobile-menu-btn {
              display: block;
          }

          .logo-text {
              font-size: 20px;
          }
      }

      @media (max-width: 480px) {
          .logo-text {
              font-size: 18px;
          }

          .mobile-menu-btn {
              font-size: 20px;
          }
      }