.hero-carousel {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.hero-carousel .bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  transition: background-image 0.6s ease, transform 0.5s;
}
.hero-carousel .side-left {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}
.hero-carousel .side-left .line {
  width: 35px;
  height: 2px;
  background: #fff;
  margin-right: 10px;
}
.hero-carousel .side-right {
  position: absolute;
  right: 50px;
  top: 50%;
  text-align: center;
  color: #fff;
}
.hero-carousel .side-right .scroll-hint {
  margin-top: 10px;
  opacity: 0.7;
  font-size: 0.9rem;
}
.hero-carousel .floating-btn {
  position: absolute;
  z-index: 30;
  padding: 12px 28px;
  font-size: 0.8rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
}
.hero-carousel .floating-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}
.hero-carousel .center-box {
  position: absolute;
  width: 500px;
  max-width: 85%;
  background: #eae5da;
  padding: 45px;
  border-radius: 6px;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}
.hero-carousel .center-box .slide-counter {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.65;
}
.hero-carousel .center-box h2 {
  font-size: 26px;
  font-weight: 600;
  margin: 25px 0;
  line-height: 1.3;
}
.hero-carousel .center-box .box-image img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 20px;
}
.hero-carousel .center-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 768px) {
  .side-left,
  .side-right {
    display: none;
  }
  .center-box {
    width: 90%;
    padding: 25px;
  }
}
.hero-spacer {
  width: 100%;
  height: 0;
  transition: height 0.3s ease;
}/*# sourceMappingURL=al3.css.map */