/* custom cursor effect*/
.cursor-circle {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #990000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}
/* End custom cursor effect*/

.typed-cursor {
  color: #ffffff;
  font-weight: bold;
  animation: blink 0.7s infinite;
}
@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}

/* General styles */
.swiper {
  width: 100%;
}
.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Animation for fade-in effect */
@keyframes fadeUpCenter {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-up {
  animation: fadeUpCenter 1s ease-out forwards;
  opacity: 0; /* Make it invisible until animation starts */
}

/* Animation for fade-in effect on scroll */

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.8s ease-out;
}

.bgs7 {
  transform: translateY(50px);
  opacity: 0;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  animation: fadeUp 1s ease-out forwards;
}

#btn-close {
  filter: invert(1);
}
