@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@600&display=swap');

/* Font settings */
.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select,
.wpcf7 label,
.wpcf7 .wpcf7-list-item-label {
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #161616;
  margin: 0;
}

/* Required * red */
.wpcf7 label span.required {
  color: red;
  margin-left: 2px;
}

/* Row layout */
.row {
  display: flex;
  gap: 4px; /* gap kam kiya */
  margin-bottom: 4px; /* row ke beech spacing kam */
}
.col {
  flex: 1;
}

/* Inputs, textarea & select */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 4px 6px; /* padding thoda adjust */
  border: 1px solid #ccc;
  margin-top: 2px;
  margin-bottom: 2px; /* spacing kam */
  box-sizing: border-box;
  line-height: 1.1;
}

/* Textarea fix */
.wpcf7 textarea {
  resize: none;
  min-height: 120px; /* approx 6 rows */
}

/* Checkbox inline left align */
.privacy-check {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0; /* compact spacing */
  font-size: 15px;
  font-weight: 500;
}

/* Submit button */
.btn-wrap {
  text-align: left;
  margin-top: 2px; /* button ke upar kam space */
}
.wpcf7 input[type="submit"] {
  background: #161616;
  border: none;
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 18px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 4px;
}
.wpcf7 input[type="submit"]:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .row {
    flex-direction: column; /* row ki jagah column ho jayega */
    gap: 2px; /* mobile me gap aur kam */
  }
}
/* Transparent Header for All Devices */
#trns-header {
    background: transparent !important;
    position: absolute !important;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
}

/* Menu text white */
#trns-header .elementor-nav-menu a {
    color: #ffffff !important;
}
#left-parent {
  position: relative;
  overflow: visible;
}
#left-fix {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  align-self: flex-start;
  z-index: 10;
}
@media (max-width: 767px) {
  #left-fix {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
  }
}