:root {
  --dark-bg: #0b0d17;
  --card-bg: rgba(20, 23, 38, 0.6);
  --primary: #635bff;
  --accent-color: #00C2FF;
  --highlight-color: #FF6B6B;
  --text-light: #e1e1e6;
  --text-muted: #8b8ea5;
  --border: rgba(255, 255, 255, 0.1);
  --blur: blur(20px);
}

.navbar-nav .nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
  color: var(--text-light) !important;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color) !important;
}

.hero p {
  color: var(--text-muted);
}

.btn-primary {
  background-color: var(--primary);
  box-shadow: 0 0 15px #635bff66;
}

.features {
  background-color: #10182c;
  color: var(--text-light);
}

.feature-box {
  background-color: rgba(32, 36, 58, 0.7);
}

.pricing-card p {
  color: var(--text-muted);
}

.feature-icon {
  color: var(--accent-color);
}

.carousel-indicators [data-bs-target] {
  background-color: var(--primary);
}

.carousel-indicators .active {
  background-color: #fff;
}

footer {
  background-color: #1e2125;
  color: var(--text-muted);
}

.footer-link {
  color: var(--text-muted);
}

.footer-link:hover {
  color: #ffffff;
}


.navbar {
  background: rgba(0, 0, 0, 0.4);
  /* subtle glass look */
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.navbar-brand img {
  height: 32px;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  min-height: 100vh;
  color: #fff;
  background: radial-gradient(at bottom right, rgba(96, 112, 255, 0.1), transparent 70%),
    linear-gradient(to bottom, #05070d 0%, #0a0f26 30%, #1f2233 60%, #2c2f38 100%);
  background-blend-mode: overlay;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-image:
    linear-gradient(rgba(10, 20, 40, 0.6), rgba(0, 0, 0, 0.7)),
    url(https://lunova.app/dev/img/hero.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

.store-button {
  background-color: #fff;
  color: #000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.store-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--accent-color), 0 0 30px var(--accent-color);
}

.store-button:hover i {
  color: #fff !important;
}

.hero-overlay {
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(10, 10, 20, 0.5));
  z-index: 0;
}

/* Scroll down arrow */
.scroll-down {
  position: absolute;
  bottom: 20px;
  /* closer to the edge */
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  color: #fff;
  animation: bounce 2s infinite;
  z-index: 2;
  text-decoration: none;
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 10px);
  }
}


.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 4px 4px 10px black;
}

.hero p {
  font-size: 1.25rem;
  color: #ccc;
  max-width: 700px;
  margin: 1rem auto 2rem;
}

.btn-primary {
  background-color: #635bff;
  border: none;
  /* border-radius: 999px; */
  padding: 0.75rem 2rem;
  font-size: 1rem;
  box-shadow: 0 0 15px #635bff66;
}

.features {
  padding: 4rem 2rem;
  background-color: #10182c;
  animation: fadeInUp 1s ease;
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.feature-box {
  background-color: #1a1e2e;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.2s;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-showcase {
  background: linear-gradient(to bottom, #0a0f26, #151a2d);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 2rem;
}

.tablet-mockup {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 2rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.tablet-mockup:hover {
  transform: scale(1.02);
}

:root {
  --dark-bg: #0b0d17;
  --card-bg: rgba(20, 23, 38, 0.6);
  --primary: #635bff;
  --text-light: #e1e1e6;
  --text-muted: #8b8ea5;
  --border: rgba(255, 255, 255, 0.1);
  --blur: blur(20px);
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  padding: 8rem 2rem;
}

.pricing-card {
  background: var(--card-bg);
  backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
  max-width: 350px;
  width: 100%;
  color: var(--text-light);
}

.pricing-card.highlight {
  border-color: var(--primary);
  box-shadow: 0 0 0px var(--primary), 0 0 10px var(--primary);
  background: #191820;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
}

.pricing-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-card .divider {
  border-top: 1px dashed var(--border);
  margin: 1rem 0;
}

.pricing-card .price {
  font-size: 3.5rem;
  font-weight: 600;
  margin: 1rem 0;
  text-align: center;
}

.pricing-card .price .amount {
  background: linear-gradient(90deg, #fff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-card .price sup {
  font-size: 1rem;
  color: var(--text-light);
}

.pricing-card .subprice {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.pricing-card .btn {
  width: 100%;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.pricing-card ul li i {
  margin-right: 0.5rem;
  font-size: 1rem;
  color: var(--text-light);
  opacity: 0.8;
}

.lead {
  color: var(--text-muted);
  max-width: 600px;
  margin: 1em auto 4rem;
  text-align: center;
}

@media (min-width: 992px) {
  .pricing-cards {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .pricing-card {
    flex: 1 1 0;
    max-width: 300px;
  }

  .pricing-card.highlight {
    flex: 1.3 1 0;
    max-width: 360px;
    transform: scale(1.05);
    z-index: 1;
  }

  .pricing-card.highlight:hover {
    transform: scale(1.05) translateY(-5px);
  }
}

.video-demo {
  background: #c31432;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #240b36, #c31432);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #240b36, #c31432);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding: 4rem 2rem;
  text-align: center;
  animation: fadeIn 1.3s ease;
}

.video-demo video {
  border-radius: 1rem;
  max-width: 90%;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

footer {
  background-color: #111;
  color: #b0b3b8;
  padding: 3rem 2rem;
}

footer h6 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-link {
  color: #b0b3b8;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.features-highlight {
  background: linear-gradient(to bottom, #1b1f2b, #262a36);
  padding: 5rem 2rem;
  text-align: center;
}

.features-highlight h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #ffffff;
}

.feature-icon {
  font-size: 2.5rem;
  color: #635bff;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.feature-desc {
  font-size: 0.95rem;
  color: #a0a4b8;
  max-width: 300px;
  margin: 0 auto;
}

.carousel-item {
  transition: transform 0.8s ease-in-out;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #635bff;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
}

.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.2);
  background-color: #fff;
  /* Optional active color */
}

/* General Contact Section Styles */
.contact-section {
  padding: 4rem 0;
  color: white;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Form Container */
.form-container {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 2;
  position: relative;
}

/* Section Title */
.section-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

/* Section Description */
.section-description {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Form Styles */
.contact-form .form-control {
  padding: 1rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  background-color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.contact-form .form-control:focus {
  border-color: #2575fc;
  outline: none;
}

.contact-form .btn-primary {
  background-color: #2575fc;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.contact-form .btn-primary:hover {
  background-color: #1c64c1;
}

/* Contact Info Styles */
.contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .contact-form .form-control {
    font-size: 0.9rem;
    padding: 0.75rem;
  }

  .contact-form .btn-primary {
    font-size: 1rem;
    padding: 0.75rem;
  }

  .contact-info p {
    font-size: 0.9rem;
  }
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: none;
}

.wavy-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.25; /* optional */
  z-index: 0;
  pointer-events: none;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: none;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  background: #635bff;
  border: none;
  color: #fff;
  padding: inherit;
}

.back-to-top:hover {
  background: #4a45d1;
  text-decoration: none;
}