/* --- New styles to prevent header overlap and refine contact design --- */

/* Helper class to push non-hero sections down */
.content-section {
  padding-top: 120px; /* Adjust this value to match your header's height */
  padding-bottom: 80px;
}

/* Refined Contact Page Design */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 5%;
}

/* .contact-container {
  margin-bottom: 10px;
} */

.contact .section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.contact .section-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 600px;
}

/* Multi-Step Form Styling */
/* Multi-Step Form Styling */
.contact-form {
  background: var(--secondary-bg);
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-color);
  margin: 0 auto; /* <-- Added to center the form horizontally */
}

.contact-form label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: transparent;
  border: 2px solid var(--accent-color);
  padding: 0.75rem;
  border-radius: 5px;
  color: var(--text-color);
  font-size: 1rem;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 5px var(--accent-color);
}

.contact-form button {
  background: var(--accent-color);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  color: var(--primary-bg);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-end;
}

.contact-form button:hover {
  background: rgba(113, 88, 205, 0.926); /* slightly darker shade of the accent color */
}

/* Multi-Step Form Steps */
.form-step {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.form-step-active {
  display: flex;
}

/* Progress Indicator */
.form-progress {
  width: 100%;
  background: var(--primary-bg);
  border-radius: 5px;
  overflow: hidden;
  margin-top: 1rem;
}

.form-progress .progress-bar {
  height: 5px;
  width: 0%;
  background: var(--accent-color);
  transition: width 0.3s;
}

    /* Toast Container */
    #toast-container {
      position: fixed;
      top: 1rem;
      right: 1rem;
      z-index: 9999;
    }
    /* Toast Notification */
    .toast {
      background: rgba(50, 50, 50, 0.9);
      color: #fff;
      padding: 1rem 1.5rem;
      margin-bottom: 1rem;
      border-radius: 5px;
      font-family: 'Poppins', sans-serif;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      opacity: 0;
      transform: translateX(100%);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    /* When showing the toast */
    .toast.show {
      opacity: 1;
      transform: translateX(0);
    }
