/* تنسيقات قسم المسارات المهنية */
.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: rgb(16, 119, 50);
  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: rgb(16, 119, 50);
  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;
}

/* تنسيقات قسم مخرجات التعلم */
.learning-outcomes {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.learning-outcomes h5 {
  color: #107732;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
}

.learning-outcomes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.learning-outcomes-list li {
  padding: 6px 0;
  border-bottom: 1px dashed #e0e0e0;
  position: relative;
  padding-right: 25px;
}

.learning-outcomes-list li:last-child {
  border-bottom: none;
}

.learning-outcomes-list li:before {
  content: "\f0eb";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffc107;
  position: absolute;
  right: 0;
  top: 8px;
}

/* تنسيقات زر عرض/إخفاء مخرجات التعلم */
.toggle-outcomes {
  display: block;
  text-align: center;
  margin: 15px auto 0;
  padding: 8px 20px;
  background-color: rgba(16, 119, 50, 0.1);
  color: #107732;
  border: 1px solid rgba(16, 119, 50, 0.2);
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-outcomes:hover {
  background-color: rgba(16, 119, 50, 0.2);
}

.toggle-outcomes i {
  margin-right: 5px;
  transition: transform 0.3s;
}

.toggle-outcomes.collapsed i {
  transform: rotate(180deg);
}

.learning-outcomes-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.learning-outcomes-content.expanded {
  max-height: 1000px; /* يجب أن تكون قيمة كبيرة لتستوعب المحتوى */
}

.outcomes-paragraph {
  text-align: justify;
  line-height: 1.7;
  margin: 0;
  padding: 10px 0;
  color: #444;
  font-size: 0.95rem;
}

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