:root{
      --navy:#06131c;
      --bg:#081a23;
      --card:#0c2530;
      --muted:#9fb7d6;
      --accent:#d6b04f;
      --accent-cyan:#00d2ff;
      --white:#ffffff;
      --glass: rgba(255,255,255,0.03);
      --radius:12px;
      --ff-sans: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    }
    *{box-sizing:border-box}
    html,body{height:100%;margin:0}
   body{
      font-family:var(--ff-sans);
      background: linear-gradient(180deg,var(--bg), #041018 70%);
      color:var(--white);
      line-height:1.45;
      overflow-x:hidden;
      padding-bottom:60px;
    }

   /* ---------- NAVBAR ---------- */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); 
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.nav a {
  color: var(--white);
  text-decoration: none;
  margin: 0 8px;
  font-weight: 600;
  font-size: 15px;
  transition: color var(--transition);
}

.nav a.active,
.nav-links a:hover {
  color: var(--accent);
}

/* ---------- BRAND ---------- */
.nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 40px;
  color: var(--white);
  text-decoration: none;
}

.nav .brand .logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-title {
  font-weight: 600;
  font-size: 18px;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
}

/* ---------- NAV LINKS & SEARCH ---------- */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-search {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}

.nav-search input {
  width: 100%;
  padding: 8px 12px;
  border-radius: var(--radius);
  border: none;
  outline: none;
  background: var(--card);
  color: var(--white);
  font-size: 14px;
}

.nav-search input::placeholder {
  color: var(--muted);
}

/* Search results dropdown */
.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--card);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
  z-index: 999;
}

.search-row {
  padding: 10px 12px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
}

.search-row:hover {
  background: rgba(255,255,255,0.08);
}

.search-row.empty {
  color: var(--muted);
  text-align: center;
}

/* ---------- NAV RIGHT ---------- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  position: relative;
}

.badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--accent-2);
  color: #000;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
}

.cta {
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: var(--radius);
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cta:hover {
  background: var(--accent-2);
}

/* ---------- HAMBURGER ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ---------- OVERLAY ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
}

.overlay.active {
  display: block;
}

/* ---------- WRAP LAYOUT ---------- */
.wrap {
  display: flex;
  gap: 20px;
  padding: 20px 5%;
  margin-top: 10px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

  header {
    background: #06131c;
    color: white;
    padding: 40px 20px;
    text-align: center;
  }
  header h1 {
    margin: 0;
    font-size: 2.5rem;
  }
  header p {
    margin: 10px 0 0;
    font-size: 1.2rem;
  }

  .container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
  }

  /* JOB CARDS */
  .jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .job-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  .job-card h3 {
    margin-top: 0;
    color: #06131c;
  }
  .job-card p {
    margin: 8px 0;
  }

  /* APPLICATION FORM */
  .application-form {
    margin-top: 50px;
    background:  rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  .application-form h2 {
    margin-top: 0;
    color: #b78207;
  }
  .application-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
  }
  .application-form form label {
    grid-column: span 2;
    font-weight: bold;
  }
  .application-form input,
  .application-form select,
  .application-form textarea {
    grid-column: span 2;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #7d1717;
    width: 100%;
  }
  .application-form button {
    grid-column: span 2;
    padding: 12px;
    background: #06131c;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  .application-form button:hover {
    background: #0d1f2c;
  }
@keyframes spin {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}
.loader {
  border: 3px solid rgba(255,255,255,0.2);
  border-top: 3px solid #b78207;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 8px;
  animation: spin 1s linear infinite;
}

  @media(max-width:768px) {
    .application-form form {
      grid-template-columns: 1fr;
    }
    .application-form input,
    .application-form select,
    .application-form textarea,
    .application-form button {
      grid-column: span 1;
    }
  }
