/* Popup Style */
    .popup {
    display: none;
    position: fixed;
    top: 0;
    z-index: 99;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
.form-heading-section h2 {
    width: 51%;
    line-height: 32px;
    font-size: 26px;
}
.form-heading-section {
    display: flex;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.form-input-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.form-input-section .full-name.half-input input {
    width: 100%;
    border: 1px solid #E9E9E9;
    height: 40px;
    padding: 0px 10px;
}
.form-input-section .full-name.half-input {
    width: 50%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.form-input-section .full-name.full-input {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.form-section form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 20px;
    line-height: 1em;
}
.form-input-section .full-name.full-input input {
    width: 100%;
    border: 1px solid #E9E9E9;
    height: 40px;
    padding: 0px 10px;
}
.form-input-section .full-name.half-input label, .form-input-section .full-name.full-input label{
    color: #666666;
}
.text-red {
    color: #FF0000;
}
.checkbox-main-sec .full-name.full-input label{
    color: #666666;
}
.checkbox-main-1 {
    display: flex;
    align-items: center;
    row-gap: 10px;
    flex-wrap: wrap;
    column-gap: 10px;
    justify-content: space-between;
}
.checkbox-div {
    border: 1px solid #E9E9E9;
    height: 40px;
    width: 48%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
}
.checkbox-main-sec {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.checkbox-main-sec input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    visibility: hidden;
}
input[type="checkbox"]:checked + .custom-checkbox::before {
   border: 1px solid #000;
}
.custom-checkbox {
    width: 100%;
    display: inline-block;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    text-align: center;
    color: #666666;
}
.total-price span.main-price {
    font-size: 26px;
    color: #000;
    font-weight: 600;
}
.total-price {
    display: flex;
    align-items: center;
    gap: 5px;
}
.total-price span{
    color: #666666;
}
.form-input-section input[type="submit"] {
    width: 100%;
    height: 40px;
    border: none;
    background: #0453CB;
    color: #fff;
    padding: 0px;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    border-radius: 50px;
}
p.note {
    display: flex;
    width: 100%;
    justify-content: center;
}

.custom-checkbox::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 40px;
    background-color: transparent;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s;
}
.form-section {
    padding-top: 30px;
}
.done-inquery {
    display: none;
    flex-wrap: nowrap;
    text-align: center;
    flex-direction: column;
    line-height:normal;
    align-items: center;
}

.done-inquery span {
    width: 53%;
    text-align: center;
    line-height: 25px;
    letter-spacing: 0.8px;
}

.done-inquery p.done-heading {
    font-weight: 600;
    font-size: 30px;
}

/* Loader Container */
.loader-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Loader Animation */
.loader {
    top: 50%;
    width: 50px;
    height: 50px;
    border: 5px solid #3498db;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    left: 50%;
    position: absolute;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 600px) {
    .popup-content {
        width: 100%;
        margin: 0 10px;
    }
}