body {
  background-color: #121212;
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #f0f0f0;
}

/* Main Unified Desktop Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 30px;
  background: #121212;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Left side: Logo image + text inside rounded container */
.header-left {
  display: flex;
  align-items: center;
  background: #1E1E1E;
  padding: 8px 16px;
  border-radius: 40px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-link img {
  width: 36px;
  height: auto;
  margin-right: 10px;
}

.logo-link .nav-middle-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
}

/* Right side: nav links inside curved pill */
.header-right {
  display: flex;
  gap: 20px;
  background: #1E1E1E;
  padding: 10px 24px;
  border-radius: 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.header-right a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header-right a:hover {
  color: #007aff;
}

/* Mobile Header */
.mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  background: #121212;
  padding: 14px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.mobile-logo-link {
  text-decoration: none;
}

.mobile-logo {
  background: #1E1E1E;
  padding: 6px 12px;
  border-radius: 40px;
  display: flex;
  align-items: center;
}
.mobile-logo img {
  width: 33px;
  height: 12px;
  margin-right: 5px;
}

.mobile-text-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #f0f0f0;
}

.mobile-menu-icon {
  font-size: 26px;
  cursor: pointer;
  color: #f0f0f0;
  padding: 6px 12px;
  background: #1E1E1E;
  border-radius: 40px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: linear-gradient(135deg, #1E1E1E, #2a2a2a);
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 20px 20px;
}

.mobile-menu a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 16px;
  margin: 12px 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #007aff;
}

/* Responsive display for mobile header */
@media (max-width: 768px) {
  .main-header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
}

/* Application Form Section */
.application-section {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  background: #1E1E1E;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.application-section h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 30px;
  color: #FFF;
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 16px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #333;
  background-color: #2a2a2a;
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  padding: 12px 24px;
  background: #007AFF;
  color: #FFF;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
}

/* Footer */
.footer {
  background: #1E1E1E;
  padding: 40px 20px 20px;
  color: #f0f0f0;
  border-top: 1px solid #2a2a2a;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
}

.social-icons a img {
  width: 20px;
  height: 20px;
  background-color: white;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2a2a2a;
  margin-top: 30px;
}

/* Responsive Mobile Adjustments */
@media (max-width: 768px) {
  .application-section {
    padding: 20px;
    margin: 10px;
  }

  .application-section h2 {
    font-size: 28px;
  }
}
