.elementor-6390 .elementor-element.elementor-element-3ebdd294{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Zen Dot;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-6390 .elementor-element.elementor-element-33d6599c{column-gap:0px;}.elementor-6390 .elementor-element.elementor-element-33d6599c p{margin-block-end:0px;}/* Start custom CSS for container, class: .elementor-element-3ebdd294 *//* Style the entire form */
.wpcf7 {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Display Name and Company fields on the same row */
.wpcf7 .half-width {
    display: inline-block;
    width: 48%; /* Set small width for each field */
    margin-right: 4%; /* Small gap between fields */
}

/* Remove margin-right from the last field */
.wpcf7 .half-width:last-child {
    margin-right: 0;
}

/* Label styling */
.wpcf7 label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    display: block;
}

/* Input, Email, Phone Fields, and Textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* Focus effect for form fields */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: #5e8bff;
    box-shadow: 0 0 4px rgba(94, 139, 255, 0.3);
}

/* Submit button styling */
.wpcf7 input[type="submit"] {
    background-color: black;
    color: #fff;
    font-size: 14px;
    padding: 12px;
    width: 40%;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect for submit button */
.wpcf7 input[type="submit"]:hover {
    background-color: #ccc;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wpcf7 {
        padding: 10px;
    }

    /* Stack fields vertically on small screens */
    .wpcf7 .half-width {
        display: block;
        width: 100%;
        margin-right: 0;
    }
}

/* Add red asterisk in front of mandatory fields */
label:after {
    content: "*";
    color: red;
    margin-left: 3px;
}/* End custom CSS */