.contact-us .cont-details p i {
  margin-right: 10px;
}

.contact-us .cont-para {
    color: var(--default-color);
    text-align: left; /* Ensure text is aligned to the left */
}

.contact-us .cont-details p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--default-color);
    text-align: left; /* Ensure text is aligned to the left */
}

.contact-us .cont-details p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-us .cont-details a.mail {
    color: var(--primary-color);
    text-decoration: none;
    text-align: left; /* Ensure text is aligned to the left */
}

.contact-us .cont-details a.mail:hover {
    text-decoration: underline;
}

.contact-us .cont-details .field {
    display: inline-block;
    flex: 1;
    text-align: left; /* Ensure text is aligned to the left */
}

.contact-banner {
  background: rgba(245, 245, 245, 0.8); /* Updated background color */
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: center;
  color: #fff;
  padding: 10vh;
  margin-top: 30px;
  min-height: 34vh;
  text-align: left; /* Ensure text is aligned to the left */
}

.contact-banner .contact-info h5 {
  font-size: 45px;
  border-left: 5px solid var(--primary-color);
  padding-left: 10px;
  text-align: left; /* Ensure text is aligned to the left */
}

.contact-us .contact-block {
  z-index: 2;
  text-align: left; /* Ensure text is aligned to the left */
}

.contact-us .form-floating label {
  color: #000;
  text-align: left; /* Ensure text is aligned to the left */
}

.contact-us .cont-details {
  z-index: 2;
  text-align: left; /* Ensure text is aligned to the left */
}

.contact-us .cont-details i {
  margin-right: 10px;
}

.common_bg {
  background: url("../images/about-bg.jpg") fixed no-repeat;
  background-position: bottom;
  background-size: cover;
  min-height: 100vh;
  position: relative;
}
.common_bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(245, 245, 245, 0.8);
  z-index: 1;
}/*# sourceMappingURL=custom_styles.css.map */

/* Style the form container */
.custom-webform {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
}

/* Style input fields */
.custom-webform input[type="text"],
.custom-webform input[type="email"],
.custom-webform textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px; /* Adjust margin to ensure 20px space between fields */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background: #fff;
    outline: none;
}

/* Style the submit button */
.custom-webform input[type="submit"] {
    background: #00c1f4;
    color: black; /* Change the label text color to black */
    border: none;
    padding: 0 10px; /* Adjust padding to fit the text with some space */
    height: 35px; /* Set the height of the button */
    font-size: 16px; /* Adjust font size to make the button smaller */
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    width: auto; /* Ensure the button width fits the text */
    display: inline-block; /* Ensure the button width fits the text */
    font-weight: normal; /* Ensure the text is not bold */
    line-height: 18px; /* Ensure the text is vertically centered */
}

/* Hover effect on the button */
.custom-webform input[type="submit"]:hover {
    background: #009ec3;
}

/* Remove default label styling */
.custom-webform label {
    display: none;  /* Hides labels, assuming placeholders are sufficient */
}

/* Style the textarea */
.custom-webform textarea {
    resize: none;
    height: 120px;
}

/* Adjust form padding and layout */
.contact-right {
    display: flex;
    justify-content: center;
}