/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
#root {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
}


.hero-slider-section {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-swiper {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
}

.hero-slide {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}


.hero-slide-bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  transform: scale(1.08);

  will-change: transform;
}






.hero-floating-light {
  position: absolute;

  width: 900px;
  height: 900px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255, 0, 128, 0.35),
      rgba(121, 40, 202, 0.18),
      transparent 70%
    );

  top: -300px;
  right: -150px;

  filter: blur(70px);

  z-index: 1;
}



.hero-slide-container {
  position: relative;
  z-index: 5;

  width: 100%;
  height: 100vh;
  height: 100svh;

  display: flex;
  align-items: center;

  padding-left: clamp(30px, 8vw, 140px);
  padding-right: clamp(20px, 4vw, 80px);
}



.hero-slide-content {
  width: min(100%, 90vw);
  position: relative;
padding: 20px;
}


.hero-slide-subtitle {
  display: inline-block;

  color: #ff4da6;

  font-size: clamp(12px, 1vw, 16px);

  text-transform: uppercase;

  letter-spacing: 5px;

  margin-bottom: 20px;

  font-weight: 700;
}


.hero-slide-title {
  font-size: clamp(52px, 7vw, 120px);

  line-height: 0.95;

  font-weight: 900;

  color: white;

  margin-bottom: 30px;

  letter-spacing: -4px;

  max-width: 12ch;
}



.hero-slide-desc {
  font-size: clamp(18px, 1.4vw, 24px);

  line-height: 1.8;

  color: rgba(255, 255, 255, 0.82);

  margin-bottom: 45px;

  max-width: 700px;
}



.hero-slide-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-primary-btn {
  padding: 18px 42px;

  border: none;

  border-radius: 60px;

  background:
    linear-gradient(
      135deg,
      #ff0080,
      #7928ca
    );

  color: white;

  font-size: 16px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.4s ease;

  box-shadow:
    0 10px 40px rgba(255, 0, 128, 0.35);
}

.hero-primary-btn:hover {
  transform: translateY(-4px);

  box-shadow:
    0 15px 50px rgba(255, 0, 128, 0.5);
}

.hero-secondary-btn {
  padding: 18px 42px;

  border-radius: 60px;

  border: 1px solid rgba(255, 255, 255, 0.2);

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(14px);

  color: white;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.4s ease;
}

.hero-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.14);

  transform: translateY(-4px);
}



.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: white;

  width: 60px;
  height: 60px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);

  transition: 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}



.hero-swiper .swiper-pagination {
  bottom: 40px !important;
}

.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;

  background: rgba(255, 255, 255, 0.4);

  opacity: 1;

  transition: 0.4s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
  width: 42px;

  border-radius: 30px;

  background: white;
}



@media (min-width: 1800px) {
  .hero-slide-content {
    width: 1000px;
  }

  .hero-slide-title {
    font-size: 140px;
  }

  .hero-slide-desc {
    font-size: 28px;
    max-width: 900px;
  }
}


@media (max-width: 1200px) {
  .hero-slide-title {
    line-height: 1;
  }
}


@media (max-width: 992px) {
  .hero-slide-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .hero-slide-title {
    max-width: 100%;
  }
}



@media (max-width: 768px) {
  .hero-slide-container {
    justify-content: center;

    text-align: center;

    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-slide-content {
    width: 100%;
  }

  .hero-slide-title {
    font-size: clamp(42px, 12vw, 72px);

    letter-spacing: -2px;

    max-width: 100%;
  }

  .hero-slide-desc {
    font-size: 16px;

    max-width: 100%;
  }

  .hero-slide-buttons {
    justify-content: center;

    width: 100%;
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    width: 100%;
  }

  .hero-floating-light {
    width: 400px;
    height: 400px;

    top: -100px;
    right: -100px;
  }

  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    display: none;
  }
}



@media (max-width: 480px) {
  .hero-slide-subtitle {
    letter-spacing: 3px;
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    padding: 16px 24px;
  }
} */






* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
#root {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
}

.hero-slider-section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-swiper {
  width: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Banner */
.hero-slide-bg {
  position: relative;
  width: 100%;
  height: 700px;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;

  will-change: transform;
}

.hero-slide-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-slide-overlay {
  display: none;
}

.hero-floating-light {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 0, 128, 0.25),
    rgba(121, 40, 202, 0.15),
    transparent 70%
  );
  top: -300px;
  right: -150px;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-slide-container {
  position: absolute;
  inset: 0;
  z-index: 5;

  display: flex;
  align-items: center;

  width: 100%;
  height: 100%;

  padding: 20px;
}

.hero-slide-content {
  width: min(100%, 90vw);
  padding: 20px;
}

.hero-slide-subtitle {
  display: inline-block;
  color: #ff4da6;
  font-size: clamp(12px, 1vw, 16px);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-slide-title {
  font-size: clamp(52px, 7vw, 120px);
  line-height: 0.95;
  font-weight: 900;
  color: white;
  margin-bottom: 30px;
  letter-spacing: -4px;
  max-width: 12ch;
}

.hero-slide-desc {
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 45px;
  max-width: 700px;
}

.hero-slide-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-primary-btn {
  padding: 18px 42px;
  border: none;
  border-radius: 60px;
  background: linear-gradient(135deg, #ff0080, #7928ca);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 10px 40px rgba(255, 0, 128, 0.35);
}

.hero-primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(255, 0, 128, 0.5);
}

.hero-secondary-btn {
  padding: 18px 42px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}

.hero-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

/* Swiper Navigation */

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 18px;
}

.hero-swiper .swiper-pagination {
  bottom: 20px !important;
}

.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 20px;
  background: #fff;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:1600px) {
  .hero-slide-bg {
    height: 650px;
  }
}

@media (max-width:1400px) {
  .hero-slide-bg {
    height: 600px;
  }
}

@media (max-width:1200px) {
  .hero-slide-bg {
    height: 500px;
  }

  .hero-slide-title {
    line-height: 1;
  }
}

@media (max-width:992px) {

  .hero-slide-bg {
    height: 420px;
  }

  .hero-slide-title {
    font-size: clamp(38px, 7vw, 60px);
    max-width: 100%;
  }

  .hero-slide-desc {
    font-size: 16px;
  }
}

@media (max-width:768px) {

  .hero-slide-bg {
    height: 320px;
  }

  .hero-slide-container {
    justify-content: center;
    text-align: center;
    padding: 15px;
  }

  .hero-slide-content {
    width: 100%;
  }

  .hero-slide-title {
    font-size: clamp(30px, 8vw, 50px);
    letter-spacing: -1px;
  }

  .hero-slide-desc {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-slide-buttons {
    justify-content: center;
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    width: 100%;
  }

  .hero-floating-light {
    width: 350px;
    height: 350px;
    top: -100px;
    right: -100px;
  }

  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    display: none;
  }
}

@media (max-width:576px) {

  .hero-slide-bg {
    height: 250px;
  }

  .hero-slide-title {
    font-size: 28px;
  }

  .hero-slide-subtitle {
    letter-spacing: 3px;
  }
}

@media (max-width:480px) {

  .hero-slide-bg {
    height: 210px;
  }

  .hero-slide-content {
    padding: 10px;
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    padding: 14px 20px;
  }
}

@media (max-width:360px) {

  .hero-slide-bg {
    height: 180px;
  }

  .hero-slide-title {
    font-size: 24px;
  }

  .hero-slide-desc {
    font-size: 14px;
  }
}