/* Modal container */
.quote-modal {
    display: none;
    position: fixed;
    z-index: 99999999;
    left: 0;
    top: 150px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

/* Modal content box */
.quote-modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Close button */
.quote-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Styling for form elements */
.form-input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Submit button */
.quote-submit-button {
    width: 100%;
    padding: 12px;
    background-color: #ec1b24;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quote-submit-button:hover {
    background-color: #FF3300;
}


/* .quote-submit-button {
    width: 100%;
    padding: 12px;
    background-color: #ec1b24;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quote-submit-button:hover {
    background-color: #FF3300;
} */

/* Container for the entire form */
.quote-form-container {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Heading */
.quote-form-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

/* Product Price */
.quote-form-container p {
    font-size: 18px;
    color: #555;
    text-align: center;
}

/* Input fields */
.form-input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Textarea field */
.form-input textarea {
    resize: vertical;
    min-height: 100px;
}