/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 15 2025 | 18:47:47 */
/* ✅ Wrapper Card for ALL WPForms Forms */
.wpforms-container {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 700px;
  margin: 40px auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

/* ✅ Optional Title Above All Forms */
.wpforms-container::before {
  content: "Send us your Enquiry";
  display: block;
  font-size: 26px;
  color: #003366;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

/* ✅ Input, Select, Textarea styling */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form select,
.wpforms-form textarea {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1px solid #ccc !important;
  border-radius: 6px !important;
  margin-bottom: 16px !important;
  font-size: 16px !important;
  box-sizing: border-box;
  background-color: #fff !important;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

/* ✅ Focus & Hover Effects */
.wpforms-form input:hover,
.wpforms-form input:focus,
.wpforms-form textarea:hover,
.wpforms-form textarea:focus,
.wpforms-form select:hover,
.wpforms-form select:focus {
  border-color: #003366 !important;
  box-shadow: 0 0 0 2px rgba(0, 51, 102, 0.2);
  outline: none;
}

/* ✅ Labels */
.wpforms-form label {
  font-weight: 600 !important;
  margin-bottom: 6px !important;
  display: block !important;
  color: #003366 !important;
  font-size: 15px !important;
}

/* ✅ Remove floating sub-labels */
.wpforms-field-sublabel {
  display: none !important;
}

/* ✅ First/Last Side-by-Side Layout */
.wpforms-field-row {
  display: flex !important;
  flex-wrap: wrap;
  gap: 20px;
}
.wpforms-one-half {
  flex: 1 1 48% !important;
}

/* ✅ Submit Button */
.wpforms-submit {
  background-color: #003366 !important;
  color: #fff !important;
  padding: 12px 28px !important;
  border-radius: 6px !important;
  border: none !important;
  font-size: 16px !important;
  cursor: pointer !important;
  transition: background 0.3s ease-in-out;
}
.wpforms-submit:hover {
  background-color: #002244 !important;
}
