/* Override CSS */

/* Carousel wrapper for hero area */
.hero-carousel {
  position: relative;
  overflow: hidden;
  padding: 0!important;
}
.hero-carousel .carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-carousel .carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
  height: 100%;
}
.hero-carousel .carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.hero-carousel .carousel-slide .container {
  color: #fff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 20px 70px;
  z-index: 2;
  /* Enable GPU-accelerated transform and a smooth delayed vertical transition
    JS will update the inline transform (translateY) to create a smooth scroll
    parallax-like effect. Tweak transition duration/timing-function as needed. */
  will-change: transform;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.22, 0.8, 0.12, 1);
}
/* Dark overlay on each slide background */
.hero-carousel .carousel-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-carousel .carousel-slide h1 {
  margin: 0;
  font-size: 75px;
  line-height: 1.05;
}
@media (max-width: 480px) {
  .hero-carousel .carousel-slide h1 {
    font-size: 34px;
  }
}
.hero-carousel .carousel-slide span {
  font-size: clamp(14px, 2vw, 20px);
  display: inline-block;
  margin-top: 8px;
}
.hero-carousel .carousel-prev,
.hero-carousel .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-carousel .carousel-prev {
  left: 18px;
}
.hero-carousel .carousel-next {
  right: 18px;
}
.hero-carousel .carousel-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16%;
  z-index: 7;
  display: flex;
  gap: 8px;
}
.hero-carousel .carousel-dots button {
  height: 2px;
  border-radius: 13px;
  border: none;
  background: rgb(255 255 255);
  cursor: pointer;
}
.hero-carousel .carousel-dots button.active {
  background: #33c2ed;
}
@media (min-width: 1200px) {
  .hero-carousel {
    height: 575px;
  }
}
@media (max-width: 1199px) {
  .hero-carousel {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .hero-carousel {
    height: 450px;
  }
}

@media (min-width: 992px) {
    .mega-menu-content {
        left: 0;
        right: 0;
        transform: translateX(0%);
    }
}

.multi-item {
  display: flex;
}

.hidden {
  display: none;
}

.btn-green {
  background-color: #1ABC9C;
  border-color: #1ABC9C;
}

.btn-green:hover {
  background-color: #09977b;
  border-color: #09977b;
}

/* Logo loader styles: used when body has data-loader and data-loader-html contains .site-loader */
.site-loader {
  position: fixed;
  z-index: 2000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.loader-logo {
  width: 96px;
  height: auto;
  display: block;
  animation: loader-pulse 1.6s ease-in-out infinite, loader-rotate 3s linear infinite;
}

@keyframes loader-pulse {
  0% { transform: scale(0.92); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(0.92); opacity: 0.85; }
}

@keyframes loader-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}