    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #fafafa;
      color: #262626;
    }

    .container {
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 20px;
    }



    h1 {
	  text-align: center;
      font-weight: 600;
      margin-bottom: 10px;
      color: #262626;
    }

    h3 {
	  text-align: center;
      font-size: 24px;
      margin: 10px 0 0;
      color: #7f8c8d;
    }	

    .controls {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .controls input,
    .controls select {
      padding: 10px;
      border: 1px solid #dbdbdb;
      border-radius: 5px;
      font-size: 15px;
      background-color: #fff;
      min-width: 220px;
      transition: border 0.3s ease;
    }

    .controls input:focus,
    .controls select:focus {
      border-color: #0095f6;
      outline: none;
    }

    .job-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .job-card {
      background: #fff;
      border: 1px solid #dbdbdb;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      transition: transform 0.2s ease;
    }

    .job-card:hover {
      transform: translateY(-3px);
    }

    .job-card img {
      width: 100%;
      max-height: 200px;
      object-fit: contain;
      background-color: #fafafa;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .job-card .content {
      padding: 15px;
    }

    .job-card h2 {
      font-size: 17px;
      margin: 0 0 10px;
      color: #0095f6;
    }

    .job-card p {
      font-size: 14px;
      margin: 4px 0;
      color: #444;
    }

    .apply-link {
      display: inline-block;
      margin-top: 10px;
      background-color: #0095f6;
      color: #fff;
      padding: 8px 14px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 14px;
      transition: background 0.3s;
    }

    .apply-link:hover {
      background-color: #006fd1;
    }

    .not-found {
      text-align: center;
      font-style: italic;
      color: #999;
      margin-top: 30px;
    }

    /* Image Modal */
    .image-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      backdrop-filter: blur(10px);
      background-color: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
      overflow: hidden;
      flex-direction: column;
    }

    .image-modal img {
      max-width: 90vw;
      max-height: 90vh;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
      transition: transform 0.2s ease;
      transform-origin: center center;
      cursor: grab;
      user-select: none;
    }

    /* Zoom controls container */
    .zoom-controls {
      position: absolute;
      bottom: 30px;
      right: 30px;
      display: flex;
      gap: 10px;
      z-index: 10000;
    }

    .zoom-controls button {
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 50%;
      background-color: rgba(0,0,0,0.4);
      color: white;
      font-size: 24px;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .zoom-controls button:hover {
      background-color: rgba(0,0,0,0.7);
    }

    @keyframes zoomIn {
      from {
        transform: scale(0.85);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

/** header **/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #001f3f; /* Navy Blue */
  padding: 12px 20px;

  /* Sticky behavior */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff; /* White text for contrast */
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #ffffff; /* White button text */
}

.language-button::after {
  content: " ▼";
  font-size: 12px;
  color: #ffffff;
}

.language-options {
  display: none;
  position: absolute;
  background-color: #ffffff; /* Keep dropdown white for readability */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  right: 0;
  z-index: 1;
  min-width: 140px;
  border-radius: 4px;
  overflow: hidden;
}

.language-options a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333333; /* Dark text on light background */
  font-size: 14px;
}

.language-options a:hover {
  background-color: #f2f2f2;
}


/** footer **/
footer {
  background-color: #001f3f; /* Navy Blue */
  padding: 20px 30px;
  margin-top: 40px;
  border-top: 1px solid #004080; /* Slightly lighter navy */
  font-size: 14px;
  color: #f0f0f0; /* Light text for contrast */
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  margin: 0 10px;
  color: #f0f0f0;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.footer-copy {
  color: #cccccc; /* Slightly dimmed for subtle contrast */
}


  /* Gaya default dropdown */
  #locationFilter {
    padding: 10px;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: white;
  }

  /* Gaya tambahan untuk semburat kuning */
  #locationFilter option.highlighted-option {
    background-color: #fff9d1; /* kuning lembut */
    font-weight: bold;
  }
  
    .tagline {
    color: rgba(0, 128, 0, 0.3); /* Hijau dengan transparansi 60% */
    font-weight: 500;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 10px;
	font-style: italic;
  }

  .title {
    color: red;
    font-weight: bold;
    text-align: center;
  }
  
  .talent-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 36px;
      color: red;
      text-align: center;
    }  
	
	  .gradient-text {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(90deg, rgba(255,0,0,0.3), rgba(255,0,0,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }