
.swiper-pagination {
  text-align: right !important;
  padding-right: 10%;
  /* bottom: 120px !important; */
  width: auto !important;
  left: auto !important;
  right: 0 !important;
}

.swiper-pagination-bullet {
  background: #fbfbfc !important;
  opacity: 0.5;
  width: 8px;
  height: 8px;
  margin: 0 12px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: #fbfbfc !important;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
  transform: scale(1.2);

}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#mobile-menu {
  transition: all 0.2s;
}

.hidden_opacity {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.nav-link {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;         
  left: 50%;
  width: 0;
  height: 4px;         
  background: linear-gradient(to right, #f7e6cf, #f2cc96, #e7b87c);
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}





@keyframes fadeInUpCustom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInUpCustom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.swiper-slide-active .ani-up {
  animation: fadeInUpCustom 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }


