/* === Hero Section === */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  background: #1e1a42;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(142, 117, 255, 0.15);
  margin-bottom: 3rem;
}

.hero-left {
  flex: 1;
  max-width: 600px;
}

.hero-left h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}

.hero-left h1 .highlight {
  color: #8e75ff;
}

.hero-left p {
  font-size: 1.25rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn {
  background: #8e75ff;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.hero-btn:hover {
  background: #a18cff;
  transform: translateY(-2px);
}

.hero-btn.premium {
  background: transparent;
  border: 2px solid #a18cff;
  color: #a18cff;
  box-shadow: 0 0 8px rgba(218, 92, 255, 0.5), 0 0 16px rgba(218, 92, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.hero-btn.premium:hover {
  background: rgba(218, 92, 255, 0.1);
  color: white;
  box-shadow: 0 0 12px rgba(218, 92, 255, 0.7), 0 0 20px rgba(218, 92, 255, 0.6);
  border-color: #a18cff;
}


.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  animation: float 2.5s ease-in-out infinite alternate;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}

/* === Features Grid === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.feature-box {
  background: #1e1a42;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(142, 117, 255, 0.05);
  transition: transform 0.2s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
}

.feature-box h3 {
  color: #8e75ff;
  margin-bottom: 0.75rem;
}

.feature-box p {
  color: #ccc;
}

/* === Infinite Logo Carousel === */
.logos {
  display: flex;
  overflow: hidden;
  background: #161336;
  padding: 2rem 0;
  position: relative;
}

.logos-slide {
  display: flex;
  animation: scroll 20s linear infinite;
}

.logo-box {
  height: 80px;
  width: 80px;
  background: linear-gradient(135deg, #8e75ff 0%, #4e3a96 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin: 0 1rem;
  overflow: hidden;
}


.logo-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.logo-box img {
  max-height: 60px;
  max-width: 60px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.logo-box img:hover {
  transform: scale(1.1);
}


@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

/* === Promo Banner === */
.promo-banner {
  background-color: #2a2652;
  color: white;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-top: 1px solid #3b3566;
  border-bottom: 1px solid #3b3566;
}

.promo-banner .highlight-text {
  color: #8e75ff;
  font-weight: bold;
}

.promo-btn {
  display: inline-block;
  margin-left: 1rem;
  background-color: #8e75ff;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.promo-btn:hover {
  background-color: #a18cff;
}

/* === Tagline === */
.tagline-centered {
  text-align: center;
  font-size: 2.5rem;
  color: #8e75ff;
  margin: 2rem 0 3rem;
  font-weight: 700;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


 .modal.hidden {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: #1e1a42;
  color: #fff;
  padding: 2rem;
  border-radius: 1.25rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid #8e75ff;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #8e75ff;
}

.modal-content p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="password"],
.modal-content input[type="number"] {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 8px;
  background: #2a2652;
  color: white;
  font-size: 1rem;
}

.modal-content button {
  background-color: #8e75ff;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.modal-content button:hover {
  background-color: #a18cff;
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.coming-soon-tag {
  font-size: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 3px 10px;
  margin-left: 10px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.coming-soon-tag:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}




/* === Mobile Styles === */
@media screen and (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-left p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .hero-btn {
    width: 90%;
    font-size: 1rem;
    text-align: center;
  }

  .hero-right {
    justify-content: center;
    width: 100%;
  }

  .hero-logo {
    max-width: 80%;
    height: auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .feature-box {
    padding: 1.5rem;
  }

  .tagline-centered {
    font-size: 1.75rem;
    padding: 0 1rem;
  }

  .promo-banner {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    flex-direction: column;
  }

  .promo-btn {
    margin: 0.75rem 0 0;
    width: 100%;
    text-align: center;
  }

  .logo-box {
    height: 60px;
    width: 60px;
    margin: 0 0.5rem;
  }

  .logo-box img {
    max-height: 45px;
    max-width: 45px;
  }
}



/* Hide/show logo depending on screen size */
.mobile-logo {
  display: none;
}

.desktop-logo {
  display: block;
}

@media screen and (max-width: 768px) {
  .hero-right {
    display: none;
  }

  .mobile-logo {
    display: block;
    max-width: 380px;
    margin: 1rem auto;
    height: auto;
  }

  .desktop-logo {
    display: none;
  }
}
