/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 12 2025 | 07:36:17 */
/* --------------------------------------------- */
/* CONTACT FORM CUSTOM STYLE */
/* Targeting ONLY form with id="contactform" */
/* --------------------------------------------- */
/* ---------------------- */
/* LABELS */
/* ---------------------- */
#contactform .elementor-field-label {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    display: block;
   
}

/* ---------------------- */
/* INPUT, EMAIL, PHONE, TEXT */
/* ---------------------- */
#contactform input.elementor-field-textual,
#contactform .nice-select,
#contactform textarea.elementor-field-textual {
    width: 100%;
    padding: 20px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    font-size: 15px;
    color: #444;
    outline: none;
    transition: all .2s ease;
}

/* INPUT FOCUS */
#contactform input.elementor-field-textual:focus,
#contactform textarea.elementor-field-textual:focus,
#contactform .nice-select:focus {
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.15);
     padding: 20px 15px;
}

/* ---------------------- */
/* PLACEHOLDER */
/* ---------------------- */
#contactform input::placeholder,
#contactform textarea::placeholder {
    color: #888;
    font-size: 14px;
}

/* ---------------------- */
/* SELECT DROPDOWNS */
/* (Nice Select) */
/* ---------------------- */

/* Wrapper */
#contactform .nice-select {
    height: 65px;
    line-height: 45px;
    padding-right: 35px;
}

/* Dropdown text */
#contactform .nice-select .current {
    font-size: 15px;
    color: #444;
}

/* Dropdown list */
#contactform .nice-select .list {
    border-radius: 6px;
	width: 100%;
}

/* Dropdown options */
#contactform .nice-select .option {
    padding: 10px 15px;
    font-size: 15px;
}

/* Hover effect */
#contactform .nice-select .option:hover {
    background: #f1f1f1;
}

/* ---------------------- */
/* SUBMIT BUTTON */
/* ---------------------- */
#contactform button.elementor-button {
   
    background: #0D6EFD;
    color: #fff;
    padding: 22px 35px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    margin-top:15px;
}

#contactform button.elementor-button:hover {
    background: #333;
}


#contactform #form-field-field_a187ffc {
    width: 100%;
    height: 160px;            /* Adjust textarea height */
    padding: 12px 15px;       /* Inner padding */
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    font-size: 15px;
    color: #444;
    resize: vertical;         /* Allow user to resize (optional) */
    outline: none;
    transition: all .3s ease;
}

/* Focus effect */
#contactform #form-field-field_a187ffc:focus {
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.15);
}