.hero {
  padding: 100px 60px;
  background: linear-gradient(to right, #fedbfc, #dd4ad1);
  text-align: center;
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}
.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #374151;
}
.hero input {
  padding: 12px 20px;
  width: 40%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  margin-right: 10px;
}
.hero .cta-btn {
  font-size: 16px;
}

 /* Lock scroll on body when modal is open */
  body.no-scroll {
    overflow: hidden;
  }

  /* Modal overlay with grey background */
  .landing-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }

  /* Modal content */
  .landing-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeInScale 0.3s ease-in-out;
  }

  .landing-modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
  }

  .landing-modal-content p {
    font-size: 1rem;
    color: #444;
  }

  .landing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  }

  .landing-actions .btn {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
  }

  .landing-actions .btn-primary {
  background-color: #007bff;
  color: white;
  border: 2px solid #007bff;
  }

    .landing-actions .btn-primary:hover {
background-color: #0056b3;
  }

  .landing-actions .btn-outline {
  background-color: white;
  border: 2px solid #333;
  color: #333;
  }

    .landing-actions .btn-outline:hover {
      background-color: #f1f1f1;
  }

  .email-signup-form {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .email-signup-form input[type="email"] {
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
  }

  .email-signup-form button {
    background-color: #28a745;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
  }

    .email-signup-form button:hover {
    background-color: #218838;
  }

  .email-form-inline {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.email-form-inline input[type="email"] {
  flex: 1;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  min-width: 200px;
}

.email-form-inline button {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 6px;
  background-color: #28a745;
  color: white;
  border: none;
  cursor: pointer;
}


  .email-thank-you {
    margin-top: 1rem;
    color: #28a745;
    font-weight: bold;
  }

  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @media (max-width: 480px) {
    .landing-modal-content {
      padding: 1.25rem;
    }

    .landing-modal-content h2 {
      font-size: 1.25rem;
    }

    .landing-modal-content p {
      font-size: 0.95rem;
    }

    .landing-actions .btn {
      font-size: 0.95rem;
      padding: 0.6rem 1rem;
      width: 100%;
    }

    .email-signup-form input[type="email"],
    .email-signup-form button {
      font-size: 0.95rem;
    }

      .email-form-inline {
    flex-direction: column;
    align-items: stretch;
  }

  .email-form-inline button {
    width: 100%;
  }

  }

.features {
  display: flex;
  justify-content: space-around;
  padding: 60px;
  background-color: white;
  align-items: center;
}

.feature-item {
  text-align: center;
  max-width: 200px;
  align-items: center;
}

.feature-item h3 {
  margin-top: 10px;
  font-weight: 600;
}
.categories {
  padding: 60px;
  background-color: #f1f5f9;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
}
.category-card {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  display:flex;
  align-items: center;
  justify-content:center;
  gap:8px;
}
.how-it-works {
  padding: 60px;
  background-color: white;
  text-align: center;
}
.steps {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}
.step {
  max-width: 180px;
}
.testimonials {
  padding: 60px;
  background-color: #f9fafb;
  text-align: center;
}

  .faq-section {
    max-width: 700px;
    margin: 3rem auto;
    padding: 0 1rem;
    font-family: Arial, sans-serif;
  }

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

  details {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #f9f9f9;
    transition: background-color 0.3s;
  }

  summary {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  details[open] {
    background-color: #f1f1f1;
  }

  summary::-webkit-details-marker {
    display: none;
  }

  .faq-arrow {
    transition: transform 0.3s ease;
  }

  details[open] .faq-arrow {
    transform: rotate(180deg);
  }

  .faq-content {
    margin-top: 0.5rem;
    color: #555;
    font-size: 0.95rem;
  }


    .cta-section {
    background-color: #1e3a8a; /* deep blue */
    color: white;
    text-align: center;
    padding: 20px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .cta-btn {
    background-color: #f59e0b; /* amber */
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .cta-btn:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    text-decoration: none;
  }

  .cta-btn:active {
    transform: scale(0.98);
  }

.information {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px; /* adjust for spacing */
  margin: 20px auto;
  padding: 1rem;
  max-width: 1000px;
}

.information div {
  flex: 1 1 200px; /* allows wrapping, sets min width */
  min-width: 150px;
  text-align: center;
}

.information a {
  text-decoration: none;
  color: inherit;
}


/* General icon size increase */
.features i {
  font-size: 36px; /* Increase icon size */
}

/* For specific icon sections (you can adjust individually if needed) */
.feature-item i, .category-card i {
  font-size: 40px;  /* Larger icons in feature section and category cards */
}

.step i {
  font-size: 30px;  /* Slightly smaller icons in the 'How It Works' section */
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero input {
    width: 100%;
    margin-bottom: 10px;
  }

  .hero .cta-btn {
    width: 100%;
  }

  .features {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
  }

  .categories {
    padding: 40px 20px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .how-it-works {
    padding: 40px 20px;
  }

    .information {
      gap: 10px;
    }

        .cta-section h2 {
      font-size: 1.5rem;
    }

    .cta-btn {
      padding: 10px 20px;
      font-size: 0.95rem;
    }

  .steps {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

}
