* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

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

.bg-hero {
  background-image:
    linear-gradient(180deg, rgba(123, 123, 123, 0) 50.48%, #000000 100%),
    url("./images/home-img.png");
  background-size: cover;
  background-position: center;
}

.card {
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
}
.card-inner {
  background: #fffafa;
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.15);
}
.title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
.desc {
  font-size: 18px;
  margin-bottom: 32px;
  color: #333;
}
.btn {
  background: #d9783d;
  color: white;
  padding: 14px 36px;
  border-radius: 10px;
  font-weight: 600;
}

.about-hero {
  background-image: url("./images/about-hero.png");
  background-size: cover;
  background-position: center;
}

.back-photo {
  background-image: url("./images/bg.png");
  background-size: cover;
  background-position: center;
}

.footer-photo {
  background-image: url("./images/footer-bg.png");
  background-size: cover;
  background-position: center;
}

.box-img {
  background-image: url("./images/Magicbox.png");
  background-size: cover;
  background-position: center;
}

.box-img1 {
  background-image: url("./images/store.png");
  background-size: cover;
  background-position: center;
}

.login-hero {
  background-image: url("./images/login_img.png");
  background-size: cover;
  background-position: center;
}

.bg-img {
  background-image:
    linear-gradient(180deg, rgba(123, 123, 123, 0) 50.48%, #000000 100%),
    url("./images/home-img1.png");
  background-size: cover;
  background-position: center;
}

.swiper-slide {
  transition: all 0.4s ease;
}

.swiper-slide:not(.swiper-slide-active) .card {
  transform: scale(0.9);
  opacity: 0.4;
  filter: blur(2px);
}

.swiper-slide-active .bottom-label {
  opacity: 1;
}

.swiper-slide:not(.swiper-slide-active) .side-text {
  opacity: 1;
}

.heroSwiper .swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: 0.5;
}

.heroSwiper .swiper-pagination-bullet-active {
  background-color: #ffffff;
  opacity: 1;
}

.verticalStackSwiper {
  height: 520px;
  overflow: visible;
}

.stack-slide {
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
  transform: translateY(40px) scale(0.92);
  opacity: 0.6;
}

/* Active card */
.verticalStackSwiper .swiper-slide-active {
  transform: translateY(0) scale(1);
  opacity: 1;
  z-index: 10;
}

/* Next card (behind) */
.verticalStackSwiper .swiper-slide-next {
  transform: translateY(30px) scale(0.96);
  opacity: 0.8;
  z-index: 5;
}

.sidebar-item {
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 4px;
  color: #333;
}

.sidebar-item:hover {
  background-color: #e4e4e4;
}

.sidebar-item.active {
  background-color: #e47127;
  color: white;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.flip-card {
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.flip-card-back {
  transform: rotateY(180deg);
}
