.hero-banner {
  width: 100%;
  position: relative;
}
.hero-banner .heroSwiper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/6;
}
@media (max-width: 992px) {
  .hero-banner .heroSwiper {
    aspect-ratio: 16/7;
  }
}
@media (max-width: 576px) {
  .hero-banner .heroSwiper {
    aspect-ratio: 16/9;
  }
}
.hero-banner .swiper-slide {
  width: 100%;
  height: 100%;
}
.hero-banner .slide-item {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-banner .slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-banner .slider-controls {
  position: absolute;
  top: 1px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 10px;
}
@media (max-width: 576px) {
  .hero-banner .slider-controls {
    top: -15px;
    right: 2px;
    transform: scale(0.85);
  }
}
.hero-banner .slider-controls .swiper-button-next-hero,
.hero-banner .slider-controls .swiper-button-prev-hero {
  position: static;
  width: 38px;
  height: 38px;
  backdrop-filter: blur(10px);
  border-radius: var(--theme-radius);
  color: #fff;
  transition: 0.3s;
}
.hero-banner .slider-controls .swiper-button-next-hero::after,
.hero-banner .slider-controls .swiper-button-prev-hero::after {
  font-size: 14px;
  font-weight: bold;
}
.hero-banner .slider-controls .swiper-button-next-hero:hover,
.hero-banner .slider-controls .swiper-button-prev-hero:hover {
  background: rgba(255, 255, 255, 0.4);
}
.hero-banner .custom-pagination {
  bottom: 15px !important;
  text-align: center;
}
@media (max-width: 576px) {
  .hero-banner .custom-pagination {
    bottom: 10px !important;
  }
}
.hero-banner .custom-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: 20px;
  transition: 0.3s;
}
.hero-banner .custom-pagination .swiper-pagination-bullet-active {
  width: 22px;
  background: #fff;
}

.section-benefits .section-title h2 {
  font-weight: 800;
  color: var(--theme-color-100);
}
.section-benefits .section-title p {
  color: #777;
  margin-top: 10px;
}
.section-benefits .benefit-box {
  position: relative;
  background: #fff;
  border-radius: var(--theme-radius);
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  overflow: hidden;
  border: 1px solid #eee;
}
.section-benefits .benefit-box .number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  font-weight: 700;
  color: #dcdcdc;
  transition: all 0.3s ease;
}
.section-benefits .benefit-box .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(108, 99, 255, 0.062745098);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--theme-color-100);
  transition: all 0.3s ease;
}
.section-benefits .benefit-box .icon svg {
  margin-top: 15px;
  width: 50px;
  height: 50px;
  background: none;
}
.section-benefits .benefit-box h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}
.section-benefits .benefit-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
.section-benefits .benefit-box:hover {
  cursor: pointer;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.section-benefits .benefit-box:hover .icon {
  background: var(--theme-color-100);
  color: #fff;
  transform: scale(1.1);
}
.section-benefits .benefit-box:hover .number {
  color: var(--theme-color-100);
}
.section-benefits .benefit-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(120deg, var(--theme-color-100), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.3s;
}
.section-benefits .benefit-box:hover::before {
  opacity: 1;
}

.category-section {
  background: none;
}
.category-section .category-card {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 16px;
  padding: 10px;
}
.category-section .category-card:hover {
  transform: translateY(-6px);
}
.category-section .category-card:hover .category-img img {
  transform: scale(1.05);
}
.category-section .category-card .category-img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  background: none;
}
.category-section .category-card .category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}
.category-section .category-card .category-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/*# sourceMappingURL=index.css.map */
