.contact {
      display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin-top: -10rem;
}

.contacttext {
        font-size: clamp(2.2rem, 7vw, 7rem);
    margin-bottom: 10px;
    font-family: "Quicksand", sans-serif;
    font-weight: 300;
}

.blueus {
  color: #0400ff;
}

.contactdes {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 200;
  font-size: clamp(1rem, 2vw, 2rem);
  line-height: clamp(1.6rem, 1.8vw, 3.6rem);
  margin: 0 auto; /* Center the description */
  max-width: 90%; /* Limit the width on mobile */
}

.con {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  margin-top: -15rem;
}

.con-container {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 3rem 2rem;
  width: 100%;
  max-width: 700px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: white;
  text-align: center;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.con-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.con-container p {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  color: #ccc;
}

/* Concern Form Styling */
.concern-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Input groups */
.concern-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Full width textarea group */
.concern-form .full-width {
  width: 100%;
}

/* Inputs & Textarea */
.concern-form input[type="text"],
.concern-form input[type="email"],
.concern-form input[type="tel"],
.concern-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgb(255, 255, 255);
  border-radius: 10px;
  font-family: inherit;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
  resize: none;
}

.concern-form input:focus,
.concern-form textarea:focus {
  border-color: #0400ff;
}

/* Button */

  .submit-button {
    display: inline-block;
    text-decoration: none;
    padding: 15px 30px;
    background-color: #007bff; /* Original blue color */
    color: white;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease; /* Smooth transition for the hover effect */
  }

  /* Hover effect: darken the background color */
  .submit-button:hover {
    background-color: #0056b3; /* A darker shade of blue */
  }