/* Future Learning Article Specific Styles */
.future-learning-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.future-learning-hero .hero-text h1 {
  color: white;
}

.future-learning-hero .article-category {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.future-learning-hero .article-tags .tag {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.concept-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eaeaea;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #004080;
  color: white;
  font-size: 1.5rem;
  border-radius: 50%;
  margin-right: 1.5rem;
}

.concept-stats {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat-card {
  flex: 1;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid #004080;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  color: #004080;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}

.vision-elements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.vision-card {
  padding: 1.5rem;
  text-align: center;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.vision-card i {
  font-size: 2.5rem;
  color: #004080;
  margin-bottom: 1rem;
}

.curriculum-roadmap {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.pathway-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pathway-level {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pathway-level h4 {
  color: #004080;
  margin-bottom: 1rem;
  border-bottom: 2px solid #004080;
  padding-bottom: 0.5rem;
}

.pathway-level ul {
  list-style: none;
  padding: 0;
}

.pathway-level li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.pathway-level li i {
  position: absolute;
  left: 0;
  top: 0.25rem;
  color: #004080;
}

.curriculum-highlights {
  margin: 2rem 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.highlight-card {
  padding: 1.5rem;
  text-align: center;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  background: white;
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-3px);
}

.highlight-card i {
  font-size: 2.5rem;
  color: #004080;
  margin-bottom: 1rem;
}

.learning-domains {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.domain-card {
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.domain-header {
  background-color: #004080;
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.domain-header i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.domain-content {
  padding: 1.5rem;
}

.domain-content ul {
  list-style: none;
  padding: 0;
}

.domain-content li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.domain-content li:before {
  content: "•";
  color: #004080;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.balance-matrix {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.matrix-item h5 {
  margin-bottom: 0.5rem;
  color: #333;
}

.skill-bar {
  background-color: #e0e0e0;
  border-radius: 10px;
  height: 10px;
  overflow: hidden;
}

.skill-level {
  background-color: #004080;
  height: 100%;
  border-radius: 10px;
  transition: width 1s ease-in-out;
}

.entrepreneurship-program {
  margin: 2rem 0;
}

.program-phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.program-phase {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-left: 4px solid #004080;
}

.program-phase h4 {
  color: #004080;
  margin-bottom: 1rem;
}

.success-stories {
  margin: 2rem 0;
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.story-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-top: 4px solid #004080;
}

.story-status {
  display: inline-block;
  background-color: #e3f2fd;
  color: #004080;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-top: 1rem;
}

.ecosystem-components {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.component-card {
  display: flex;
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.component-icon {
  background-color: #004080;
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}

.component-icon i {
  font-size: 2rem;
}

.component-content {
  padding: 1.5rem;
  flex: 1;
}

.component-content ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.component-content li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.component-content li:before {
  content: "✓";
  color: #004080;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.innovation-challenges {
  margin: 2rem 0;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.challenge-card {
  background: white;
  padding: 1.5rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

.implementation-roadmap {
  margin: 2rem 0;
}

.roadmap-timeline {
  position: relative;
  margin-top: 2rem;
}

.roadmap-timeline:before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #004080;
}

.timeline-phase {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.phase-marker {
  background-color: #004080;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 2rem;
  z-index: 2;
}

.phase-content {
  flex: 1;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.uae-context {
  margin: 2rem 0;
}

.alignment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.alignment-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-left: 4px solid #004080;
}

.call-to-action {
  margin: 2rem 0;
}

.collaboration-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.option-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  border-top: 4px solid #004080;
}

.vision-impact {
  margin: 2rem 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.impact-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.impact-card i {
  font-size: 2.5rem;
  color: #004080;
  margin-bottom: 1rem;
}

.impact-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 1rem;
}

.impact-card li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.impact-card li:before {
  content: "✓";
  color: #004080;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    text-align: center;
  }
  
  .section-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .concept-stats {
    flex-direction: column;
  }
  
  .component-card {
    flex-direction: column;
  }
  
  .component-icon {
    min-width: 100%;
    padding: 1rem;
  }
  
  .roadmap-timeline:before {
    left: 15px;
  }
  
  .phase-marker {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    font-size: 0.9rem;
  }
  
  .timeline-phase {
    margin-bottom: 1.5rem;
  }
}

/* Animation for skill bars */
@keyframes slideIn {
  from {
    width: 0%;
  }
  to {
    width: var(--target-width);
  }
}

.skill-level {
  animation: slideIn 1.5s ease-out forwards;
}