.elementor-1291 .elementor-element.elementor-element-1695a0b{--display:flex;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-0d12f28 */<style>
  /* Make Select2 same height & look as City input */
  .select2-container { width: 100% !important; }
  .select2-container .select2-selection--single {
    height: 44px;                 /* match your City box height */
    border: 2px solid #7a2bdc;    /* same border */
    border-radius: 6px;           /* same radius */
  }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42px;            /* vertically center the text */
    padding-left: 14px;           /* match input padding */
  }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px;                 /* center the arrow */
    right: 8px;
  }

  /* Ensure the City input matches (if needed) */
  .hbs-city,
  input[name="location"] {        /* whichever .elementor-1291 .elementor-element.elementor-element-0d12f28 your City field uses */
    height: 44px;                 /* same as select2 */
    padding: 10px 14px;
    border-radius: 6px;
  }
</style>

<script>
  // Update Select2 placeholder text and ensure it renders with the new height
  jQuery(function($){
    var $sel = $('#serviceInput');                 // or $('.js-service-select') if that's your .elementor-1291 .elementor-element.elementor-element-0d12f28
    if ($sel.length) {
      // ensure there is a blank option for placeholder
      if (!$sel.find('option[value=""]').length) $sel.prepend('<option value=""></option>');
      $sel.val('');                                // show placeholder
      $sel.select2({
        placeholder: 'Type your job',              // <-- your text
        allowClear: true,
        width: '100%'
      });
    }
  });
</script>/* End custom CSS */