.elementor-15 .elementor-element.elementor-element-104b5d7{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-104b5d7 *//* =====================================================
   STUNNING SIMPLE COMING SOON PAGE
===================================================== */

.bb-coming-soon {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(62, 118, 255, 0.22), transparent 28%),
    radial-gradient(circle at 80% 75%, rgba(0, 180, 216, 0.16), transparent 30%),
    linear-gradient(135deg, #070b16 0%, #101827 45%, #050814 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  color: #ffffff;
}

/* Soft Glow Background */
.bb-cs-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(35px);
  opacity: 0.65;
  animation: bbFloatGlow 7s ease-in-out infinite alternate;
}

.bb-cs-glow-1 {
  width: 320px;
  height: 320px;
  background: rgba(25, 69, 150, 0.45);
  top: 12%;
  left: 10%;
}

.bb-cs-glow-2 {
  width: 380px;
  height: 380px;
  background: rgba(0, 180, 216, 0.22);
  right: 7%;
  bottom: 8%;
  animation-delay: 1.5s;
}

@keyframes bbFloatGlow {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-28px) scale(1.08);
  }
}

/* Elegant Moving Lines */
.bb-cs-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
}

.bb-cs-lines span {
  position: absolute;
  width: 1px;
  height: 150%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  top: -25%;
  transform: rotate(28deg);
  animation: bbLineMove 8s linear infinite;
}

.bb-cs-lines span:nth-child(1) {
  left: 22%;
}

.bb-cs-lines span:nth-child(2) {
  left: 50%;
  animation-delay: 1.5s;
}

.bb-cs-lines span:nth-child(3) {
  left: 78%;
  animation-delay: 3s;
}

@keyframes bbLineMove {
  0% {
    transform: rotate(28deg) translateY(-80px);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: rotate(28deg) translateY(120px);
    opacity: 0;
  }
}

/* Main Content */
.bb-cs-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
}

.bb-cs-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  color: #dce8ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Big Text */
.bb-cs-content h1 {
  margin: 0;
  font-size: clamp(78px, 13vw, 180px);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: -7px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    0 0 30px rgba(255, 255, 255, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.45);
}

.bb-cs-content p {
  margin: 34px auto 0;
  max-width: 620px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

/* Progress Line */
.bb-cs-progress {
  width: 260px;
  height: 4px;
  margin: 38px auto 18px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.bb-cs-progress div {
  width: 45%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, #4aa3ff, #00d4ff);
  animation: bbProgressMove 2.4s ease-in-out infinite;
}

@keyframes bbProgressMove {
  0% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(95%);
  }
  100% {
    transform: translateX(260%);
  }
}

.bb-cs-note {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 991px) {
  .bb-cs-content h1 {
    font-size: clamp(72px, 16vw, 130px);
    letter-spacing: -5px;
  }

  .bb-cs-content p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .bb-coming-soon {
    padding: 40px 18px;
  }

  .bb-cs-label {
    font-size: 11px;
    letter-spacing: 2px;
    padding: 9px 14px;
    margin-bottom: 24px;
  }

  .bb-cs-content h1 {
    font-size: 76px;
    line-height: 0.9;
    letter-spacing: -3px;
  }

  .bb-cs-content p {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.6;
  }

  .bb-cs-progress {
    width: 220px;
    margin-top: 32px;
  }

  .bb-cs-note {
    font-size: 12px;
  }

  .bb-cs-glow-1 {
    width: 220px;
    height: 220px;
    left: -60px;
    top: 18%;
  }

  .bb-cs-glow-2 {
    width: 260px;
    height: 260px;
    right: -80px;
    bottom: 12%;
  }
}

@media (max-width: 420px) {
  .bb-cs-content h1 {
    font-size: 64px;
  }

  .bb-cs-content p {
    font-size: 15px;
  }

  .bb-cs-label {
    max-width: 92%;
    line-height: 1.5;
  }
}/* End custom CSS */