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

_body {
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.banner-swiper {
  width: 100%;
  height: 70vh;
  position: relative;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomInOut 12s ease-in-out infinite;
  
  
}

@keyframes zoomIn {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/*@keyframes zoomInOut {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}*/



.text-overlay {
  position: absolute;
  top: 30%;
  left: 5%;
  max-width: 400px;
  z-index: 2;
  animation: fadeInUp 1.2s ease forwards;
}

.text-overlay h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: FiraSans;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.text-overlay p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: #ff4081;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #e73370;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pagination on Right */
.swiper-pagination {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #fff;
  opacity: 0.5;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
  .text-overlay {
    top: 20%;
    left: 5%;
    max-width: 90%;
  }

  .swiper-pagination {
    right: 10px;
    top: auto;
    bottom: 20px;
    transform: none;
    flex-direction: row;
  }
}
