/* Alumni Section Styles */
.alumni.section {
  padding: 80px 0;
  background: #f8f9fa;
}

.alumni .section-title h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.alumni .section-title p {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Alumni Slider */
.alumni-slider {
  padding: 20px 0;
}

.alumni-item {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.alumni-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.alumni-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 4px solid #007bff;
}

.alumni-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.alumni-item:hover .alumni-img img {
  transform: scale(1.1);
}

.alumni-info h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.alumni-info span {
  color: #007bff;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.alumni-year {
  color: #6c757d;
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 15px !important;
}

.alumni-achievement {
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0 !important;
}

/* Alumni Statistics */
.stats-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stats-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 10px;
}

.stats-label {
  color: #6c757d;
  font-size: 1rem;
  font-weight: 500;
}

/* Swiper Navigation */
.alumni-slider .swiper-button-next,
.alumni-slider .swiper-button-prev {
  color: #007bff;
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.alumni-slider .swiper-button-next:hover,
.alumni-slider .swiper-button-prev:hover {
  background: #007bff;
  color: #fff;
  transform: scale(1.1);
}

.alumni-slider .swiper-button-next::after,
.alumni-slider .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 600;
}

/* Swiper Pagination */
.alumni-slider .swiper-pagination-bullet {
  background: #007bff;
  opacity: 0.3;
  width: 12px;
  height: 12px;
}

.alumni-slider .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .alumni .section-title h2 {
    font-size: 2rem;
  }
  
  .alumni-item {
    padding: 20px;
  }
  
  .alumni-img {
    width: 100px;
    height: 100px;
  }
  
  .stats-number {
    font-size: 2rem;
  }
  
  .stats-box {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .alumni .section-title h2 {
    font-size: 1.8rem;
  }
  
  .alumni-info h4 {
    font-size: 1.1rem;
  }
  
  .stats-number {
    font-size: 1.8rem;
  }
}