@media (max-width: 767px) {
  .prelaunch-cta {
    margin: 0 20px;
    border-radius: 30px;
  }
}

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

html {
  scroll-behavior: smooth;
}

.success-overlay2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.success-content2 {
  background-color: #27272f;
  padding: 20px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.success-icon {
  color: #bcfb6c;
  font-size: 24px;
}

.success-text {
  font-weight: 500;
  color: #bcfb6c;
  font-size: 16px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.gradient-number {
  font-size: 250px;
  font-weight: 800;
  font-weight: bold;
  background: linear-gradient(to bottom, #bcfb6c, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin: 0 8px;
  opacity: 0.5;
}

.reason-text {
  font-size: 28px;
  font-weight: 600;
  color: #b3b3b3;
  margin-top: 10px;
}

.steps-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
  padding: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step img {
  max-width: 200px;
  margin-top: 20px;
}

.navbar {
  transition: top 0.3s ease-in-out;
}

.navbar {
  transition: background-color 0.4s ease;
}

.navbar.transparent {
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgb(0, 0, 0) !important;
}

.feature-img h3 {
  color: #ffffff;
}

section {
  margin-bottom: 120px;
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #bcfb6c;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}



/* Enhanced Modal Styles */
.modal-content {
  background: linear-gradient(160deg, #0f0f0f 0%, #1b1b1b 50%, #0d1421 100%);
}

@keyframes modalSlideIn {
  0% {
    transform: translateY(-100px) scale(0.8);
    opacity: 0;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.bell-icon {
  position: relative;
  display: inline-block;
}

.bell-icon::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle,
      rgba(188, 251, 108, 0.3) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Enhanced Form Inputs */
.form-control-enhanced {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(188, 251, 108, 0.2);
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 15px;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.form-control-enhanced:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #bcfb6c;
  box-shadow: 0 0 0 3px rgba(188, 251, 108, 0.15),
    0 8px 25px rgba(188, 251, 108, 0.1);
  transform: translateY(-2px);
}

.form-control-enhanced::placeholder {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.form-control-enhanced:focus::placeholder {
  color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.floating-label {
  position: relative;
  margin-bottom: 25px;
}

.floating-label label {
  position: absolute;
  top: 15px;
  right: 20px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  font-size: 16px;
}

.floating-label input:focus+label,
.floating-label input:not(:placeholder-shown)+label {
  top: -18px;
  right: 15px;
  font-size: 12px;
  color: #bcfb6c;
  background: #0f0f0f;
  padding: 0 8px;
}

.beta-card {
  background: linear-gradient(135deg,
      rgba(188, 251, 108, 0.1) 0%,
      rgba(45, 211, 111, 0.1) 100%);
  border: 1px solid rgba(188, 251, 108, 0.3);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.beta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
}

.beta-card:hover {
  transform: translateY(-5px);
  border-color: rgba(188, 251, 108, 0.5);
}

/* Enhanced Submit Button */
.btn-enhanced {
  background: #bcfb6c;
  border: none;
  padding: 16px 30px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}

.btn-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.5s;
}

.btn-enhanced:hover::before {
  left: 100%;
}

.btn-enhanced:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.btn-enhanced:active {
  transform: translateY(-1px);
}

@keyframes checkmarkDraw {
  0% {
    width: 0;
    height: 0;
  }

  50% {
    width: 0;
    height: 35px;
  }

  00% {
    width: 20px;
    height: 35px;
  }
}

.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(18, 18, 18, 0.3);
  border-radius: 50%;
  border-top-color: #121212;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-close-enhanced {
  color: #bcfb6c;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .modal-dialog {
    margin: 10px;
  }

  .modal-content {
    border-radius: 25px;
  }
}

[dir="rtl"] .floating-label label {
  right: 20px;
  left: auto;
}

[dir="rtl"] .floating-label input:focus+label,
[dir="rtl"] .floating-label input:not(:placeholder-shown)+label {
  right: 15px;
  left: auto;
}

@keyframes fadeInScale {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.text-features span,
p {
  color: #fff;
}

.jewel-icon svg {
  width: 70px;
  height: 70px;
}

.hero-section #investh span {
  font-weight: 500;
  font-size: 70px;
  line-height: 100px;
}

@media (max-width: 768px) {
  .hero-section #investh span {
    font-size: 42px;
    line-height: 65px;
  }
}

@media (max-width: 480px) {
  .hero-section #investh span {
    font-size: 38px;
    line-height: 60px;
  }
}

@media (max-width: 576px) {
  .sub-text {
    font-size: 14px !important;
    line-height: 1.6;
  }
}

body.rtl {
  direction: rtl;
  text-align: right;
}

body.ltr {
  direction: ltr;
  text-align: left;
}

body.rtl .feature-text {
  text-align: right !important;
}

body.ltr .feature-text {
  text-align: left !important;
}

@media (max-width: 767px) {
  .feature-text span {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
  }

  .feature-text h3 {
    font-size: 32px;
    line-height: 44px;
    font-weight: 700;
    margin: 10px 0;
  }

  .feature-text p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    color: #fff;
  }
}

.hero2-section {
  display: flex;
  height: 50vh;
  width: 100%;
  background-image: url("../img/images1.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.image-side {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.content-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  color: black;
}

.main-text {
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}

.cta-button {
  background: #000;
  color: #fff;
  border: none;
  padding: 18px 40px;
  font-size: 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background-color: #fff;
  color: #000;
}

.cta-button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero2-section {
    flex-direction: column;
    height: auto;
  }

  .image-side {
    height: 50vh;
  }

  .content-side {
    padding: 40px 20px;
  }

  .main-text {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

/* Animation for floating effect */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(-15deg);
  }

  50% {
    transform: translateY(-10px) rotate(-15deg);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0px) rotate(10deg);
  }

  50% {
    transform: translateY(-15px) rotate(10deg);
  }
}

.content-side {
  position: relative;
  background-color: #a5e85a;
  color: #121212;
  overflow: hidden;
}

.content-side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/images1.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.19;
  z-index: 0;
}

.content-side>* {
  position: relative;
  z-index: 1;
}

#waiting-btn2,
#get-started-btn {
  background-color: #121212;
  color: #fff;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
}

#waiting-btn2:hover {
  background-color: #fff;
  color: #121212;
  transform: scaleY(1.1);
}

#get-started-btn:hover {
  background-color: #fff;
  color: #121212;
  transform: scaleY(1.1);
}

.get-started-btn {
  background-color: #121212;
  color: #fff;
  border-radius: 16px;
  border: none;
}

.ticker {
  --speed: 15s;
  --height: 3.2rem;
  position: relative;
  overflow: hidden;
  height: var(--height);
  line-height: var(--height);
  background: #a5e85a;
  color: #000;
  mask-image: linear-gradient(to right,
      transparent 0,
      black 10%,
      black 90%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
      transparent 0,
      black 10%,
      black 90%,
      transparent 100%);
}

.ticker::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/images1.svg") center/cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.ticker .track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: scroll var(--speed) linear infinite;
}

.ticker .item {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 1rem;
}

.ticker .dot {
  opacity: 0.6;
  margin: 0 1rem;
}

.ticker:hover .track {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-250%);
  }
}




@media (max-width: 576px) {
  .ticker {
    --speed: 10s;
  }

  @keyframes scroll {
    from {
      transform: translateX(100%);
    }

    to {
      transform: translateX(-50%);
    }
  }
}

@media (min-width: 577px) and (max-width: 992px) {
  .ticker {
    --speed: 15s;
  }

  @keyframes scroll {
    from {
      transform: translateX(100%);
    }

    to {
      transform: translateX(-250%);
    }
  }
}

