/* ===== CANDIDATES PAGE SPECIFIC STYLES ===== */
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');



/* Import base manpower styles */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box
}



@import url('manpower.css');

/* ===== HEADER RESPONSIVE OVERRIDE ===== */
@media (max-width: 991px) {
  .menu {
    background: rgba(255, 255, 255, 0.5);
  }
  
  header ul li ul {
    background: rgba(255, 255, 255, 0.5);
  }
}

/* ===== HERO SECTION - CANDIDATES ===== */
.hero-tl {
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.45), rgba(17, 17, 17, 0.55)),
    url('images/candidat.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-tl .gradien {
  background: radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.25), transparent 60%);
}

/* ===== CANDIDATE SPECIFIC COLORS ===== */
.hero-badge {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.15), rgba(108, 117, 125, 0.1));
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

/* ===== JOB SEARCH SECTION ===== */
.job-search-section {
  background: var(--gray);
}

.search-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--success);
}

.job-search-form .form-control {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.job-search-form .form-control:focus {
  border-color: var(--success);
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.job-search-form .form-label {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

/* ===== FEATURED JOBS SECTION ===== */
.featured-jobs-section {
  background: var(--white);
}

.job-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.15);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.job-header h5 {
  margin: 0;
  color: var(--black);
  font-weight: 700;
}

.job-type {
  background: rgba(40, 167, 69, 0.1);
  color: var(--success);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.job-company,
.job-location,
.job-salary {
  margin-bottom: 10px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.job-description {
  flex-grow: 1;
  margin: 15px 0;
}

.job-description p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.job-date {
  font-size: 0.8rem;
  color: #6c757d;
}

/* ===== SERVICES FOR CANDIDATES ===== */
.candidate-services-section {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  position: relative;
}

.candidate-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/jobs.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 1;
}

.candidate-services-section .container {
  position: relative;
  z-index: 2;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card ul {
  list-style: none;
  padding-left: 0;
}

.service-card li {
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6c757d;
  font-weight: bold;
}

/* ===== SUCCESS STORIES ===== */
.success-stories-section {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  position: relative;
}

.success-stories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.success-stories-section .container {
  position: relative;
  z-index: 2;
}

.story-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  height: 100%;
  border-left: 4px solid #e9ecef;
}

.story-text {
  font-style: italic;
  line-height: 1.6;
  margin: 1rem 0;
  color: #495057;
}

.story-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

.author-info h6 {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.success-badge {
  margin-left: auto;
}

/* ===== CAREER TIPS SECTION ===== */
.career-tips-section {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
}

.career-tips-section .subtitle,
.career-tips-section h2 {
  color: white !important;
}

.tip-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.tip-icon {
  color: #6c757d;
  margin-bottom: 1rem;
}

.tip-card h5 {
  color: var(--black);
  font-weight: 700;
  margin-bottom: 15px;
}

.tip-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== MY PATH SECTION ===== */
.mypath-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}

.mypath-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/ent.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.mypath-section .container {
  position: relative;
  z-index: 2;
}

.mypath-section .subtitle,
.mypath-section h2,
.mypath-section p {
  color: white !important;
}

.path-timeline {
  position: relative;
}

.path-step {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: #f8f9fa;
  border: 3px solid #dee2e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  color: #6c757d;
}

.step-content {
  flex: 1;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 4px solid #e9ecef;
}

.step-details {
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 6px;
  font-size: 0.9rem;
}

.step-content h5 {
  color: var(--black);
  font-weight: 700;
  margin-bottom: 10px;
}

.step-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.step-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status.completed {
  background: rgba(40, 167, 69, 0.1);
  color: var(--success);
}

.status.current {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}

.status.upcoming {
  background: rgba(0, 87, 255, 0.1);
  color: var(--blue);
}

.status.future {
  background: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

.btn-outline-green {
  border: 2px solid var(--success);
  color: var(--success);
  background: transparent;
  border-radius: 20px;
  padding: 6px 15px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.btn-outline-green:hover {
  background-color: var(--success);
  color: var(--white);
  transform: translateY(-2px);
}

.path-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.career-stats-card,
.success-tips-card,
.resources-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.career-stats-card h6,
.success-tips-card h6,
.resources-card h6 {
  color: var(--black);
  font-weight: 700;
  margin-bottom: 15px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.stat-value {
  font-weight: 700;
  color: var(--success);
  font-size: 0.9rem;
}

.success-tips-list {
  list-style: none;
  padding: 0;
}

.success-tips-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resource-link {
  display: block;
  padding: 0.75rem;
  color: #495057;
  text-decoration: none;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  transition: background-color 0.3s ease;
}

.resource-link:hover {
  background-color: #f8f9fa;
  color: #007bff;
}

/* ===== CV UPLOAD SECTION ===== */
.cv-upload-section {
  background: #a2b8d2;
  border-bottom: 4px solid #8b5cf6;
}

.upload-card {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid #f0f0f0;
}

.cv-upload-form .form-control {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.cv-upload-form .form-control:focus {
  border-color: var(--success);
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.cv-upload-form .form-label {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 1rem;
}

.file-upload input[type="file"]:hover {
  border-color: #007bff;
}

/* ===== BUTTONS OVERRIDE ===== */
.btn-blue {
  background: linear-gradient(135deg, var(--success), #22c55e);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.btn-blue:hover {
  box-shadow: 0 15px 35px rgba(40, 167, 69, 0.4);
  color: var(--white);
}

.btn-outline-blue {
  border-color: var(--success);
  color: var(--success);
}

.btn-outline-blue:hover {
  background-color: var(--success);
  border-color: var(--success);
  color: var(--white);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-tl {
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }

  .search-card,
  .upload-card {
    padding: 30px;
  }

  .job-card {
    padding: 20px;
  }

  .tip-card {
    padding: 25px 15px;
  }

  .job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .job-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .search-card,
  .upload-card {
    padding: 20px;
  }

  .tip-icon {
    width: 60px;
    height: 60px;
  }

  .tip-icon i {
    font-size: 1.5rem;
  }

  .path-timeline::before {
    left: 20px;
  }

  .path-step {
    padding-left: 10px;
  }

  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .step-content {
    padding: 20px;
  }

  .path-sidebar {
    margin-top: 30px;
  }

  .career-stats-card,
  .success-tips-card,
  .resources-card {
    padding: 20px;
  }
}