/* ÃƒÂ¨Ã‚ÂÃ‚Â£ÃƒÂ¨Ã‚ÂªÃ¢â‚¬Â°ÃƒÂ¨Ã‚ÂµÃ¢â‚¬Å¾ÃƒÂ¨Ã‚Â´Ã‚Â¨ÃƒÂ¦Ã‚Â»Ã¢â‚¬ËœÃƒÂ¥Ã‚ÂÃ¢â‚¬â€ÃƒÂ¦Ã‚Â Ã‚Â·ÃƒÂ¥Ã‚Â¼Ã‚Â */
.honor_qualification {
  padding: 0 0 7rem;
  /* background: #f8f9fa; */
}

.honor_qualification .title_second_1 {
  text-align: center;
  margin-bottom: 4rem;
}

.honor_slider_wrapper {
  position: relative;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 2rem 0;
}

.honor_slider_wrapper .slick-slide {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.honor_slider {
  margin: 0 -15px;
}

.honor_slide {
  padding: 0 15px;
}

.honor_card {
  background: white;
  border-radius: 0;
  padding: 4rem 2rem 4rem;
  text-align: center;
  box-shadow: 2px 3px 4px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.honor_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.honor_card:hover::before {
  transform: scaleX(1);
}

.honor_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.honor_image {
  /* margin-bottom: 20px; */
  /* flex: 1; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
}

.honor_image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* border-radius: 8px; */
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
}

.honor_card:hover .honor_image img {
  transform: scale(1.05);
}

.honor_content {
  margin-top: auto;
}

.honor_title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 2rem auto 0;
  line-height: 1.4;
}

/* ÃƒÂ¥Ã‚Â¯Ã‚Â¼ÃƒÂ¨Ã‹â€ Ã‚ÂªÃƒÂ¦Ã…â€™Ã¢â‚¬Â°ÃƒÂ©Ã¢â‚¬â„¢Ã‚Â®ÃƒÂ¦Ã‚Â Ã‚Â·ÃƒÂ¥Ã‚Â¼Ã‚Â */
.honor_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.honor_prev,
.honor_next {
  width: 5rem;
  height: 5rem;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  color: #6c757d;
  position: relative;
}

.honor_prev:hover,
.honor_next:hover {
  background: #007bff;
  border-color: #007bff;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.honor_prev {
  left: -8rem;
}

.honor_next {
  right: -8rem;
}

.honor_prev svg,
.honor_next svg {
  width: 20px;
  height: 20px;
}

/* ÃƒÂ¥Ã¢â‚¬Å“Ã‚ÂÃƒÂ¥Ã‚ÂºÃ¢â‚¬ÂÃƒÂ¥Ã‚Â¼Ã‚ÂÃƒÂ¨Ã‚Â®Ã‚Â¾ÃƒÂ¨Ã‚Â®Ã‚Â¡ */
@media (max-width: 1200px) {
  .honor_slider_wrapper {
    max-width: 100%;
    padding: 0 60px;
  }
  
  .honor_prev {
    left: 10px;
  }
  
  .honor_next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .honor_qualification {
    padding: 60px 0;
  }
  
  .honor_qualification .title_second_1 h2 {
    font-size: 2rem;
  }
  
  .honor_qualification .title_second_1 {
    margin-bottom: 40px;
  }
  
  .honor_slider_wrapper {
    padding: 0 50px;
  }
  
  .honor_card {
    padding: 25px 15px 20px;
  }
  
  .honor_image img {
    max-height: 150px;
  }
  
  .honor_title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .honor_slider_wrapper {
    padding: 0 40px;
  }
  
  .honor_prev,
  .honor_next {
    width: 40px;
    height: 40px;
  }
  
  .honor_prev svg,
  .honor_next svg {
    width: 16px;
    height: 16px;
  }
  
  .honor_qualification .title_second_1 h2 {
    font-size: 1.8rem;
  }
}

/* Slick ÃƒÂ¨Ã‚Â¦Ã¢â‚¬Â ÃƒÂ§Ã¢â‚¬ÂºÃ¢â‚¬â€œÃƒÂ¦Ã‚Â Ã‚Â·ÃƒÂ¥Ã‚Â¼Ã‚Â */
.honor_slider.slick-initialized .slick-slide {
  display: flex;
}

.honor_slider .slick-slide > div {
  width: 100%;
}

/* ÃƒÂ©Ã…Â¡Ã‚ÂÃƒÂ¨Ã¢â‚¬â€Ã‚ÂÃƒÂ©Ã‚Â»Ã‹Å“ÃƒÂ¨Ã‚Â®Ã‚Â¤ÃƒÂ§Ã…Â¡Ã¢â‚¬Å¾slickÃƒÂ§Ã‚Â®Ã‚Â­ÃƒÂ¥Ã‚Â¤Ã‚Â´ */
.honor_slider .slick-prev,
.honor_slider .slick-next {
  display: none !important;
}
