.formpopup {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 5000;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.form-right {
  /* overflow: scroll; */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-family: sans-serif;
  height: 100%;
  min-width: 500px;
}

#formHalfFields {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  /* row-gap: 10px; */
}
#formSubmitImg {
  /* width: 100%; */
  height: 70%;
  position: absolute;
  /* top: 0; */
  object-fit: contain;
  display: none;
}

.inner-cont {
  background-color: #ffffff29;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  max-width: 485px;
  width: 100%;
  position: relative;
  backdrop-filter: blur(12px);
  color: #fff;
}
.top-right-icon {
  font-size: 24px; /* Size of the icon */
  color: white; /* Color of the icon */
  z-index: 10; /* Ensure it stays on top of other elements */
  cursor: pointer; /* Indicates it's clickable */
  border-radius: 50%;
  width: 33px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;

  text-align: right;
  position: absolute;
  right: 10px;
  top: 10px;
}

.top-right-icon:hover {
  background-color: #e7e2e2bd;
}

.heading {
  /* color: #333; */
  font-size: 20px; /* Reduced font size */
  margin-bottom: 10px;
}

.subheading {
  color: #afafaf;
  font-size: 14px;
  margin-bottom: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.form-group {
  margin-bottom: 10px; /* Reduced margin */
  width: 100%;
}
#formHalfFields .form-group {
  width: 49% !important;
}

#formHalfFields .form-group:last-child {
  width: 100% !important;
}

.form-group label {
  display: block;
  font-size: 12px; /* Reduced font size */
  margin-bottom: 4px;
}

.required {
  color: red;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  background: transparent;
  color: #fff;
  outline: none;
  box-shadow: 0 0 1px #fff;
}

.contact-form input::placeholder {
  color: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.form-btn {
  text-align: center;
}

.submit-button {
  background-color: #aa3235;
  border: none;
  color: #fff;
  padding: 4px;
  border-radius: 10px;
  font-size: 19px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 70%;
}

.submit-button:hover {
  color: black;
  transition: all 0.3s ease-in;
}

label {
  font-weight: 550;
}

#option {
  color: black;
}

/* Changing the background color for the dropdown options on hover */
#project-duration option:hover {
  background-color: #b14141; /* Desired background color on hover */
  color: #fff; /* Text color on hover */
}

/* For screens with a max width of 500px */
@media (max-width: 500px) {
  .form-right {
    min-width: 100%; /* Full width for small screens */
  }

  .inner-cont {
    max-width: 100%; /* Full width for the form container */
    padding: 10px; /* Add padding to ensure spacing */
  }

  .top-right-icon {
    font-size: 18px; /* Adjust icon size */
    right: 5px;
    top: 5px;
  }

  .heading {
    font-size: 16px; /* Adjust font size for headings */
  }

  .submit-button {
    font-size: 16px; /* Adjust font size for button */
    width: 90%; /* Adjust button width */
  }

  .form-group label {
    font-size: 12px; /* Smaller label text */
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 12px; /* Smaller input text */
    padding: 10px; /* Adjust padding for inputs */
  }

  #formSubmitImg {
    height: 50%; /* Adjust image size */
  }

  /* Adjusting form layout */
  #formHalfFields .form-group {
    width: 100% !important; /* Stack fields vertically */
  }

  /* Optional: Adjust margins or spacing */
  .form-container {
    margin: 0 auto; /* Center the form container */
  }
}
.timezonecolor {
  color: black;
}

.images-home {
  background-color: #1a3a3612;
  width: 100%;
  height: 140px;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.home-foot-head {
  font-size: 20px;
  font-weight: 500;
  color: #31363f;
}
.images-home :nth-child(1) {
  font-weight: 700;
}
.images-home :nth-child(1) span {
  color: #76abae;
  font-weight: 700;
  font-size: large;
}
