.student-carousel-wrap {
  position: relative;
}

.student-prev,
.student-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  transition: all 0.25s ease;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  cursor: pointer;
}

.student-prev:hover,
.student-next:hover {
  background: #00044a;
  box-shadow: 0 10px 26px rgba(237,53,33,.35);
}

.student-prev {
  left: -60px;   
}

.student-next {
  right: -60px;
}

.student-prev::after,
.student-next::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transition: all 0.25s ease;
}

.student-prev:hover::after,
.student-next:hover::after {
  border-color: #fff;
}

.student-prev::after {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.student-next::after {
  transform: translate(-60%, -50%) rotate(45deg);
}


.student-swiper {
    position: relative;
    padding-bottom: 50px; /* chừa chỗ cho pagination */
}

.student-swiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

.student-pagination .swiper-pagination-bullet {
    margin: 0 8px !important;
}

.student-pagination .swiper-pagination-bullet-active {
    background: #00044a;
    padding: 4px;
}

.student-card {
    width: 100%;
    border-radius: 25px;
    background-color: #f5f5f5;
}

.image-content-student{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
}

.image-content-student {
    position: relative;
    row-gap: 5px;
}

.overlay-student {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00044a;
    left: 0;
    top: 0;
    border-radius:  25px 25px 0 25px;
}

.overlay-student::before,
.overlay-student::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    bottom: -40px;
    background-color: #00044a;
}

.overlay-student::after {
    border-radius: 0 25px 0 0;
    background-color: #f5f5f5;
}

.card-image-student {
    position: relative;
    height: 200px;
    width: 200px;
    background-color: transparent;
    border-radius: 50%;
    border: solid 2px #fff;
}

.card-image-student .card-img-student {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: solid 3px #00044a;
}

 .student-info {
    padding: 16px;
 }

.student-info .student-name,
.student-info .student-name-2 {
    font-size: 18px;
    text-align: center
    /* font-weight: 500; */
    /* color:slategray; */
}

.student-info .student-name {
    margin-bottom: 0;
}

.student-info .student-name-2 {
    color: #ed3521;
    text-transform: uppercase;
}

.student-info .student-desc {
    text-align: left;

}

.student-info .student-desc li {
    font-size: 14px;
    text-align: left;
}






/* Navigation Buttons responsive */
@media (max-width: 1024px) {
    .student-prev { left: -30px; }
    .student-next { right: -30px; }
}

@media (max-width: 768px) {
    .student-prev { left: -20px; }
    .student-next { right: -20px; }
}

@media (max-width: 480px) {
    .student-prev,
    .student-next {
        width: 36px;
        height: 36px;
    }
    .student-prev { left: -15px; }
    .student-next { right: -15px; }
}
