/* Background for Hero Section */
.hero-background {
  background: url('background.png') center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: brightness(0.7);
}

/* Icons in Feature Section */
.box img {
  transition: transform 0.3s ease;
}

.box img:hover {
  transform: scale(1.1);
}

/* Form Styling */
form {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
}











.form-section {
  background: url('form-background.png') center/cover no-repeat;
  padding: 50px 0;
  color: white;
  text-align: center;
  position: relative;
}

.form-section form {
  background-color: #141414; /* Set a solid gray background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: for a subtle shadow effect */
  color: white; /* Ensures form text is white */
}


















h1, h2, h3, h4, h5, h6, p, .input-field, .submit-btn {
  background: linear-gradient(45deg, #3498db, #8e44ad, #ff8c00); /* Gradient with blue, purple in the middle, orange on the right */
  -webkit-background-clip: text; /* Clip the gradient to the text */
  background-clip: text; /* Ensure text gets the gradient */
  color: transparent; /* Make the text color transparent to show the gradient */
}




/* Form Input Fields */
.input-field {
  background-color: #333;
  color: white;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #444;
  margin: 10px 0;
  width: 100%;
}

.input-field::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Submit Button */
.submit-btn {
  background-color: #8e44ad;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #732d91;
}

/* Optional: Navbar or other elements */
.navbar, .footer {
  background: linear-gradient(45deg, #3498db, #8e44ad, #ff8c00); /* Apply gradient to nav/footer */
  padding: 20px;
  text-align: center;
  color: white;
}

