body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8f9fa;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.7rem;
  letter-spacing: 1px;
  color: #4f46e5 !important;
}

.hero {
  background: linear-gradient(90deg, #4f46e5 60%, #6366f1 100%);
  color: #fff;
  padding: 160px 0 160px 0;
  min-height: 700px;
  height: 700px;
}
.hero-img-wrapper {
  margin-top: 32px;
}
.hero-img {
  max-width: 100%;
  height: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(79,70,229,0.10);
  background: #fff;
  object-fit: cover;
  display: block;
}

@media (min-width: 992px) {
  .hero {
    min-height: 700px;
    height: 700px;
  }
  .hero-img {
    height: 100%;
    max-height: 100%;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 80px 0 60px 0;
    min-height: 320px;
    height: auto;
  }
  .hero-img {
    max-width: 260px;
    height: auto;
  }
}

.btn-luminous, .btn-luminous-custom {
  background: linear-gradient(90deg, #6366f1 0%, #4f46e5 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(79,70,229,0.12);
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.btn-luminous:hover, .btn-luminous:focus, .btn-luminous-custom:hover, .btn-luminous-custom:focus {
  background: linear-gradient(90deg, #4f46e5 0%, #6366f1 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(79,70,229,0.18);
  transform: translateY(-2px) scale(1.04);
}

.feature-icon {
  font-size: 2.5rem;
  color: #4f46e5;
  margin-bottom: 15px;
}

.cta-section-custom {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(79,70,229,0.08);
  padding: 40px 20px;
  margin: 40px auto;
  text-align: center;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer {
  background: #4f46e5;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}

/* Modal Styles */
.modal-custom {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0,0,0,0.4);
  justify-content: center;
  align-items: center;
}
.modal-custom.show {
  display: flex;
}
.modal-content-custom {
  background: #fff;
  margin: auto;
  padding: 2rem 2.5rem 1.5rem 2.5rem;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(79,70,229,0.18);
  text-align: center;
  position: relative;
  min-width: 320px;
  max-width: 90vw;
}
.close-modal {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2rem;
  color: #6366f1;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s;
}
.close-modal:hover {
  color: #4f46e5;
}
.input-email-custom {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #c7d2fe;
  border-radius: 24px;
  font-size: 1rem;
  margin-top: 1rem;
  outline: none;
  transition: border 0.2s;
}
.input-email-custom:focus {
  border: 1.5px solid #6366f1;
}
.success-message-custom {
  color: #22c55e;
  font-weight: 600;
  margin-top: 1.2rem;
}

.navbar-nav {
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    text-align: right;
  }
  .navbar-nav {
    justify-content: flex-end !important;
    width: 100%;
  }
} 