.heroSwiper .swiper-pagination {
  bottom: 4px !important;
}

.heroSwiper .swiper-pagination-bullet {
  background: white;
  opacity: 0.6;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: white;
  width: 30px;
  border-radius: 5px;
}

/* Notice Area Swiper */
.notice-marquee {
  animation: marquee 25s linear infinite;

}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover (optional) */
#noticeBar:hover .notice-marquee {
  animation-play-state: paused;
}


@media (max-width: 1024px) {
  .notice-marquee {
    height: 30px;
  }
}

.noticeAreaSwiper {
  width: 100%;
  min-width: 0;
  height: 100%;
}

.noticeAreaSwiper .swiper-wrapper {
  align-items: center;
}

.noticeAreaSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.noticeAreaSwiper .swiper-slide span {
  display: block;
  /* white-space: nowrap; */
  /* overflow: hidden;
  text-overflow: ellipsis;
  width: 100%; */
}

@media (max-width: 1024px) {
  .noticeAreaSwiper {
    height: 30px;
  }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .heroSwiper .swiper-pagination {
    bottom: 15px !important;
  }

  .heroSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .heroSwiper .swiper-pagination-bullet-active {
    width: 24px;
  }
}

#topInfoBar {
  transition: all 0.4s ease-in-out;
  max-height: 100px;
  overflow: hidden;
}

/* Main Navigation */
#mainNav {
  position: relative;
  transition: all 0.35s ease;
  z-index: 60
}

/* Main Header */
#mainHeader {
  transition: transform 0.35s ease, opacity 0.3s ease, max-height 0.35s ease;
  overflow: hidden;
}

/* Site Header - Always Fixed */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

/* Notice Bar */
#noticeBar {
  position: relative;
  transition: all 0.35s ease;
  z-index: 40;
}

/* Hide Header when scrolled */
.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  max-height: 0;
  pointer-events: none;
}

/* Hide Top Bar when scrolled */
.hide-bar {
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.notice-fixed {
  position: fixed !important;
  left: 0;
  width: 100%;
  z-index: 45;
  transition: top 0.35s ease;
}