/* ════════════════════════
   PAGE BANNER
════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, #ff004f, #ff6b95);
  color: #ffffff;
  text-align: center;
  padding: 80px 10%;
}

.page-banner h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-banner h1 span {
  color: #111111;
}

.page-banner p {
  font-size: 16px;
  opacity: 0.9;
}

/* ════════════════════════
   SECTION LABEL
════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #ff004f;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: #fff0f3;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ════════════════════════
   CAREERS INTRO
════════════════════════ */
.careers-intro {
  text-align: center;
  padding: 70px 10% 40px;
  background: #ffffff;
}

.careers-intro h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 16px;
}

.careers-intro h2 span {
  color: #ff004f;
}

.careers-intro p {
  font-size: 15px;
  color: #555555;
  line-height: 1.9;
  max-width: 650px;
  margin: 0 auto;
}

/* ════════════════════════
   JOB LISTINGS
════════════════════════ */
.jobs-section {
  padding: 20px 10% 80px;
  background: #ffffff;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.job-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 4px 20px rgba(255, 0, 79, 0.08);
  border-top: 3px solid #ff004f;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(255, 0, 79, 0.18);
}

.job-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.job-icon {
  width: 50px;
  height: 50px;
  background: #fff0f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.job-icon i {
  font-size: 20px;
  color: #ff004f;
}

.job-header h3 {
  font-size: 17px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 4px;
}

.job-dept {
  font-size: 12px;
  color: #ff004f;
  font-weight: 500;
}

.job-card p {
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-meta span {
  font-size: 12px;
  color: #555555;
  background: #fff0f3;
  padding: 4px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-meta span i {
  color: #ff004f;
  font-size: 11px;
}

.job-card .btn-primary {
  text-align: center;
  margin-top: auto;
  font-size: 14px;
  padding: 11px 24px;
}

/* ════════════════════════
   APPLICATION FORM
════════════════════════ */
.apply-section {
  background: #fff0f3;
  padding: 80px 10%;
}

.apply-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.apply-inner h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}

.apply-inner h2 span {
  color: #ff004f;
}

.apply-intro {
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Form Layout */
.apply-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 8px 30px rgba(255, 0, 79, 0.1);
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #111111;
  background: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff004f;
  box-shadow: 0 0 0 3px rgba(255, 0, 79, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff004f' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* File Upload */
.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  border: 2px dashed #ff004f;
  border-radius: 10px;
  background: #fff0f3;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ff004f;
  font-size: 14px;
  font-weight: 500;
}

.file-label i {
  font-size: 22px;
}

.file-label:hover {
  background: #ffe0ea;
  border-color: #cc003f;
}

/* Submit Button */
.form-submit {
  text-align: center;
  margin-top: 10px;
}

.form-submit .btn-primary {
  font-size: 16px;
  padding: 15px 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
/* Hiring notice section */

.hiring-notice{
padding:40px 10%;
display:flex;
justify-content:center;
background:#fff;
}

.notice-box{
background:#fff0f3;
border:2px dashed #ff004f;
border-radius:16px;
padding:30px;
text-align:center;
max-width:650px;
}

.notice-box i{
font-size:40px;
color:#ff004f;
margin-bottom:10px;
}

.notice-box h3{
margin-bottom:10px;
font-size:22px;
}

.notice-box p{
line-height:1.7;
color:#555;
}


/* disabled apply buttons */

.disabled-btn{
background:#cccccc !important;
cursor:not-allowed;
pointer-events:none;
}
/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 768px) {
  .page-banner h1 {
    font-size: 34px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .apply-form {
    padding: 28px 20px;
  }

  .careers-intro h2,
  .apply-inner h2 {
    font-size: 28px;
  }
}