/* Modal Container */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: 10vh auto;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  max-height: 80vh;
  overflow-y: auto;
}

/* Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
}

.close:hover {
  color: #333;
}

/* Form Style */
.form {
  display: flex;
  flex-direction: column;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Button Style */
.sthbtn {
  background-color: #F1592A !important;
  color: white !important;
  border: 1px solid #F1592A;
  border-radius: 9px;
  padding: 15px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sthbtn:hover {
  background-color: #f5f5f5 !important;
	color: #F1592A !important;
	
}

#enquiryButton {
  background-color: #F1592A;
  border: 1px solid #F1592A;
  color: white;
  padding: 13px 33px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 18px;
  position: relative;
  left: 8px;
  border-radius: 3px;
  font-weight: 400;
  transition: background-color 0.3s, color 0.3s, font-weight 0.3s;
}

#enquiryButton:hover {
  background-color: #F5F5F5; 
  color: #F1592A; 
	border:1px solid #F1592A;
  cursor: pointer;
}
