@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --blue: #007bff;
    --light-blue: #cee6ff;
    --soft-light-blue: #e9f3ff;
    --dim-blue: #D8DCE1;
    --dark-blue: #224571;
    --white: #ffffff;
    --black: #000000;
    --grey: #bebebe;
    --light-gray: #d9d9d9;
    --medium-gray: #dee2e6;
    --dark-gray: #343a40;
    --green: #01a201;
    --light-green: #09d202;
    --dim-green: #d9ffd8;
    --orange: #ff9800;
    --light-orange: #fff6e0;
    --red: #f44336;
    --prm-color: #0381ff;
    --prm-gray: #b1b1b1;
}

* {
    font-family: 'Poppins', sans-serif;
}

/***** Common Styles *****/
.text-container {
    width: 85%;
    margin-right: auto;
    margin-left: auto;
}

.button {
    text-align: center;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid;
    outline: none;
    transition: all 0.3s ease;
}

.button-sm {
    padding: 10px 15px;
}

.button-md {
    padding: 10px 20px;
}

.button-lg {
    padding: 15px 35px;
}

.button:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 10px 15px;
}

.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button:disabled :hover {
    box-shadow: none;
}

.button-primary {
    background-color: var(--blue);
    color: var(--white);
    border-color: transparent;
}

.button-success {
    background-color: var(--green);
    color: var(--white);
    border-color: transparent;
}

.button-danger {
    background-color: var(--red);
    color: var(--white);
    border-color: transparent;
}

.button-prim-outlined {
    background-color: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

.button-prim-outlined:hover {
    background-color: var(--blue);
    color: var(--white);
}

.form-button {
    border-radius: 10px;
    background-color: var(--dark-blue);
    color: var(--white);
    border: none;
}

.form-button.selected {
    background-color: var(--blue);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 10px 15px;
}

.text-blue {
    color: var(--dark-blue);
}

.white-label {
    padding: 5px;
    width: auto;
    border: none;
    border-radius: 6px;
    background-color: #b2d2ff;
}

.is-invalid {
    border-color: var(--red) !important;
}

.error-message {
    font-size: 0.875em;
    color: var(--red);
}

.choices__inner {
    background-color: var(--white) !important;
    border-radius: 5px !important;
}

/***** Top Logo Section *****/

.top-logo-section {
    width: -webkit-fill-available;
    height: auto;
}

.payment-img {
    width: -webkit-fill-available;
    height: auto;
}

/***** Hero section related styles *****/
.hero-content {
    display: flex;
    width: 100%;
}

.hero-img-section {
    display: flex;
    flex-direction: column;
}

.hero-img-section img {
    width: -webkit-fill-available;
    height: auto;
}

.hero-img-section label {
    background-color: var(--light-blue);
    border: 1px solid var(--blue);
    padding: 10px 15px;
    border-radius: 50px;
    color: var(--blue);
    box-shadow: rgba(127, 166, 253, 0.2) 0px 7px 29px 0px;
}

/***** Steps Section *****/
.step-progress .step {
    display: inline-block;
    text-align: center;
    position: relative;
    width: 20%;
    cursor: pointer;
}

.step-title {
    display: inline-block;
    text-align: center;
    position: relative;
    width: 20%;
    cursor: pointer;
}

.step-progress .step .circle {
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
    border: 2px solid var(--light-gray);
    line-height: 36px;
    margin: 0 auto;
    font-weight: bold;
    color: var(--black);
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background-color: var(--white);
}


.step-progress .step:first-child .circle {
    background-image: url("../images/apartmentInsurance/icon1.png");
}

.step-progress .step.active .circle {
    border-color: #007bff;
    background-color: var(--blue);
    color: var(--white);
}

.step-progress .step.active.completed .circle {
    border-color: var(--light-green);
    background-color: var(--green);
    color: var(--white);
}

.step-progress .step.active.not-complete .circle {
    border-color: var(--light-orange);
    background-color: var(--orange);
    color: var(--white);
}

.step-progress .step .label {
    margin-top: 10px;
    color: var(--black);
}

/*.step-progress .step.active .label {*/
/*    color: var(--blue);*/
/*}*/
/*.step-progress .step.active.completed .label {*/
/*    color: var(--green);*/
/*}*/

.step-progress .connector {
    height: 3px;
    background-color: var(--light-gray);
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    z-index: -1;
}

.step-progress .step.active.completed .connector {
    background-color: var(--blue);
}

.step-progress .step:last-child .connector {
    display: none;
}

.accordion-content {
    display: none;
}

.accordion-content.active {
    display: block;
}

/***** Form Styles *****/
.content-form {
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--light-blue);
    background-color: var(--soft-light-blue);
}

.plan-card {
    background-color: var(--dim-blue);
    border-radius: 10px;
}

.plan-card .plan-card-body {
    padding: 10px;
    text-align: start;
}

.plan-card .plan-card-header {
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    background-color: var(--dark-blue);
    color: var(--white);
    font-weight: bold;
}

.plan-card .plan-card-footer {
    padding: 15px;
    background-color: var(--blue);
    color: var(--white);
    font-weight: bold;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/***** Footer Section *****/
.footer-section {
    background-color: var(--dark-blue);
    color: var(--white);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

.footer-bottom-section {
    color: var(--dark-blue);
}

/* Accordion 1*/
.plan-options-desc .desc-lines {
    margin-left: 30px;
}

/* File Upload Section */
.image-uploader {
    padding: 10px;
    border: 2px dashed var(--blue);
    border-radius: 5px;
    background: var(--light-blue);
    text-align: center;
    align-content: center;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.file-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 10px;
    margin-top: 15px;
    border-radius: 8px;
    border: 1px solid var(--orange);
    background-color: var(--light-orange);
    list-style: none;
}
.delete-btn{
    text-align: center;
    padding: 5px 5px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid;
    outline: none;
    transition: all 0.3s ease;
    background-color: #fd3a3a;
    color: white;
}
.file-upload-icon{
    width: 60px;
    height: 50px;
}
/*****  Mobile Responsive Here *****/
@media (min-width: 1024px) {
    .accordion2-nic-search {
        display: flex;
        justify-content: start;
        align-items: center;
    }

    .accordion2-nic-search .input-group {
        width: 65%;
        gap: 5px;
    }
}

@media (max-width: 768px ) {
    .hero-content-top-banner {
        text-align: center;
    }

    .hero-content {
        width: 100%;
        flex-direction: column;
        gap: 16px;
        text-align: center !important;
        align-content: center;
        justify-content: center;
    }

    .hero-img-section {
        text-align: center;
    }

    .hero-img-section img {
        order: 1;
        max-width: 100%;
        height: auto;
    }

    .hero-img-section1 {
        order: 2;
    }

    .hero-img-section2 {
        order: 1;
    }

    .hero-content button {
        width: 60%;
    }

    .step-progress {
        display: flex;
        justify-content: normal;
        align-items: center;
    }

    .step-progress .connector {
        left: 50%;
        width: 100%;
        z-index: -1;
    }

    section {
        padding: 1px !important;
    }

    .top-logo-section img {
        width: 100%;
        height: auto;
    }

    /*steps*/
    .step-title {
        display: inline-block;
        text-align: center;
        position: relative;
        width: 20%;
        cursor: pointer;
        font-size: 10px;
    }

    /*  Accordion 1  */
    .plan-options {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .plan-options button {
        width: 85%;
    }

    .plan-options-desc .desc-lines {
        margin-left: 0px;
        width: 100%;
    }

    .plan-card {

    }

    .plan-card .plan-card-body {
        padding: 5px;
        text-align: start;
    }

    .quotation-data-card {
        flex-direction: column;
        gap: 2px;
    }

    .quotation-data-card .quotation-data-card-left {
        align-content: center;
        justify-content: space-between !important;
    }

    .quotation-data-card .quotation-data-card-right {
        align-content: center;
        justify-content: space-between !important;
    }

    .accordion2-nic-search {
        flex-direction: column;
        justify-content: center;
        gap: 2px;
        width: 100%;
    }

    .accordion2-nic-search button {
        width: 25%;
        font-size: small;
    }

    .accordion2-form-field-row {
        flex-direction: column;
        justify-content: normal !important;
        align-items: normal !important;
        gap: 10px;
        width: 100%;
    }

    .accordion2-form-field-row .otp-input-section {
        margin-left: auto !important;
        margin-right: auto;
    }

    .otp-inputs {
        padding: 10px 10px;
        font-size: 13px;
    }

    .initial-input-name {
        margin-left: 0px !important;
    }

    /* Payment page */
    .payment-btn-section,
    .client-btn-section div {
        flex-direction: column;
        gap: 10px;
        justify-content: center !important;
    }

    .client-btn-section div button,
    .payment-btn-section .div1 button,
    .payment-btn-section .div2 button {
        width: 85%;
    }

    .payment-btn-section .div1 {
        justify-content: center !important;
    }

    .payment-btn-section .div2 {
        justify-content: center !important;
        flex-direction: column;
    }

    /*  Footer Section  */
    .footer-section {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        justify-content: center;

    }

    .footer-bottom-section {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .file-upload-table table tbody tr{
        font-size: 7px;
    }

}
