@keyframes carousel-rotate {
  0% {
    transform: perspective(1200px) rotateY(0deg);
  }

  100% {
    transform: perspective(1200px) rotateY(360deg);
  }
}

.carousel-container {
  transform-style: preserve-3d;
  animation: carousel-rotate 40s linear infinite;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.carousel-item:hover {
  transform: translateZ(20px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.3);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.text-primary {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #4f46e5, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-secondary {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.5;
}

.depth-overlay {
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 65%
  );
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.swiper {
  width: 100%;

  height: 100%;
}

.swiper-slide {
  display: flex;

  justify-content: center;

  align-items: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem;

  font-weight: bold;
}

.swiper-pagination-bullet {
  background: #64748b;

  opacity: 0.5;

  width: 10px;

  height: 10px;

  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #6366f1;

  opacity: 1;

  transform: scale(1.2);
}

.logo-white {
  filter: brightness(0) invert(1);
}

.smooth-transition {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
  transform: translateX(0);
}

.nav-logo path {
  fill: currentColor;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.perspective-1000 {
  perspective: 1000px;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.active-filter {
  background-color: #fbc108 !important;
  color: #1f2937 !important;
  font-weight: bold;
  border: none !important;
}

.backdrop-blur-lg {
  backdrop-filter: blur(16px);
}
.animate-card-slide {
  animation: cardSlide 0.8s ease-out forwards;
}

@keyframes cardSlide {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.02);
  }
}
* {
  transition-property: color, background-color, border-color, transform,
    box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
#search-input:focus {
  box-shadow: 0 0 0 3px rgba(251, 193, 8, 0.1);
}
