
/* Hero */
.hero {
  text-align: center;
  padding: 80px;
  background: linear-gradient(to right, #ff0606, #002f93);
  color: white;
  margin-top:100px;
}

 .hero h1{

   margin-left:50px;
 }
.hero h1, .hero p { color: #fff; }

/* Filter */
.filter-box {
  text-align: center;
  margin: 40px;
}

.filter-box input,
.filter-box select {
  padding: 12px;
  width: 250px;
  margin: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

/* Jobs */
.job-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 30px;
}

.job-card {
  width: 280px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.job-card:hover { transform: translateY(-8px); }

.job-card button {
  width: 100%;
  padding: 10px;
  border: none;
  background: #022764;
  color: white;
  border-radius: 10px;
  cursor: pointer;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-box {
  width: 420px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-box input,
.modal-box textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.modal-box button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.submit-btn {
  background: linear-gradient(to right, #ff0606, #002f93);
  color: white;
  font-weight: bold;
}

#popbtn {
  background: linear-gradient(to right, #ff0606, #002f93);
  color: white;
  font-weight: bold;
}

#poptxt { color: black; font-weight: bold; }

.close-btn {   background: linear-gradient(to right, #002f93, #ff0606);
  color: white;
  font-weight: bold; }

/* Loader */
#loader {
  margin-left: 10px;
  font-size: 16px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

button:disabled { opacity: 0.6; cursor: not-allowed; }

/* Success Modal */
#successModal .modal-box { text-align: center; }
#successModal button { width: 140px; background: green; color: white; }