.main-menu-dest {
    display: flex;
    justify-content: center;
}

.main-menu-dest ul#respMenu {
    left: 120px;
    /* border: 2px solid #000; */
    position: relative;
    padding: 10px;
    border-radius: 7px;
}

.search-top-head select#type {
    position: absolute;
    left: 0;
    right: 0;
    max-width: 20%;
    border-radius: unset;
}

.search-top-head .form-group.search-form input[type="text"] {
    max-width: 80%;
    position: absolute;
    right: 0;
    border-left: 0;
    border-radius: unset;
}

.search-top-head {
    position: relative;
}

.search-top-head .form-group.search-form {
    position: relative;
    top: -35px;
}

.alert-box {
    transition: opacity 1s ease-out;
}

/* Styling for the modal */
.modal-content {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid #FF5000
}

/* Modal Header */
/* .modal-header {
            background-color: #FF5000;
            color: white;
            border-bottom: 2px solid #FF5000;
        } */

/* Modal Title */
.modal-title {
    font-weight: bold;
}

/* Input Fields */
.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: border 0.3s ease-in-out;
}

.form-control:focus {
    border-color: #FF5000;
    box-shadow: 0 0 5px rgba(255, 80, 0, 0.5);
}

/* Submit Button */
.btn-warning {
    background-color: #FF5000;
    border-color: #FF5000;
    color: white;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-warning:hover {
    background-color: #e14b00;
    border-color: #e14b00;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Agree Checkbox */
.form-check-label {
    font-size: 14px;
    color: #333;
}

/* Alert Styling */
.alert {
    margin-top: 15px;
    font-size: 14px;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

/* Centering the logo */
.main-logo {
    display: block;
    max-width: 240px;
    /* Adjust size of logo */
    margin: 0 auto 20px;
    /* Center the logo and give margin below it */
}

/* Heading */
h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
    /* Center the heading */
}

h2 .highlighted-text {
    color: #FF5000;
    /* Color for 'Consultation & Quote' */
    font-weight: bold;
}

/* Custom outline button with #FF5000 */
/* Custom outline button with #FF5000 */
.btn-outline-custom-orange {
    color: black;
    /* Set text color to black */
    border: 2px solid #FF5000;
    /* Custom outline color */
    background-color: transparent;
    /* Transparent background */
    border-radius: 5px;
    /* Optional: Add rounded corners */
    transition: all 0.3s ease;
    /* Smooth transition for hover effects */
}

.btn-outline-custom-orange:hover {
    background-color: #FF5000;
    /* Background color on hover */
    color: white;
    /* Text color changes to white on hover */
    border-color: #FF5000;
    /* Border color remains the same on hover */
}