    /* * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Poppins', sans-serif; overflow-x: hidden; } */

    a { text-decoration: none; color: #333; }

    .header-container {
      height: 80px;
      display: flex;
      align-items: center;
      background: #fff;
      position: relative;
      z-index: 1100;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      padding: 0 20px;
    }

    header .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo img {
      height: 50px;
      width: auto;
      display: block;
    }

    .menu {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .social {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 5px;
    }

    .social a {
      padding: 0 8px;
      font-size: 18px;
      color: #333;
      transition: color 0.3s ease;
    }

    .social a:hover { color: #007bff; }

    .main-nav a {
      font-size: 16px;
      padding: 12px;
      margin-left: 12px;
      display: inline-block;
      color: #333;
      transition: color 0.3s ease;
    }

    .main-nav a:hover { color: #007bff; }

    .hamburger {
      width: 35px;
      height: 30px;
      cursor: pointer;
      z-index: 1200;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hamburger div {
      background-color: #333;
      height: 4px;
      border-radius: 2px;
      transition: all 0.4s ease;
    }

    .hamburger.active div:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
    .hamburger.active div:nth-child(2) { opacity: 0; transform: translateX(20px); }
    .hamburger.active div:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

    .fullscreen-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: fixed;
  inset: 0;
  background-color: #ececec;
  z-index: 1150;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  padding: 20px;
}


    .fullscreen-menu.active { transform: translateX(0); }

    .fullscreen-menu .menu-logo {
      margin-bottom: 30px;
    }

    .fullscreen-menu .menu-logo img {
      height: 50px;
      width: auto;
      display: block;
      margin: 0 auto;
    }

    .fullscreen-menu a {
      color: #333;
      margin: 15px 0;
      font-size: 1.8rem;
      font-weight: 500;
    }

    .fullscreen-menu a:hover { color: #4053ff; }

    .fullscreen-menu .social {
      margin-top: 40px;
      font-size: 24px;
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .fullscreen-menu .social a {
      color: #333;
      padding: 0 15px;
      font-size: 1.5rem;
    }

    .fullscreen-menu .social a:hover { color: #4053ff; }

    .close-btn {
      position: fixed;
      top: 25px;
      right: 25px;
      font-size: 2.5rem;
      color: #000;
      cursor: pointer;
      z-index: 1250;
      user-select: none;
      display: none;
    }

    .fullscreen-menu.active ~ .close-btn {
      display: flex !important;
    }

    @media (max-width: 991px) {
      .menu-content, .social { display: none; }
      .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
      }

    .logo img {
      height: 30px;
      width: auto;
      display: block;
    }

    .fullscreen-menu .menu-logo img {
      height: 30px;
      width: auto;
      display: block;
      margin: 0 auto;
    }
      .fullscreen-menu a {
      margin: 5px 0;
      font-size: 1.4rem;
    }
    }

    @media (min-width: 992px) {
      .hamburger, .close-btn, .fullscreen-menu { display: none !important; }
      .menu-content, .social { display: flex; }
      .header-container { height: 120px; }
      .logo img { height: 40px; }
    }