  body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }

  header {
    background: linear-gradient(135deg, #08080818, #17171784);
    padding: 11px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 999;
    animation: fadeIn 0.8s ease-in-out;
  }

  nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .logo:hover {
    transform: scale(1.05);
    color: #ffcc00;
  }

  .logo span {
    font-size: 14px;
    display: block;
    font-weight: 400;
  }

  .nav-links {
    display: flex;
    gap: 60px;
    z-index: 2;

  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease-in-out;
  }

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

  .nav-links a:hover {
    transform: translateY(-5px);
    color: #ffcc00;
  }

  .menu-toggle {
    display: none;
  }

  .menu-toggle-label {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
   
  }

  .menu-toggle-label div {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
  }

  .header-right {
    display: flex;
    gap: 12px;
    align-items: center;
    /* background-color: yellow; */
  }

  .header-right a {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 18px;
    color: white;
    transition: 0.3s ease;
    text-decoration: none;
  }

  .header-right a[href*="wa.me"] {
    background: #25d366;
  }

  .header-right a[href*="wa.me"]:hover {
    background: #128c7e;
    transform: scale(1.1);
  }

  .facebook-button {
    background: #3b5998;
  }

  .facebook-button:hover {
    background: #2d4373;
    transform: scale(1.1);
  }

  .tiktok-button {
    background: #000;
  }

  .tiktok-button:hover {
    background: #1a1a1a;
    transform: scale(1.1);
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #language-select {
    background: #0d0d0d;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    color: white;
  }
  #language-select:focus {
    outline: none;
  }

  @media screen and (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background: linear-gradient(135deg, #08080818, #17171784);
      position: absolute;
      top: 76px;
      left: 0;
      width: 100%;
      padding: 20px 0;
      text-align: center;
      gap: 25px;
    }

    .menu-toggle:checked + .menu-toggle-label + .nav-links {
      display: flex;
      background: linear-gradient(135deg, #080808, #171717f9);
    }

    .menu-toggle-label {
      display: flex;
    }

    .header-right {
      display: none;
    }

  }