.form-container {
  background-color: transparent;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group p {
  margin: 10px !important;
}

label {
  font-size: 14px;
  color: #fff;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  width: 100%;
  background: #fff;
}

textarea {
  resize: none;
  height: 100px;
}

input:focus,
textarea:focus {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.submit-wrapper {
		text-align:center;

}


input[type="submit"] {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
margin-left:50px;
}

input[type="submit"]:hover {
  background-color: #555;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #232323;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  /* Stack fields vertically and adjust spacing */
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  /* Full-width inputs on mobile */
  .form-group {
    width: 100%;
  }

  /* Hide the textarea and its label on mobile */
  #your-message, /* Targets the textarea */
  label[for="your-message"] { /* Targets the label for the textarea */
    display: none;
  }
	.area-text{
		display:none;
	}

  /* Center align submit button and note, remove extra space */
  .submit-wrapper {
    display: flex;
    flex-direction: column; /* Stack the button and note */
    align-items: center; /* Center horizontally */
    gap: 0px; /* Add spacing between button and note */
    margin: 20px 0; /* Reduce vertical spacing */
  }

  input[type="submit"] {
    margin-left: 60px; /* Remove extra margin */
margin-left:47px;
  }

  .form-note {
    text-align: center;
    margin: 0; /* Remove any additional margin */
  }
}



/* Contact form 2 styling from here */
/* Form Container */
.custom-form-container {
  background: rgba(0, 0, 0, 0.5); /* Transparent black background */
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto; /* Center align */
  text-align: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

label br{
	display: none;
}

/* Title Styling */
.custom-form-title {
  font-size: 40px;
  color: #fff;
/*   margin-bottom: 20px; */
  font-weight: bold;
}

/* Form Row for Name and Number */
.custom-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center; /* Align fields in center */
}

/* Individual Form Group */
.custom-form-group {
  flex: 1;
  text-align: left;
}

/* Label Styling */
.custom-form-group label {
  display: inline;
  color: #fff;
  font-size: 14px;
/*   margin-bottom: 5px; */
}

/* Input Fields */
.custom-input {
  padding: 10px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  width: 100%;
  outline: none;
  background: #fff;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	 
}

/* Textarea Specific */
.custom-input textarea {
  resize: none;
  height: 120px;
}

/* Submit Button Wrapper */
.custom-submit-wrapper {
  margin-top: 20px;
}

/* Submit Button */
.custom-submit {
  background-color: #4D9DFF !important;
  color: #fff;
  font-size: 16px;
  padding: 10px 30px;
  border: none;
  border-radius: 20px; /* 20px radius */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-submit:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  /* Stack fields vertically and adjust spacing */
  .custom-form-row {
    flex-direction: column;
    gap: 0;
  }

  /* Full-width inputs on mobile */
  .custom-form-group {
    width: 100%;
  }
.custom-form-container {
  background: #4D9DFF; /* Transparent black background */
  padding: 30px;
  border-radius: 10px;
/*   max-width: 600px; */
  margin: 0 ; /* Center align */
  text-align: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
	.custom-submit {
  background-color: #000000 !important;
	}
	
	.custom-form-container {
		border-radius: 0px;
	}
}
