/* ============================================
   PLACED-STUDENTS.CSS - Our Placed Students
   ============================================ */

#JL_details_placed_students {
  padding: 50px 0;
  background: linear-gradient(135deg, #0A1931, #030F3F);
}

.JL-details-placed-students-title {
  text-align: center;
  margin-bottom: 36px;
}
.JL-details-placed-students-title h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.JL-details-placed-students-title p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}

/* Student Card (LHS carousel) */
.JL-details-placed-students-LHS-card {
  border-radius: 14px !important;
  border: none !important;
  padding: 24px !important;
  background: #fff !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15) !important;
}

.JL-details-placed-students-LHS-card-student-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}
.student-image {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FF6D12;
}
.student-name b {
  display: block;
  font-size: 1rem;
  color: #1a1a2e;
}
.student-name p {
  font-size: 0.82rem;
  color: #FF6D12;
  font-weight: 600;
}
.here-my-story p {
  font-size: 0.8rem;
  font-weight: 600;
  color: #FF6D12;
  border: 1px solid #FF6D12;
  padding: 4px 12px;
  border-radius: 20px;
}

.JL-details-placed-students-LHS-card-paragraphs b {
  display: block;
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.JL-details-placed-students-LHS-card-paragraphs > p {
  font-size: 0.86rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.JL-details-placed-students-LHS-card-paragraphs-img {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 14px;
  background: #f8f9fa;
  border-radius: 10px;
  text-align: center;
}
.JL-details-placed-students-LHS-card-paragraphs-img img {
  height: 32px;
  object-fit: contain;
  margin: 0 auto 4px;
}
.JL-details-placed-students-LHS-card-paragraphs-img b {
  font-size: 0.78rem;
  color: #333;
  margin-bottom: 0;
}

/* Carousel arrows */
#placed_student_carouselIndicators .bi-arrow-left,
#placed_student_carouselIndicators .bi-arrow-right {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  padding: 6px;
  transition: color 0.2s;
}
#placed_student_carouselIndicators .bi-arrow-left:hover,
#placed_student_carouselIndicators .bi-arrow-right:hover {
  color: #FF6D12;
}

/* Start Career Button */
.JL-details-placed-students-LHS-btn {
  margin-top: 20px;
}
.JL-details-placed-students-LHS-btn button {
  background: linear-gradient(135deg, #FF6D12, #f74000);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(255,109,18,0.4);
}
.JL-details-placed-students-LHS-btn button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,109,18,0.55);
}

/* Right stat cards */
.JL-details-placed-students-RHS {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px 0;
}
.JL-details-placed-students-RHS .card {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px;
  width: 70%;
  transition: background 0.2s;
}
.JL-details-placed-students-RHS .card:hover {
  background: rgba(255,255,255,0.14) !important;
}
.JL-details-placed-students-RHS-card-img {
  width: 44px;
  height: 44px;
  background: rgba(255,109,18,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.JL-details-placed-students-RHS-card-img img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.JL-details-placed-students-RHS .card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  margin: 0;
}
.JL-details-placed-students-RHS .card p b {
  font-size: 1.2rem;
  font-weight: 800;
}

@media (max-width: 767px) {
  #JL_details_placed_students { padding: 36px 0; }
  .JL-details-placed-students-title h2 { font-size: 1.5rem; }
  .JL-details-placed-students-RHS { display: none; }
}
