html {
  scroll-behavior: smooth;
}

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  scroll-snap-type: x mandatory;
}

.slider-wrapper > div {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

/* Navigation Buttons */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  color: #0a2641;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
  background-color: white;
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

/* Add styles for pagination dots */
.slider-pagination {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  background-color: #0a2641;
  transform: scale(1.2);
}

#logo-container::before {
  content: "";
  position: absolute;

  background-color: #306089;
  @media screen and (max-width: 600px) {
    box-shadow: -11px -18px 0px 3px white;

  }
  @media screen and (min-width: 1700px) {
    background-color: #276096 ;
    box-shadow: -11px -18px 0px 3px white;
  }
  @media screen and (min-width: 600px) {
    box-shadow: -11px -18px 0px 3px white;
  }
  rotate: 0deg;
  bottom: 62px;
  height: 52px;
  width: 38px;
  right: -34px;
  border-top-left-radius: 25px;
  /* box-shadow: -14px -18px 0px 3px white; */
}

#logo-container::after {
  content: "";
  position: absolute;

  background-color: #235793;
  @media screen and (max-width: 600px) {
    background-color: #245790 ;
    box-shadow: 12px -18px 0 3px white;
  }
  @media screen and (min-width: 1700px) {
    background-color: #205e9d ;  
  }
  @media screen and (min-width: 600px) {
    box-shadow: 11px -18px 0 3px white;
  }
  rotate: 0deg;
  bottom: 62px;
  height: 52px;
  width: 38px;
  left: -34px;
  border-top-right-radius: 25px;
}
#logo-container.scrolled::after {
  /* bottom: 26px; */
  display: none;
}

#logo-container.scrolled::before {
  /* bottom: 26px; */
  display: none;

}
#logo-container.pos::after {
  bottom: 66px;
  
}
#logo-container.pos::before {
  bottom: 66px;
}
#form-container {
  transition: transform 0.5s ease-in-out;
}

#form-container.show {
  transform: translateY(0);
}

#register-form-container {
  transition: transform 0.5s ease-in-out;
}

#register-form-container.show {
  transform: translateY(0);
}

.step {
  display: none;
}

.step.active {
  display: block;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  position: fixed;
  right: 32px;
  top: 0;
}

::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 4px;
  opacity: 0.7;
}

::-webkit-scrollbar-track {
  background: #0a264199;
}

#mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

#mobile-menu.open {
  transform: translateX(0);
}

/* Ensure popup content is properly contained */
.mediaPopup-child,
.rulesPopup-child,
.newsPopup-child,
.termsPopup-child,
.privacyPopup-child {
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}

/* @keyframes scaleFromTopRight {
  0% {
      transform: translate(50vw, -50vh) scale(0);
      opacity: 0;
  }
  100% {
      transform: translate(0, 0) scale(1);
      opacity: 1;
  }
} */
