@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@100;300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Prompt', sans-serif; /* Changed from SF Pro */
  height: 100vh;
  margin: 0;
  padding: 0;
  background: hsl(0, 0%, 100%);
}

.bubble-main.lang{
  color: black;
}
.bubble-sub.lang{
  color: black;
}

/* Navbar container */
nav {
  width: 100vw;
  height: 64px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  font-family: 'Prompt', sans-serif; /* Changed from Noto Sans */
}

ul {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  max-width: 1200px;
}

body {
  display: block;
  justify-content: unset;
  align-items: unset;
  padding-top: 64px;
}

.link {
  text-decoration: none;
  color: #000000;
  font-size: 18px;
  padding: 0.5rem;
  position: relative;
}

.link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #050505;
  border-radius: 5px;
  transform: scaleX(0);
  transition: all 0.6s ease;
  bottom: 0;
  left: 0;
}

.link:hover::before {
  transform: scaleX(1);
}

/* Full-Length Horizontal Image Section */
.horizontal-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: auto;
    overflow: hidden;
}

.scroll-container {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  transition: scroll-left 0.1s;
  width: 100%;
  height: 100%;
}

.scroll-container img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.scroll-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 50px;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

.left-btn { left: 10px; }
.right-btn { right: 10px; }

.scroll-btn:hover { color: #000; }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  color: #222;
  min-width: 180px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 12px 0;
  z-index: 999;
  font-size: 1rem;
}

.dropdown-menu li {
  padding: 10px 24px;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  font-size: 1.08em;
  transition: background 0.2s;
  font-weight: bold;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.lang-switcher {
  background-color: #000000;
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255);
  border-radius: 5px;
  padding: 0.2rem 0.5rem;
  transition: all 0.6s ease;
  text-decoration: none;
  font-size: 18px;
  position: relative;
}

.lang-switcher:hover {
  background-color: transparent;
  color: #000000;
  padding: 0.5rem;
}

.lang-switcher::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000000;
  border-radius: 5px;
  transform: scaleX(0);
  transition: all 0.6s ease;
  bottom: 0;
  left: 0;
}

.lang-switcher:hover::before { transform: scaleX(1); }

/* Footer */
.site-footer {
  width: 100%;
  text-align: center;
  padding: 18px 0 12px 0;
  font-size: 1rem;
  color: #888;
  background: #fff;
  font-family: 'Prompt', sans-serif; /* Changed from Noto Sans */
  border-top: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  position: relative;
  top: -10px;
}

/* Social Icons */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.social-icons .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  font-size: 1.5rem;
}

.social-icons .icon-content a:hover .filled { height: 100%; }

/* Job Container Styles */
.job-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 100px;
    font-family: 'Prompt', sans-serif; /* Explicitly forced */
}

.job-section {
    flex: 1;
    min-width: 600px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-header.jingjai { background-color: #e74c3c; }
.section-header.bangpoo { background-color: #f39c12; }

.header-title {
    color: white;
    font-size: 28px;
    font-weight: bold;
}

.header-bubble {
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    position: relative;
}

.header-bubble::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 30px;
    width: 0; height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

.apply-button, .next-page-btn {
    font-family: 'Prompt', sans-serif; /* Explicitly forced */
}

/* Modal */
.modal-box {
  background-color: white;
  width: 90%;
  max-width: 1000px;
  margin: 15vh auto;
  padding: 20px;
  border-radius: 12px;
  position: relative;
  text-align: center;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.5);
  font-family: 'Prompt', sans-serif; /* Forced */
}