* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #0e0e0e;
  color: #fff;
}

  /* === Override Bootstrap styles for Navbar safely === */

/* Force navbar to not be affected by Bootstrap navbar classes */
header {
  background: transparent !important;
  backdrop-filter: blur(10px) !important;
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap;
  padding: 10px 30px !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Reset Bootstrap styles affecting links */
.navbar a {
  color: #a5a4a4 !important;
  text-decoration: none !important;
  font-weight: bold !important;
}

.navbar a:hover {
  color: #e1bdfb !important;
}

.logo-gif {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #00ffff;
}

.hiring-banner {
  background: url('../assets/img/Images/hiring1.jpeg') center/cover no-repeat;
  padding: 120px 20px 10px;
  text-align: center;
  color: #fff;
  background-attachment: fixed;
  position: relative;
}

.hiring-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hiring-content {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  
  
}

.hiring-text h1 {
  font-size: 40px;
  margin-bottom: 15px;
  color: #00ffff;
}

.hiring-text p {
  font-size: 18px;
  opacity: 0.9;
}

/* Background Image */
.form-section {
    position: relative;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
  }
  
  .form-background {
    background: url('../assets/img/Images/bg1.jpg') center/cover no-repeat;
    filter: blur(6px) brightness(0.4);
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  /* Glass form */
  .form-container {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 100px auto;
    padding: 40px;
    background: rgba(162, 161, 161, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 0 30px rgba(136, 134, 134, 0.4);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.4s ease;
  }
  
  /* Form Fields */
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 15px;
  }
  
  .form-group select{
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #00ffff;
    background-color: rgba(0, 0, 0, 0.6); /* dark background */
    color: #fff; /* white text */
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  select:focus {
    border-color: #ff00ff;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
  }
  
  option {
    background-color: #1c1c1c;
    color: #ffffff;
    font-size: 15px;
  }

  .form-group input:focus
  .form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: #00ffff;
  }
  
  /* Submit Button */
  button[type="submit"] {
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, #00ffff, #ff00ff);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
  }
  
  button[type="submit"]:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .form-container {
      margin: 40px 20px;
      padding: 25px;
    }
  }
  
  