  /* Menu toggle button */
  .menu-btn {
      top: 32px;
      right: 20px;
      background: #EEFF75;
      color: #000;
      border: none;
      padding: 15px 28px;
      cursor: pointer;
      font-weight: 500;
      z-index: 1100;
      margin-right: 43px !important;
      font-family: 'gt-america-regular';
      font-size: 14px;
      font-style: normal;
      line-height: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
  }

  /* Overlay container */
  .overlay {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100%;
      transition: right 0.4s ease-in-out;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      background: none;
      /* important: let screens handle their bg */
  }

  .overlay.active {
      right: 0;
  }

  /* Wrapper to slide screens */


  .menu-screen {
      width: 33.3333%;
      height: 100%;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
  }

  /* First + second screens background */
  .menu-screen:nth-child(1),
  .menu-screen:nth-child(2),
  .menu-screen:nth-child(3) {
      background: #EEFF75;
  }

  /* Overlay header */
  .overlay-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 40px 30px 0 30px;
      background: #EEFF75;
  }

  .overlay-header .logo {
      font-weight: 500;
      font-size: 20px;
  }

  .overlay-header .close-btn {
      background: #000;
      color: #EEFF75;
      border: none;
      padding: 15px 28px;
      cursor: pointer;
      font-weight: 500;
      font-family: 'gt-america-regular';
      font-size: 14px;
      font-style: normal;
      line-height: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
  }

  .right-controls .right-btn {
      padding: 20px;
  }

  /* Menu 1 links */
  .overlay-menu {
      /*  flex: 1; */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: stretch;
      gap: 10px;
      text-align: center;
  }

  .overlay-menu a {
      margin-top: 12px;
      text-decoration: none;
      color: #000;
      font-size: 70px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      padding: 22px !important;
      transition: all 0.3s ease;
      position: relative;
      font-family: "lyon-regular";
      font-style: normal;
      font-weight: 500;
      line-height: 50px;
  }

  .overlay-menu a svg {
      width: 22px;
      height: 22px;
      opacity: 0;
      transform: translateX(-10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .overlay-menu a svg path {
      fill: #fff;
  }

  .overlay-menu a:hover {
      background: #000;
      color: #fff;
  }

  .overlay-menu a:hover svg {
      opacity: 1;
      transform: translateX(0);
  }

  /* Menu 2 links */
  .overlay-menu-2 {
      /*  flex: 1; */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: stretch;
      gap: 10px;
      text-align: center;
  }

  .overlay-menu-2 a {
      text-decoration: none;
      color: #000;
      font-size: 42px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      padding: 22px !important;
      transition: all 0.3s ease;
      position: relative;
      font-family: "lyon-regular";
      font-style: normal;
      font-weight: 500;
      line-height: 27.8px;
  }

  .overlay-menu-2 a svg {
      width: 22px;
      height: 22px;
      opacity: 0;
      transform: translateX(-10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .overlay-menu-2 a svg path {
      fill: #fff;
  }

  .overlay-menu-2 a:hover {
      background: #000;
      color: #fff;
  }

  .overlay-menu-2 a:hover svg {
      opacity: 1;
      transform: translateX(0);
  }


  /* Back button */
  .back-btn {
      font-size: 16px;
      font-weight: bold;
      color: #000;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid #000;
      cursor: pointer;
      text-transform: uppercase;
  }



  /* THIRD SCREEN SPLIT */
  .third-screen-desktop {
      display: flex;
      width: 100%;
      height: 100%;
  }

  .third-left {
      flex: 1;
      background: #EEFF75;
      color: #000;
      display: flex;
      flex-direction: column;
      padding: 30px 25px;
      border-right: 1px solid #333;
  }

  .third-left .logo img {
      width: 80px;
      margin-bottom: 20px;
  }

  .third-left .back-btn {
      margin: 10px 0 15px;
  }

  .third-left .side-nav {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-top: 20px;
  }

  .third-left .side-nav a svg {

      opacity: 0;
      transform: translateX(-10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
  }


  .third-left .side-nav a {
      text-decoration: none;
      font-size: 34px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      padding: 3px 0;
      transition: all 0.3s ease;
      position: relative;
      font-family: "Lyon Arabic Display", serif;
      font-weight: 500;
      color: #777;
  }

  .third-left .side-nav a:hover {
      background: #000;
      color: #fff !important;
  }

  .third-left .side-nav a:hover svg {
      opacity: 1;
      transform: translateX(0);
  }

  .third-left .side-nav a svg path {
      fill: #fff;
  }

  .third-left .side-nav a.active {
      font-weight: 700;
      color: #000;
  }

  .third-right {
      flex: 1;
      background: #000;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 30px 40px;

  }

  .third-right .right-header {
      display: flex;
      justify-content: flex-end;
      gap: 20px;
      align-items: center;
  }

  .third-right .close-btn {
      background: #fff;
      color: #000;
      padding: 15px 28px;
      cursor: pointer;
      font-family: "GT America";
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
  }

  .third-right .right-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 20px;
  }

  .third-right .right-content h3 {
      color: #fff;
      margin-left: 179px;
      font-family: "Lyon Arabic Display";
      font-size: 50px;
      font-style: normal;
      font-weight: 500;
      line-height: 150px;


  }

  .third-right .right-content h2 {
      font-size: 32px;
      margin: 0;
  }

  .third-right .footer {
      display: flex;
      flex-direction: row;
      gap: 26px;
      margin-bottom: 20px;
      font-family: "GT America";
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 22.4px;
  }

  /* mobile hide 
 .third-screen-desktop {
 display: block;
}*/

  /* desktop hide*/
  .third-screen-mobile {
      display: none;
  }


  /* Mobile style */
  /* Responsive: Mobile view */
  @media (max-width: 768px) {
      .back-btn {
          display: inline-flex;
          /* keep text width only */
          border-bottom-width: 2px;
          /* thickness */
          border-bottom-style: solid;
          border-bottom-color: #000;
          /* width: fit-content;
         <--- ensures border matches text length */
          padding-bottom: 6px;
          /* optional adjustment */
      }

      .overlay-menu a {
          font-size: 40px;
      }

      .overlay-menu-2 a {
          display: flex;
          /* flex to separate text and icon */
          justify-content: space-between;
          /* text left, svg right */
          align-items: center;
          /* vertically center for multi-line text */
          text-decoration: none;
          /* adjust color as needed */
          font-size: 28px;

          width: 100%;
          /* make link full-width */
      }


      /* mobile visible */
      .third-screen-mobile {
          display: block;
      }

      /* mobile hide */
      .third-screen-desktop {
          display: none;
      }

      .third-screen-mobile h3 {
          margin-left: 23px;
          font-size: 18px;
          font-family: "GT America";

          font-style: normal;
          font-weight: 500;
          line-height: 90%;
          /* 14.4px */
          letter-spacing: 3px;
          text-transform: uppercase;
      }

      .third-screen-mobile a {
          font-family: "Lyon Arabic Display";
          font-size: 28px;
          font-style: normal;
          font-weight: 500;
          line-height: 28px;
          text-transform: capitalize;
      }



      .menu-screen {
          background: #EEFF75;
      }



      .overlay-menu a:hover {
          background: #EEFF75;
          color: #000;
      }

      .overlay-menu a svg path {
          fill: #000;
      }

      .overlay-menu a svg {
          opacity: 1;
          transition: none !important;
      }

      .overlay-menu-2 a svg {
          opacity: 1;
          transition: none !important;
      }



      .overlay-menu-2 {
          line-height: 32.8px;
          text-align: left;
          /* width: 293px; */

      }

      /** mobile footer css*/
      .footer-mobile {
          margin-top: 272px;
          display: flex;
          align-items: center;
          gap: 20px;
      }

      .footer-mobile-linkedin-logo {
          width: 50px;
          height: 50px;
          font-size: 10px;
          font-style: normal;
          font-weight: 400;
          line-height: 14px;
          margin-left: 12px;
      }

      .footer-mobile-linkedin-info a {
          font-family: "GT America", sans-serif;
          font-size: 10px;
          font-style: normal;
          font-weight: 400;
          white-space: nowrap;
          display: inline-block;
          line-height: 2;
          letter-spacing: normal;
          margin-top: 22px;
          margin-left: -14px;
      }

      .footer-mobile-contact-info {
          font-family: "GT America";
          font-size: 10px;
          font-style: normal;
          font-weight: 400;
          line-height: 22px;
      }

  }





  @media (min-width: 1024px) {
      .menu-wrapper {
          display: flex;
          width: 300%;
          /* 3 screens */
          height: 100%;
          transition: transform 0.4s ease;
      }
  }

  @media (max-width: 1023px) {
      .menu-wrapper {
          width: 300%;
      }

  }

  @media (max-width: 767px) {
      .menu-wrapper {
          width: 300%;
      }
  }