/* 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%;
  }

  }

.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;
  }

.contact-icons {
  text-align: center;
}

.icons-row {
  display: flex;
  justify-content: center;
  gap: 20px; /* spacing between icons */
  align-items: center;
  margin-top: 10px;
}

.icons-row i {
  font-size: 1.5em;
  color: #555;
  transition: color 0.3s ease;
  cursor: pointer;
}

.icons-row a i:hover {
  color: #0077b5; /* default hover color (LinkedIn blue) */
}

.icons-row a[href*="facebook"] i:hover {
  color: #1877f2;
}

.icons-row a[href^="mailto"] i:hover {
  color: #d93025;
}