.elementor-1525 .elementor-element.elementor-element-a974c29, .elementor-1525 .elementor-element.elementor-element-a974c29 > .elementor-background-overlay{border-radius:127px 127px 127px 127px;}.elementor-1525 .elementor-element.elementor-element-a974c29{box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);}/* Start custom CSS for html, class: .elementor-element-a528edb *//* ---------- GLOBAL ---------- */
body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-light);
  margin: 0;
  padding: 40px 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

form {
  background: #fff;
  padding: 35px 40px;
  border-radius: 18px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 950px;
  box-sizing: border-box;
  animation: fadeIn 0.5s ease-in-out;
}

h2, h3 {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 25px;
}

/* ---------- FORM LAYOUT ---------- */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1;
  min-width: 260px;
}

label {
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fff;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 6px rgba(253, 126, 20, 0.3);
  outline: none;
}

/* ---------- SERVICES CHECKBOX ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.services label {
  font-weight: 500;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.services label:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary-dark);
}

/* ---------- TABLE ---------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 15px;
  border-radius: 10px;
  overflow: hidden;
}

th, td {
  border: 1px solid #ddd;
  padding: 10px;
}

th {
  background: #f3f3f3;
  text-align: left;
}

/* ---------- BUTTONS ---------- */
.button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

button {
  background: var(--primary);
  color: white;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ---------- MODAL ---------- */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,

/* 🌟 Tailor Measurement Form – Custom CSS */
body {
  background: #f7f7f7;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

form {
  max-width: 800px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Heading Styles */
h2 {
  text-align: center;
  color: #222;
  margin-bottom: 25px;
  font-weight: 600;
}

h3 {
  margin-top: 40px;
  color: #444;
  border-bottom: 2px solid #fd7e14;
  padding-bottom: 6px;
  display: inline-block;
}

/* Label + Input Styles */
label {
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  color: #333;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
  font-size: 15px;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #fd7e14;
  box-shadow: 0 0 6px rgba(253, 126, 20, 0.3);
}

/* Form Row Grid */
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  margin-bottom: 25px;
}

table th,
table td {
  border: 1px solid #eee;
  padding: 10px;
  text-align: left;
}

table th {
  background: #fd7e14;
  color: #fff;
  font-weight: 500;
}

table td input {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding: 6px;
  width: 100%;
}

table td input:focus {
  border-bottom-color: #fd7e14;
}

/* Button Styling */
button[type="submit"],
button {
  background: #fd7e14;
  color: #fff;
  font-size: 16px;
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}

button[type="submit"]:hover,
button:hover {
  background: #e96c0c;
  transform: scale(1.03);
}

/* Modal Preview (Optional Enhancement) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  max-width: 700px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close {
  float: right;
  font-size: 20px;
  color: #333;
  cursor: pointer;
}

.close:hover {
  color: #fd7e14;
}

/* Responsive Design */
@media (max-width: 600px) {
  form {
    padding: 25px;
  }

  h2 {
    font-size: 20px;
  }

  table th,
  table td {
    font-size: 14px;
  }

  button[type="submit"] {
    width: 100%;
  }
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px 25px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 6px;
  margin-top: 5px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 5px;
  margin-top: 4px;
}

.services label {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 4px 6px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.25s ease;
}


table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px; /* rows ke beech gap */
  font-size: 15px;
}

th {
  background: #fd7e14;
  color: white;
  padding: 10px;
  text-align: left;
  border: none;
}

td {
  background: #fff;
  padding: 10px 12px;
  border: 1px solid #f1f1f1;
  vertical-align: middle;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

td:first-child {
  font-weight: 600;
  color: #333;
  width: 50%;
  background: #fff8f2;
  border-right: none;
}

td input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.2s;
}

td input:focus {
  border-color: #fd7e14;
  box-shadow: 0 0 4px rgba(253, 126, 20, 0.3);
  outline: none;
}/* End custom CSS */