.elementor-8 .elementor-element.elementor-element-5ba1481{--display:flex;}.elementor-8 .elementor-element.elementor-element-8c4d043{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-3e32752 *//* ===== Form Container ===== */
body form {
  background: #ffffff;
  padding: 40px;
  max-width: 700px;
  margin: 30px auto;
  border-radius: 16px;
  border: 1px solid #0F6742;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
}

/* ===== Heading ===== */
body form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #08283a;
}

/* ===== Labels ===== */
body form label {
  font-weight: 600;
  color: #08283a;
  display: block;
  margin-top: 15px;
  font-size: 15px;
}

/* ===== Inputs, Select, Textarea ===== */
body form input[type="text"],
body form input[type="email"],
body form input[type="tel"],
body form input[type="number"],
body form input[type="file"],
body form select,
body form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #f7f7f7;
  font-size: 15px;
  color: #08283a;
  transition: all 0.3s ease;
}

/* ===== Focus Effect ===== */
body form input:focus,
body form textarea:focus,
body form select:focus {
  border-color: #0F6742;
  background: #ffffff;
  outline: none;
}

/* ===== Radio & Checkbox ===== */
body form .radio-group,
body form .checkbox-group {
  margin-top: 8px;
}

body form input[type="radio"],
body form input[type="checkbox"] {
  width: auto;
  margin-right: 6px;
  transform: scale(1.1);
}

/* ===== File Input ===== */
body form input[type="file"] {
  background: #ffffff;
  padding: 10px;
  cursor: pointer;
}

/* ===== Submit Button ===== */
body form button {
  margin-top: 25px;
  padding: 14px;
  width: 100%;
  background: linear-gradient(to right, #0F6742, #1f7f58);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

body form button:hover {
  background: linear-gradient(to right, #08283a, #0f3a50);
  transform: translateY(-2px);
}

/* ===== Radio Layout ===== */
body form .radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 8px;
}

body form .radio-group.two {
  grid-template-columns: repeat(2, 1fr);
}

body form .radio-group label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f7f7f7;
  cursor: pointer;
  font-weight: 500;
}

body form .radio-group label:hover {
  border-color: #0F6742;
}

/* ===== Two Fields in One Row ===== */
body form .two-fields {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap; /* responsive for mobile */
}

body form .two-fields .field {
  flex: 1;
}

body form .two-fields input,
body form .two-fields select,
body form .two-fields input[type="file"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #f7f7f7;
  font-size: 15px;
}

/* ===== Responsive for Mobile ===== */
@media (max-width: 768px) {
  body form .two-fields {
    flex-direction: column; /* Stack columns on mobile */
  }

  body form .radio-group {
    grid-template-columns: 1fr; /* Stack radio buttons */
  }

  body form button {
    font-size: 15px;
    padding: 12px;
  }
}
/* ===== Contacts Section ===== */
body form .contacts {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap; /* Mobile friendly */
  justify-content: space-between;
}

body form .contact-box {
  flex: 1 1 48%; /* 2 boxes side-by-side, responsive */
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #ccc;
  background-color: #f7f7f7;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s all ease;
}

/* Hover effect */
body form .contact-box:hover {
  border-color: #0F6742;
  background-color: #eaf6f0;
}

/* Specific borders for Easypaisa and JazzCash */
body form .contact-box.easypaisa {
  border-color: #2e7d32;
}

body form .contact-box.jazzcash {
  border-color: #f44336;
}

/* Contact Icons */
body form .contact-icon {
  width: auto;
  max-width: 80px; /* Adjust as needed */
  height: 80px;
  object-fit: contain;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  body form .contacts {
    flex-direction: column;
    gap: 15px;
  }

  body form .contact-box {
    flex: 1 1 100%;
  }

  body form .contact-icon {
    height: 60px;
  }
}/* End custom CSS */