/* GENERAL PAGE */
body {
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    margin: 0;
}

/* ================= FORM SECTION ================= */
.apply-section {
    padding: 60px 20px;
}

.form-container {
    max-width: 650px;
    margin: 40px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    margin-bottom: 10px;
}

.form-container p {
    margin-bottom: 25px;
    color: #555;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

input[type="file"] {
    padding: 8px;
    background: #f9f9f9;
}

/* BUTTON */
button.btn {
    margin-top: 15px;
    padding: 12px;
    width: 100%;
    background: #0a2a66;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

button.btn:hover {
    background: #ffc107;
    color: #000;
}

/* ===== NAVBAR CLEAN VERSION ===== */

.navbar {
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  padding: 15px 40px;
}
/* menu container */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

/* spacing */
.nav-links li {
  margin: 0 20px;
}

/* links */
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: #ffd700;
  transform: scale(1.05);
}
/* hide hamburger for now */
.menu-toggle {
  display: none;
}

/* ===== MOBILE NAVBAR ===== */
@media (max-width: 768px) {

  /* show hamburger */
  .menu-toggle {
    display: block;
    font-size: 28px;
    color: white;
    cursor: pointer;
    text-align: right;
  }

  /* hide menu by default */
  .nav-links {
    display: none;
    flex-direction: column;
    background: #1e3c72;
    margin-top: 10px;
  }

  /* show when active */
  .nav-links.active {
    display: flex;
  }

  /* spacing */
  .nav-links li {
    margin: 15px 0;
  }
}

.logo {
    width: 60px;
    height: auto;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}


