
html, body {
  overflow-x: clip;
}


body {
  margin: 0;
  font-family: sans-serif;
  background: #0a0a0a;
  color: #fff;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: rgba(255,255,255,0.9);
  color: #000;
  padding: 12px 24px;
  border-radius: 12px;
}



/*contact form css*/
/* Change Autofill background and text color */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    /* This overrides the background color by using a massive inner shadow */
    -webkit-box-shadow: 0 0 0 1000px #151515 inset !important;
    padding-left: 16px !important;
    /* This sets the text color to white */
    -webkit-text-fill-color: #ffffff !important;
    
    /* Matches your theme's transition speed */
    transition: background-color 5000s ease-in-out 0s;
}

/* Ensure the border stays consistent during autofill */
input:-webkit-autofill {
    border: 0px solid #343434 !important;
}

/* 1. Reset the input and force it to be a square box */
.elementor-field-type-checkbox .elementor-field-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important; /* Prevents the "line" effect */
    background-color: transparent;
    border: 2px solid #343434 !important;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-right: 8px !important;
    outline: none;
    vertical-align: middle;
    transition: all 0.2s ease;
}

/* 2. Checked State Background */
.elementor-field-type-checkbox .elementor-field-option input[type="checkbox"]:checked {
    background-color: #1919e6 !important;
    border-color: #1919e6 !important;
}

/* 3. The Checkmark (Positioned precisely inside the 20px box) */
.elementor-field-type-checkbox .elementor-field-option input[type="checkbox"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    display: none; /* Hidden when not checked */
    
    /* Using a sharp SVG Checkmark */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}



/* Show the checkmark when checked */
.elementor-field-type-checkbox .elementor-field-option input[type="checkbox"]:checked::after {
    display: block;
}

/* 4. Fix Label Alignment */
.elementor-field-type-checkbox .elementor-field-option {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 6px;
}

.elementor-field-type-checkbox .elementor-field-option label {
    padding-left: 0 !important;
    line-height: 1;
    cursor: pointer;
}






.budget-label{
    color: #7e7e7e;
    font-size: 14px;
    font-weight: 400;
    justify-content: space-between;
    display: flex;
}

.elementor-field-subgroup{
    font-size: 14px !important;
}

.elementor-field-group-message, .elementor-field-type-checkbox, .elementor-field-subgroup{
    gap: 12px !important;
}

/* 1. Set the color for the text the user actually TYPES */
.elementor-field-type-email .elementor-field, 
.elementor-field-textual {
    color: #ffffff !important; /* The typed text will be white */
    padding: 0px !important;
}

/* 2. Set the color for the PLACEHOLDER text only */
.elementor-field-type-email .elementor-field::placeholder,
.elementor-field-textual::placeholder {
    color: #666666 !important; /* The hint text will be grey */
    opacity: 1; 
}

/* 3. Your Hover State (Fixed the double ##) */
.elementor-field-type-email:hover .elementor-field, 
.elementor-field-textual:hover {
    border-color: #343434 !important;
}

.elementor-field-type-email:focus, .elementor-field-textual:focus{
    border-color: #1919e6 !important;
        border-width: 0px 0px 2px 0px;
}