/* Career Page Specific Styles */
.career-hero-section .breadcrumb-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.career-hero-section .breadcrumb-meta a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.career-hero-section .breadcrumb-meta a:hover {
  color: #4ECDC4 !important;
}

.career-hero-section .hero-stats {
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .career-hero-section {
    padding: 120px 0 80px 0 !important;
  }

  .career-hero-section .hero-title {
    font-size: 36px !important;
  }

  .career-hero-section .hero-subtitle {
    font-size: 16px !important;
  }

  .career-hero-section .hero-stats {
    gap: 20px !important;
    margin-top: 30px !important;
  }

  .career-hero-section .stat-item h3 {
    font-size: 24px !important;
  }
}

.sec-heading.style-2 {
  margin-bottom: 50px;
}

/* Job Item Styles */
.job-item {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.job-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.job-header .job-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.job-type, .job-urgent {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.job-type {
  background-color: #e3f2fd;
  color: #1976d2;
}

.job-urgent {
  background-color: #ffebee;
  color: #d32f2f;
}

.job-title {
  margin-bottom: 12px;
}

.job-title a {
  color: #1E8A8A;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.job-title a:hover {
  color: #0d5858;
  font-size: 24px;
}

.job-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.job-salary, .job-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

.job-salary i, .job-location i {
  color: #1E8A8A;
  font-size: 16px;
}

.job-description {
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
  font-size: 14px;
}

.job-footer {
  margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .job-item {
    padding: 18px;
  }

  .job-info {
    flex-direction: column;
    gap: 8px;
  }

  .job-title a {
    font-size: 22px;
  }
}

/* Development Programs Styles */

@media (max-width: 768px) {
  .development-programs-section .sec-title {
    font-size: 36px !important;
  }

  .development-programs-section .program-title {
    font-size: 24px !important;
  }

  .development-programs-section .program-description {
    font-size: 14px !important;
  }
}