/* تنسيقات قسم المسارات المهنية */
.career-paths-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.career-path-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.career-path-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.career-path-header {
  background-color: #1a237e;
  color: #fff;
  padding: 20px;
  text-align: center;
  position: relative;
}

.career-path-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffc107;
}

.career-path-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.career-path-content {
  padding: 20px;
}

.career-path-content h4 {
  color: #1a237e;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.career-path-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.career-path-features li {
  padding: 8px 0;
  border-bottom: 1px dashed #e0e0e0;
  position: relative;
  padding-right: 25px;
}

.career-path-features li:last-child {
  border-bottom: none;
}

.career-path-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffc107;
  position: absolute;
  right: 0;
  top: 8px;
}

@media (max-width: 768px) {
  .career-path-card {
    margin-bottom: 20px;
  }
}
