/* General Styles */
body {
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1e1e1e;
    max-width: 1800px;
    background-color: #03000b;
  
  }

  /* in main.css (or styles.css) */
@keyframes fadeUp {
   from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(100px);
  will-change: opacity, transform;
}

.fade-up.animate {
  /* When .animate is added, play the keyframe */
  animation: fadeUp var(--duration, 0.3s) ease-out var(--delay, 0s) both;
}

  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Header */
  .header {
    background-color: #0a011e;
    width: 100%;
    max-width: 1800px;
    padding: 1rem 0;
    position: fixed;
    z-index: 1000;
    /* box-shadow: 0 4px 100px #29008d; */
  }

  nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
  }
  
  .logo {
    font-weight: bold;
    color: #2e2e2e;
    font-size: 1.2rem;
  }

  .logo img{
    /* height: 40px; */
    vertical-align: middle;
    width: 150px;
    margin: 0px;
  }
  
  /* Hero Section */
  .hero {
    /* background-color: #060118; */
    color: #29008d;
    padding: 4rem 0;
    padding-top: 180px;
    box-shadow: 0px 0.1px 0px #f9f9f9; /* Simulates a very slim border */
  }
  
  .hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  
  .hero-text {
    text-align: center;
    width: 100;
    margin: auto;
    /* flex: 1; */
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color:  #fff;
 
  }
  
  .hero-text p {
    color: #c2c2c2;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .btn-primary {
    background-color: #29008d;
    border: none;
    padding: 0.75rem 1.5rem;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
  }
  
  .btn-secondary {
    background-color: #1f1f34;
    /* border: 1px solid #d2ff00; */
    border: none;
    padding: 0.75rem 1.5rem;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    text-decoration: none;
  }

  .btn-primary-light,
.btn-secondary {
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-light:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.feature-card .icon {
  display: inline-block;
  transition: transform 0.3s;
}

.feature-card:hover .icon {
  transform: rotate(20deg) scale(1.2);
}
  
  .hero-image img {
    width: 100%;
    max-width:800px;
    border-radius: 12px;
  }
  
  /* Features Section */
  .features {
    padding: 4rem 0;
    /* background-color: #fff; */
    text-align: center;
    box-shadow: 0px 0.1px 0px #f9f9f9; 
  }
  
  .features h2 {
    color: #fff;
    margin-bottom: 3rem;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }
  
  .feature-card {
    background: #1f1f34;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  .feature-card .icon {
    font-size: 2rem;
    /* background: #d2ff00; */
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  
  .feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #fff;
  }
  
  .feature-card p {
    color: #b7b5b5;
  }
  
  .cta-bottom {
    margin-top: 3rem;
  }
  
  .btn-primary-dark {
    background-color: #29008d;
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 6px;
  }
  
  .btn-primary-light{
    background-color: #d2ff00;
    color: #29008d;
    border: none;
    padding: 0.9rem 2rem;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 6px;
    text-decoration: none;
  }



  /* Steps Section */
.steps-section {
    padding: 4rem 0;
    /* background-color: #fff; */
    text-align: center;
    box-shadow: 0px 0.3px 0px #f9f9f9cf; 
  }
  
  .section-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 2rem;
  }
  
  .steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .step-card {
    background: #1f1f34;
    border-radius: 10px;
    color: #f9f9f9;
    padding: 2rem;
    width: 260px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #29008d;
  }
  
  .step-number {
    background-color: #29008d;
    color: #d2ff00;
    width: 40px;
    height: 40px;
    font-weight: bold;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .cta-center {
    margin-top: 1.5rem;
  }
  
  /* Highlight Section */
  .highlight-section {
    /* background-color:#d2ff00; */
    color: #fff;
    padding: 4rem 0;
    box-shadow: 0px 0.1px 0px #f9f9f9; 
  }
  
  .highlight-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
  }
  
  .highlight-text {
    flex: 1;
    min-width: 300px;
  }
  
  .highlight-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
  }
  
  .highlight-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .highlight-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
  }

   .highlight-list li p{
    color: #c4c4c4;
    font-size: 1rem;
    margin: 0;
   }
  
  .highlight-list .icon {
    /* background: #29008d; */
    color: #000;
    border-radius: 50%;
    padding: 0.5rem;
    font-size: 1.2rem;
    display: inline-block;
    width: 32px;
    height: 32px;
    text-align: center;
    background-color: #1a1a9f;
  }
  
  .btn-secondary-dark {
    /* background-color: #fff; */
    color: #d2ff00;
    padding: 0.8rem 1.8rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .highlight-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  
  .highlight-image img {
    max-width: 100%;
    border-radius: 12px;
  }

  /* Testimonials Section */
.testimonials-section {
    /* background: #fff; */
    padding: 4rem 0;
    text-align: center;
    box-shadow: 0px 0.1px 0px #f9f9f9; 
  }
  
  .testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .testimonial-card {
    /* background: #f9f9f9; */
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
  }
  
  .testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .testimonial-header .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
  
  .testimonial-quote {
    font-style: italic;
    color: #c4c4c4;
    margin-bottom: 1rem;
  }
  
  .stars {
    color: #ffc107;
    font-size: 1.2rem;
  }
  
  /* Waitlist Section */
  .waitlist-section {
    /* background-color: #29008d; */
    text-align: center;
    padding: 4rem 1rem;
    box-shadow: 0px 0.1px 0px #f9f9f9; 
  }
  
  .waitlist-heading {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .waitlist-subtext {
    color: #bcbcbc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .waitlist-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  
  .email-input {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    width: 300px;
  }
  
  .privacy-note {
    font-size: 0.8rem;
    color: #c1c1c1;
    margin-top: 0.5rem;
  }
  
  .waitlist-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  
  .waitlist-stats div {
    text-align: center;
    color: #d2ff00;
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .waitlist-stats small {
    display: block;
    font-size: 0.9rem;
    color: #fff;
  }
  
  .faq-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .faq-section h1 {
    font-size: 28px;
    color: #1a1a9f;
    margin-bottom: 30px;
  }
  
  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .faq-item {
    /* background: #f8f9fa; */
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
  }
  
  .faq-question {
    background: none;
    border: none;
    font-weight: bold;
    font-size: 16px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    color: #2e2eec;
    padding: 10px  20px;
    
  }
  
  .faq-answer {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    padding: 10px 20px;
    border-top: #cfcece solid 1px;
  }
  
  .footer {
    background-color: #0d0d16;
    color: #e0e0e0;
    padding: 40px 20px 20px;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
  }
    .footer-logo{
    width: 150px;

  }

  .footer-logo img{
    width: 100%;
    height: auto;
    vertical-align: middle;
    margin: 0px;

  }
  .footer-col {
    flex: 1 1 200px;
    margin: 10px;
  }
  
  .footer-col h3,
  .footer-col h2 {
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin: 8px 0;
  }
  
  .footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
  }
  
  .footer-col .subscribe-form {
    display: flex;
    margin-top: 10px;
  }
  
  .subscribe-form input[type="email"] {
    padding: 8px;
    border: 1px solid #707070;
    border-radius: 4px 0 0 4px;
    flex: 1;
    background-color: #383838;
    outline: none;
    color: #fff;
  }
  
  .subscribe-form button {
    background-color: #d9f64f;
    border: none;
    padding: 8px 12px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: bold;
    color: #29008d;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    color: #888;
    font-size: 12px;
  }
  
  .brand {
    /* background: #d9f64f; */
    color: #000000;
    font-weight: bold;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 20px;
  }
  
  .social-icons a {
    margin-right: 10px;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
  }

@media (max-width: 768px) {
  header .navbar .btn-primary-light {
    display: none;
  }

  .hero{
    padding-top: 120px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn-primary {
    margin-bottom: 1rem;
  }
 
}





