/* =====================================================
   SCOPE EVERYTHING TO .choose-page (NO CONFLICTS)
===================================================== */

.Feautes-section {
  background: #f6f7fb;
  padding: 40px 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* =====================================================
   JOB CARD
===================================================== */

.Feautes-section .job-card-page {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 22px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.Feautes-section .job-card-page:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

/* Title */
.Feautes-section .job-title {
  font-size: 17px;
  font-weight: 600;
  color: #1d2b4f;
  margin-bottom: 6px;
}

/* Company */
.Feautes-section .company {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 10px;
}

/* Meta Info */
.Feautes-section .job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 12px;
}

.Feautes-section .job-meta span {
  white-space: nowrap;
}

/* Description */
.Feautes-section.job-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 16px;
}

/* Buttons */
.Feautes-section .job-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.Feautes-section .match-btn {
  background: #fff2c6;
  color: #000;
  border: 1px solid #ffd966;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
}

.Feautes-section .apply-btn {
  background: #f5a623;
  color: #000;
  padding: 6px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

/* =====================================================
   SIDEBAR
===================================================== */

.Feautes-section .sidebar-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* Dark box */
.Feautes-section .dark-box {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #ffffff;
}

.Feautes-section .dark-box h5 {
  margin-bottom: 15px;
}

/* Inputs override */
.Feautes-section .dark-box input {
  background: #0f172a;
  color: #ffffff;
  border: 1px solid #374151;
}

.Feautes-section.dark-box input::placeholder {
  color: #9ca3af;
}

/* Submit button */
.Feautes-section .submit-btn {
  background: #f5a623;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px;
}

/* AI Bot */
.Feautes-section .download-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

/* Companies */
.Feautes-section .company-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.Feautes-section .company-list li {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid #e5e7eb;
}

/* View button */
.Feautes-section .view-btn {
  background: #e7f0ff;
  color: #1d4ed8;
  border-radius: 8px;
  font-weight: 600;
}

/* =====================================================
   RESPONSIVE FIXES
===================================================== */

@media (max-width: 991px) {
  .Feautes-section .job-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .Feautes-section .job-title {
    font-size: 16px;
  }

  .Feautes-section .job-meta {
    gap: 8px;
    font-size: 12px;
  }
}
