
/* Placement section */
.placement-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.placement-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  color: #1e293b;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

/* Slider layout */
.placement-slider {
  position: relative;
  margin: 48px 0;
  display: flex;
  align-items: center;
}

.placement-cards {
  display: flex;
  gap: 24px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 20px 0;
  margin: 0 60px;
  width: 100%;
}

/* Card styling */
.placement-card {
  min-width: 280px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  flex: 1;
}

.placement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.student-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.placeholder-image {
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #94a3b8;
}

/* Navigation button styling */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: #00B4D8;
  color: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

.slider-btn .material-icons {
  font-size: 28px;
  line-height: 1;
}

/* Dots navigation */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 24px;
  border-radius: 12px;
  background: #00B4D8;
}

/* Responsive styling */
@media (max-width: 768px) {
  .placement-section {
    padding: 60px 16px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .placement-cards {
    gap: 16px;
    margin: 0 45px;
    padding: 16px 0;
  }

  .placement-card {
    min-width: 240px;
  }

  .student-image {
    height: 240px;
  }

  /* Mobile navigation buttons */
  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .slider-btn .material-icons {
    font-size: 24px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .dot.active {
    width: 18px;
  }
}