
.box {
    width: 40%;
    margin: 0 auto;
    background: rgba(255,255,255,0.2);
    padding: 35px;
    border: 2px solid #fff;
    border-radius: 20px/50px;
    background-clip: padding-box;
    text-align: center;
}

.button {
    font-size: 1em;
    padding: 10px;
    color: #fff;
    border: 2px solid #06D85F;
    border-radius: 20px/50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

    .button:hover {
        background: #06D85F;
    }

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}

    .overlay:target {
        visibility: visible;
        opacity: 1;
    }



.popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
}

.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

    .popup .close:hover {
        color: #06D85F;
    }

.popup .content {
    max-height: 30%;
    overflow: auto;
}

@media screen and (max-width: 700px) {
    .box {
        width: 70%;
    }

    .popup {
        width: 70%;
    }
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.form-container {
    /*max-width: 800px;*/
    background: #fff;
    /*width: 800px;*/
    padding: 25px 40px 10px 40px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    border-radius: 15px;
    color: #2f2f2f;
}

    .form-container .text {
        text-align: center;
        font-size: 41px;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
        color: black;
    }

    .form-container form {
        padding: 30px 0 0 0;
    }

        .form-container form .form-row {
            display: flex;
            margin: 32px 0;
        }

form .form-row .input-data {
    width: 100%;
    height: 40px;
    margin: 0 20px;
    position: relative;
}

form .form-row .textarea {
    height: 70px;
}

.input-data input,
.textarea textarea, select {
    display: block;
    width: 100%;
    border: none;
    font-size: 17px;
    border-bottom: 2px solid rgba(29,89,83, 0.12);
}

    .input-data input:focus ~ label, .textarea textarea:focus ~ label,
    .input-data input:valid ~ label, .textarea textarea:valid ~ label
    .input-data select:focus ~ label,
    .input-data select:valid ~ label {
        transform: translateY(-20px);
        font-size: 14px;
        color: #1d5953;
    }

.textarea textarea {
    resize: none;
    padding-top: 10px;
}

.input-data label {
    position: absolute;
    pointer-events: none;
    bottom: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.textarea label {
    width: 100%;
    bottom: 40px;
    background: #fff;
}

.input-data .underline {
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
}

    .input-data .underline:before {
        position: absolute;
        content: "";
        height: 2px;
        width: 100%;
        background: #1d5953;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.3s ease;
    }

.input-data input:focus ~ .underline:before,
.input-data input:valid ~ .underline:before,
.textarea textarea:focus ~ .underline:before,
.textarea textarea:valid ~ .underline:before
.select select:focus ~ .underline:before,
.select select:valid ~ .underline:before {
    transform: scale(1);
}

.submit-btn .input-data {
    overflow: hidden;
    height: 45px !important;
    width: 25% !important;
}

    .submit-btn .input-data .inner {
        height: 100%;
        width: 300%;
        position: absolute;
        left: -100%;
        background: -webkit-linear-gradient(right, #56d8e4, #9f01ea, #56d8e4, #9f01ea);
        transition: all 0.4s;
    }

    .submit-btn .input-data:hover .inner {
        left: 0;
    }

    .submit-btn .input-data input {
        background: none;
        border: none;
        color: #fff;
        font-size: 17px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        position: relative;
        z-index: 2;
    }

@media (max-width: 700px) {
    .form-container .text {
        font-size: 30px;
    }

    .form-container form {
        padding: 10px 0 0 0;
    }

        .form-container form .form-row {
            display: block;
        }

    form .form-row .input-data {
        margin: 35px 0 !important;
    }

    .submit-btn .input-data {
        width: 40% !important;
    }
}


.modal-open {
    overflow: hidden
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal-dialog {
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    -webkit-transform: translate(0,-50px);
    transform: translate(0,-50px)
}

@media (prefers-reduced-motion:reduce) {
    .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none
}

.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100% - 1rem)
}

    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 1rem);
        overflow: hidden
    }

    .modal-dialog-scrollable .modal-footer, .modal-dialog-scrollable .modal-header {
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    .modal-dialog-scrollable .modal-body {
        overflow-y: auto
    }

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem)
}

    .modal-dialog-centered::before {
        display: block;
        height: calc(100vh - 1rem);
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
        content: ""
    }

    .modal-dialog-centered.modal-dialog-scrollable {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        height: 100%
    }

        .modal-dialog-centered.modal-dialog-scrollable .modal-content {
            max-height: none
        }

        .modal-dialog-centered.modal-dialog-scrollable::before {
            content: none
        }

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0
}

. /*modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000
}*/
/*.modal-backdrop.fade {
        opacity: 0
    }

    .modal-backdrop.show {
        opacity: .5
    }*/
.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px)
}

    .modal-footer > * {
        margin: .25rem
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width:576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }

    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem)
    }

        .modal-dialog-scrollable .modal-content {
            max-height: calc(100vh - 3.5rem)
        }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

        .modal-dialog-centered::before {
            height: calc(100vh - 3.5rem);
            height: -webkit-min-content;
            height: -moz-min-content;
            height: min-content
        }

    .modal-sm {
        max-width: 300px
    }
}

@media (min-width:992px) {
    .modal-lg, .modal-xl {
        max-width: 800px
    }
}

@media (min-width:1200px) {
    .modal-xl {
        max-width: 1140px
    }
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5
}

    .close:hover {
        color: #000;
        text-decoration: none
    }

    .close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
        opacity: .75
    }

button.close {
    padding: 0;
    background-color: transparent;
    border: 0
}

a.close.disabled {
    pointer-events: none
}

.close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto
}


.main-wrapper {
    /*width: 95%;*/
    margin: auto;
    /*margin-top: -70px;*/
    display: flex;
    /*gap: 30px;*/
    align-items: flex-start;
}

/* ================= SIDEBAR ================= */

.sidebar {
    /*width: 320px;*/
    background: #fff;
    border-radius: 28px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
    position: sticky;
    top: 20px;
}

.progress-box {
    margin-bottom: 25px;
}

    .progress-box h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

.progress {
    width: 100%;
    height: 10px;
    background: #e5e5e5;
    border-radius: 20px;
    overflow: hidden;
}

.progress-bar {
    width: 12%;
    height: 100%;
    background: #173f3a !important;
    border-radius: 20px;
    transition: 0.4s;
}

.progress-text {
    margin-top: 12px;
    color: #666;
    font-size: 14px;
}

.step-list {
    margin-top: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 14px;
    border-radius: 18px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.4s;
}

    .step:hover {
        background: #f5f5f5;
    }

    .step.active {
        background: #173f3a;
        color: #fff;
    }

.step-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #173f3a !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step.active .step-number {
    background: #fff;
}

.step-content h5 {
    font-size: 15px;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 12px;
    opacity: .8;
}

.top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

    .top-info h2 {
        font-size: 30px;
        font-weight: 600;
    }

    .top-info span {
        background: #f3f2ed;
        padding: 12px 18px;
        border-radius: 14px;
        font-size: 14px;
    }

.form-step {
    display: none;
    animation: slideAnimation .5s ease;
}

    .form-step.active {
        display: block;
    }

@keyframes slideAnimation {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group.full {
        grid-column: 1/3;
    }

    .form-group label {
        /*margin-bottom: 10px;*/
        font-size: 14px;
        font-weight: 500;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        height: 58px;
        border: none;
        border-bottom: 1px solid #d9d9d9;
        background: transparent;
        padding: 10px 5px;
        font-size: 15px;
        outline: none;
        transition: 0.3s;
    }

    .form-group textarea {
        height: 120px;
        resize: none;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #173f3a;
        }

.upload-box {
    border: 2px dashed #cfcfcf;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

    .upload-box:hover {
        border-color: #173f3a;
        background: #fafafa;
    }

.buttons {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    padding: 16px 34px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-outline {
    background: #fff;
    border: 1px solid #173f3a;
    color: #173f3a;
}

    .btn-outline:hover {
        background: #173f3a;
        color: #fff;
    }

.btn-primary {
    background: #173f3a;
    color: #fff;
}

    .btn-primary:hover {
        transform: translateY(-3px);
    }

/* ================= FOOT INFO ================= */

.bottom-info {
    margin-top: 35px;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
}

.info-card {
    background: #f8f8f6;
    border-radius: 18px;
    padding: 22px;
}

    .info-card h4 {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .info-card p {
        font-size: 13px;
        color: #666;
        line-height: 1.7;
    }

/* ================= MOBILE ================= */

@media(max-width:1200px) {

    .main-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: relative;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .bottom-info {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {

    .navbar {
        padding: 20px;
    }

    .page-title {
        padding: 20px;
    }

        .page-title h1 {
            font-size: 46px;
        }

    .form-container {
        padding: 25px;
    }

    .top-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

        .top-info h2 {
            font-size: 34px;
        }

    .bottom-info {
        grid-template-columns: 1fr;
    }

    .buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }
}

.form-step {
    display: none;
}

    .form-step.active {
        display: block;
    }


.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #edf7f2;
    color: #0d4b43;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 20px;
}

.final-main-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #173f3a;
}

.final-sub-heading {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.final-grid {
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 30px;
}

.final-card {
    background: #fbfbf9;
    border: 1px solid #ececec;
    border-radius: 24px;
    padding: 18px;
}

.final-card-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 5px;
}

.final-card-subtitle {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.8;
}

.doc-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.doc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #ededed;
    padding: 11px 16px;
    border-radius: 18px;
    transition: .3s;
}

    .doc-item:hover {
        transform: translateX(5px);
        box-shadow: 0 8px 20px rgba(0,0,0,.05);
    }

.doc-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #26b36a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.email-box {
    background: #f6faf8;
    border: 2px dashed #b8d4ca;
    border-radius: 25px;
    padding: 20px 25px;
    text-align: center;
    margin-top: 20px;
}

.email-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #e7f3ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 20px;
}

.email-text {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #173f3a;
}

.copy-btn {
    background: #173f3a;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
}

.note-box {
    background: #fff9ef;
    border: 1px solid #f3e2b8;
    border-radius: 22px;
    padding: 15px;
    margin-top: 25px;
}

    .note-box h4 {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .note-box p {
        color: #666;
        line-height: 1.8;
    }

.timeline {
    margin-top: 35px;
    background: #f7fbff;
    border: 1px solid #dbe7f5;
    border-radius: 28px;
    padding: 30px;
}

    .timeline h3 {
        font-size: 28px;
        margin-bottom: 30px;
    }

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    text-align: center;
}

.timeline-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e8f5ef;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.footer-text {
    text-align: center;
    margin-top: 30px;
    color: #55756f;
    font-size: 15px;
}

@media(max-width:991px) {

    .final-grid {
        grid-template-columns: 1fr;
    }

    .timeline-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {


    .final-main-heading {
        font-size: 34px;
    }

    .email-text {
        font-size: 22px;
    }
}




.certificate-wrapper {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 25px;
    margin-top: 10px;
}

.certificate-row {
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
}
