/* Placement Section */
.placement-section {
  padding: 50px 20px;
  background-color: #fefcf4;
  text-align: center;
}

.placement-container {
  max-width: 1200px;
  margin: 0 auto;
}

.placement-container h2 {
  font-size: 2.5rem;
  color: #0b2953;
  margin-bottom: 20px;
}

.placement-container p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.placement-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.placement-card {
  background-color: #ffffff;
  width: 280px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.placement-card:hover {
  transform: translateY(-5px);
}

.placement-card img {
  width: 60px;
  margin-bottom: 15px;
}

.placement-card h3 {
  color: #003087;
  margin-bottom: 10px;
}

.placement-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}
/* Extra Info Section */
.placement-extra {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.placement-extra h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
}

.placement-extra ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.placement-extra ul li {
  padding: 8px 0;
  font-size: 1rem;
  color: #333;
}

.placement-extra ul li::before {
  content: "✔️";
  margin-right: 10px;
  color: #0a66c2;
}

.placement-extra p {
  font-weight: bold;
  font-size: 1.1rem;
  color: #0a66c2;
}


@media (max-width: 768px) {
  .placement-highlights {
    flex-direction: column;
    align-items: center;
  }

  .placement-card {
    width: 100%;
    max-width: 350px;
  }
    .placement-container h2 {
    font-size: 2rem;
  }

  .placement-card h3 {
    font-size: 1.2rem;
  }

  .placement-card p {
    font-size: 0.9rem;
  }

  .placement-extra h3 {
    font-size: 1.5rem;
  }
}


/* placement reviews */
/* Placement Reviews Section */
/* Placement Reviews Section */
.placement-reviews {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.reviews-container h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #0a66c2;
}

.reviews-container p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.review-card {
  background-color: #f5f9ff;
  border-left: 5px solid #0a66c2;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.student-info {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.student-info img.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  border: 2px solid #0a66c2;
}

.student-info h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #222;
}

.student-info .company {
  font-size: 0.95rem;
  color: #0a66c2;
  font-weight: bold;
  margin: 0;
}

.review-card p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .reviews-container h2 {
    font-size: 2rem;
  }

  .student-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .student-info img.avatar {
    margin-bottom: 10px;
    margin-right: 0;
  }
}

/* hiring */
.hiring-partners-section {
  /* padding: 50px 20px; */
  background-color: #fff;
  text-align: center;
}

.hiring-partners-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.swiper-slide img {
  max-height: 80px;
  width: 150px;
  object-fit: contain;
}

.swiper-slide img:hover {
  filter: grayscale(0%);
}
