.placed-students-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  position: relative;
  z-index: 1;
}

.particle-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 15s infinite linear;
}

.particle:nth-child(1) {
  width: 20px;
  height: 20px;
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 30px;
  height: 30px;
  top: 70%;
  left: 80%;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  width: 15px;
  height: 15px;
  top: 40%;
  left: 60%;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  width: 25px;
  height: 25px;
  top: 80%;
  left: 30%;
  animation-delay: 6s;
}

.particle:nth-child(5) {
  width: 10px;
  height: 10px;
  top: 20%;
  left: 50%;
  animation-delay: 8s;
}

.corner-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at top right, rgba(56, 182, 255, 0.15) 0%, transparent 70%);
  z-index: -1;
}

.corner-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.title-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  z-index: 0;
}

.student-card {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: white;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
  /* overflow: hidden; */
  position: relative;
  z-index: 1;
}

.student-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  z-index: -1;
}

.student-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.student-card:hover::before {
  transform: scale(1);
}

.student-img-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #3b82f6;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
  position: relative;
  margin-top: 20px;
  transition: all 0.4s ease;
}

.student-card:hover .student-img-wrapper {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}

.shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.student-card:hover .shine-effect {
  left: 100%;
}

.student-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.student-card:hover .student-img {
  transform: scale(1.05);
}

.student-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.student-company {
  font-size: 1rem;
  font-weight: 500;
  color: #3b82f6;
}

.package-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 5px;
}

.student-message {
  font-size: 0.95rem;
  color: #cbd5e1;
  position: relative;
  padding: 0 15px;
}

.student-message::before,
.student-message::after {
  content: '"';
  color: #3b82f6;
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #3b82f6;
  transform: translateY(-3px);
}

.company-logo {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
  border-radius: 50px;
}

.btn-primary:hover .btn-shine {
  left: 100%;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }

  100% {
    transform: translateY(0) rotate(360deg);
  }
}

.students-swiper {
  padding: 20px 0;
}

.swiper-slide {
  transition: all 0.3s ease;
}

.swiper-slide:not(.swiper-slide-active) {
  opacity: 0.7;
  transform: scale(0.95);
}

.swiper-button-next,
.swiper-button-prev {
  color: #3b82f6;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #3b82f6;
  transform: scale(1.2);
}

.students-swiper {
  padding: 20px 0;
  overflow: visible;
}

.swiper-wrapper {
  padding: 20px 0;
}

.swiper-slide {
  width: 80%;
  transition: all 0.4s ease;
  opacity: 0.7;
  transform: scale(0.9);
  filter: brightness(0.8);
}

.swiper-slide-active,
.swiper-slide-duplicate-active {
  opacity: 1;
  transform: scale(1);
  filter: brightness(1);
  z-index: 10;
}

.swiper-slide-prev {
  transform: translateX(-30%) scale(0.9);
}

.swiper-slide-next {
  transform: translateX(30%) scale(0.9);
}

/* Adjust breakpoints for the peek effect */
@media (min-width: 768px) {
  .swiper-slide {
    width: 60%;
  }

  .swiper-slide-prev {
    transform: translateX(-40%) scale(0.9);
  }

  .swiper-slide-next {
    transform: translateX(40%) scale(0.9);
  }
}

@media (min-width: 992px) {
  .swiper-slide {
    width: 45%;
  }

  .swiper-slide-prev {
    transform: translateX(-50%) scale(0.9);
  }

  .swiper-slide-next {
    transform: translateX(50%) scale(0.9);
  }
}

@media (min-width: 1200px) {
  .swiper-slide {
    width: 35%;
  }
}