/**
 * Placement Support & Career Sections Styles
 * Digital Scholar Dubai - MBA Program
 */

/* Placement Support Section */
.placement-support {
  padding: 80px 30px;
  background: #fff;
  font-family: 'Inter', sans-serif;
}

.placement-support h2 {
  font-size: 2.3rem;
  color: #0f1e49;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
}

.placement-support .intro {
  max-width: 800px;
  margin: auto;
  color: #555;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 50px;
}

.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-box {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  padding: 28px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}

.feature-box h3 {
  font-size: 1.1rem;
  color: #0f1e49;
  margin-bottom: 16px;
}

.feature-box ul {
  list-style: none;
  padding: 0;
  color: #444;
  font-size: 0.95rem;
}

.feature-box li {
  margin-bottom: 10px;
}

/* Career Tracks Section */
.career-tracks {
  padding: 80px 30px;
  background: #fefefe;
}

.career-tracks h2 {
  font-size: 2rem;
  text-align: center;
  font-weight: 800;
  color: #0f1e49;
  margin-bottom: 10px;
}

.career-tracks .subtitle {
  text-align: center;
  font-size: 1rem;
  color: #777;
  margin-bottom: 40px;
}

.track-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.track-tag {
  background: #f4c40e;
  color: #0f1e49;
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.track-tag:hover {
  background: #0f1e49;
  color: #f4c40e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Salary Expectations Section */
.salary-expectations {
  background: #fff;
  padding: 80px 30px;
}

.salary-expectations h2 {
  text-align: center;
  color: #0f1e49;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.salary-expectations .subtitle {
  text-align: center;
  font-size: 1rem;
  color: #777;
  margin-bottom: 50px;
}

.salary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.salary-facts ul {
  list-style: none;
  padding-left: 0;
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
}

.salary-facts li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.salary-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: rgba(244, 196, 14, 0.2);
  border-radius: 50%;
}

.salary-chart img {
  max-width: 480px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.salary-chart img:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: scale(1.02);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .placement-support h2,
  .career-tracks h2,
  .salary-expectations h2 {
    font-size: 1.8rem;
  }
  
  .placement-support .intro,
  .career-tracks .subtitle,
  .salary-expectations .subtitle {
    font-size: 0.9rem;
  }
  
  .feature-box {
    padding: 20px;
  }
  
  .salary-grid {
    flex-direction: column;
  }
  
  .salary-chart {
    order: -1;
  }
}

@media (max-width: 576px) {
  .placement-support,
  .career-tracks,
  .salary-expectations {
    padding: 60px 20px;
  }
  
  .track-tag {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}