@import url("../bootstrap/bootstrap.min.css");

:root {
    --text-color: #596cb3;
    --text-color-1: #67B6F4;
    --text-color-2: #0e2a90;
}

/*!* Header CSS *!*/

html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/*header {*/
/*    background-color: #E3E8FA;*/
/*    padding: 2rem 3rem;*/
/*}*/

/*.desktop li {*/
/*    list-style: none;*/
/*}*/

/*.desktop.c-border-bottom {*/
/*    border-bottom: 1px solid #0f0e0e;*/
/*    margin: 0;*/
/*    padding-left: 0;*/
/*    justify-content: flex-end;*/
/*}*/
/*.navigation ul li a,*/
/*.navigation ul li button {*/
/*    color: #0f0e0e;*/
/*    text-transform: uppercase;*/
/*    font-size: 16px;*/
/*    margin-left: 20px;*/
/*    padding-bottom: 15px;*/
/*    font-weight: 600;*/
/*}*/
/*.navigation ul li button{*/
/*    border: none;*/
/*    background-color: transparent;*/
/*}*/
/*.navigation ul li a:hover {*/
/*    text-shadow: 0px 0px 10px #3d62ff;*/
/*}*/
/*.mobile-menu-icon {*/
/*    display: none;*/
/*    background-color: #313844;*/
/*    border-radius: 100%;*/
/*    height: 50px;*/
/*    width: 50px;*/
/*    border: none;*/
/*}*/

/*.mobile-menu-icon svg {*/
/*    height: 30px;*/
/*    width: 30px;*/
/*    color: #fff;*/
/*}*/

/*.mobile li {*/
/*    list-style: none;*/
/*}*/
/*.mobile li a {*/
/*    text-decoration: none;*/
/*}*/
/* Step Name Part */

#left-part {
    background-color: #F8F6FA;
    height: 100vh;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
}

#left-part h2,
#left-part p {
    color: var(--text-color);
}

#left-part .steps {
    z-index: 2;
}

#left-part .steps::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50px;
    bottom: 50px;
    left: 37px;
    border-left: 1px solid #2B1B9A;
    opacity: .1;
}

#left-part .steps .step {
    margin: 7px 0px;
    padding: 1rem 2.25rem 1rem 1.4rem;
    cursor: pointer;
    border-radius: 200px;
    z-index: 2;
}

#left-part .steps .step.active,
#left-part .steps .step.start {
    background-color: #fff;
    box-shadow: 0px 12px 30px rgba(43, 27, 154, 0.08);
}

#left-part .steps .step .symbol-box {
    width: 50px;
}

#left-part .steps .step .symbol {
    height: 30px;
    width: 30px;
    background-color: #596cb3;
    border-radius: 50%;
    z-index: 2;
}

#left-part .steps .step.active .symbol,
#left-part .steps .step.done .symbol {
    background-color: green;
}

#left-part .steps .step.active .symbol span,
#left-part .steps .step.done .symbol span {
    display: none;
}

#left-part .steps .step .symbol span {
    color: #fff;
    font-size: 16px;
}

#left-part .steps .step .symbol svg {
    display: none;
    font-size: 25px;
    color: #fff;
}

#left-part .steps .step.active .symbol svg,
#left-part .steps .step.done .symbol svg {
    display: block;
}

#left-part .steps .step .descriptions p.title {
    color: var(--text-color);
    font-size: 13px;
    font-weight: bold;
}

#left-part .steps .step .descriptions p.description {
    color: rgba(43, 27, 154, 0.4);
    font-size: 14px;
}

/* Step Information Part */

#right-part {
    background-color: #FFFFFF;
    height: 100vh;
    overflow: scroll;
    scroll-behavior: smooth;
    padding: 3.5rem 3.5rem 200px;
}

/* Common Step CSS */

#right-part .step-box .short-title {
    color: var(--text-color-1);
    font-size: 13px;
}
#right-part .step-box h3.title {
    font-size: 2rem;
}

#right-part .step-box h5.title{
    font-size: 1.5rem;
}

#right-part .step-box h3.title,
#right-part .step-box h5.title {
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.2;
}

#right-part .step-box .description {
    color: var(--text-color);
}
/* First Step Part */

#right-part .first-step-box #first-step-info .accordion-item {
    border: none;
}

#right-part .first-step-box #first-step-info .accordion-item .accordion-header .accordion-button{
    border-radius: 8px;
    font-weight: bold;
}

#right-part .first-step-box #first-step-info .accordion-item .accordion-header .accordion-button.collapsed{
    background-color: #F8F6FA;
    color: var(--text-color-2);
    border-radius: 8px;
}

#right-part .first-step-box #first-step-info .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    box-shadow: none;
    border-bottom: 1px solid;
    border-radius: 8px 8px 0 0;
}

#right-part .first-step-box #first-step-info .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
    border-bottom: 1px solid;
    border-radius: 8px 8px 0 0;
}

#right-part .first-step-box #first-step-info .accordion-item .accordion-header .accordion-button:focus.collapsed {
    border-bottom: none;
    border-radius: 8px;
}

#right-part .first-step-box #first-step-info .accordion-item .accordion-body {
    background-color: #CFE2FF;
    border-radius: 0 0 8px 8px;
}

#right-part .first-step-box #first-step-info .accordion-item .accordion-body .accrodion-info-box .single-accrodion {
    background-color: #fff;
    width: 100%;
}

#right-part .first-step-box #first-step-info .accordion-item .accordion-body .accrodion-info-box .single-accrodion .images-box .single-image {
    height: 80px;
    width: 80px;
}

/* Third Step part */

.image-number-box p {
    color: var(--text-color);
}

.image-number-box .numbers .add,
.image-number-box .numbers .minus,
.image-number-box .numbers .values{
    padding: 10px;
}
.image-number-box .numbers .values input {
    text-align: center;
    background-color: #F6F4F8;
    -moz-appearance: textfield;
    width: 100%;
    border: none;
}
.image-number-box .numbers .values input:focus {
    outline: none;
    border: none;
}

.image-number-box .numbers .values input::-webkit-outer-spin-button,
.image-number-box .numbers .values input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.image-number-box .numbers .add,
.image-number-box .numbers .minus{
    cursor: pointer;
    background-color: #E9ECEF;
}

.image-number-box .numbers .add{
    border-radius: 5px 0 0 5px;
}

.image-number-box .numbers .minus{
    border-radius: 0 5px 5px 0;
}

.image-number-box .numbers .add svg,
.image-number-box .numbers .minus svg {
    height: 22px;
    width: 22px;
    color: #9aaffd;
}

.image-number-box .numbers .values{
    width: 100px;
    text-align: center;
    background-color: #F6F5F8;
}

.drop-images {
    min-height: 500px;
    width: 100%;
    border: 1px solid var(--text-color);
}

.drop-images p{
    font-size: 22px;
}

.drop-images p span {
    color: var(--text-color);
}

.drop-images .folder {
    background-color: var(--text-color-1);
    padding: 10px;
    height: 50px;
    width: 50px;
    border-radius: 100%;
}
.drop-images .folder svg {
    color: #fff;
}

/* Fourth Step */
.errors {
    font-size: 12px;
    color: red;
}


/* Navigation Part */

#right-part .navigate-box {
    background-color: var(--text-color);
    width: 66.85%;
    margin-left: auto;
}

#right-part .navigate-box .total-amount .amount {
    font-size: 42px;
}

#right-part .navigate-box .main-buttons .back-btn button {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border: none;
    min-width: 100px;
}

#right-part .navigate-box .main-buttons .back-btn button:active {
    border: none;
}

#right-part .navigate-box .main-buttons .next-btn button {
    font-size: 16px;
    color: #fff;
    box-shadow: 0 12px 30px rgba(43, 27, 154, 0.08);
    border: none;
    background-color: var(--text-color-1);
    padding: 10px 50px;
    transition: 0.5s;
}

#right-part .navigate-box .main-buttons .next-btn button:hover {
    background-color: #9D91F5;
}

/* Thank you page */

#thank-you {
    width: 500px;
    margin: 0 auto;
}

#thank-you .done-icon i {
    font-size: 50px;
    color: #76DE9F;
}

#thank-you h2 {
    color: var(--text-color);
}

#thank-you a.btn.another-btn {
    background-color: #67B6F4;
}

#thank-you a.btn.another-btn:hover {
    background-color: #9D91F6;
}

#thank-you a.btn.home-btn {
    background-color: #fff;
    color: var(--text-color);
    box-shadow: 0px 12px 30px rgba(43,27,154,0.08);
}

#thank-you a.btn.home-btn:hover {
    background-color: #F5F4FD;
}

/* Mobile CSS */

@media all and (max-width: 1600px) {

    #right-part .navigate-box {
        width: 67.2%;
    }
}

@media all and (max-width: 1300px) {

    /* Navigation Box */

    #right-part .navigate-box {
        width: 67.35%;
    }

    #right-part .navigate-box .main-buttons .next-btn button {
        padding: 10px 30px;
    }
}

@media all and (max-width: 991px) {
    #left-part,
    #right-part {
        height: 100%;
    }

    #right-part .navigate-box {
        width: 100%;
    }
}
@media all and (max-width: 782px) {
    /* Header CSS */

    .all-desktop {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
}

@media all and (max-width: 575px) {
    /* Second Step Info */

    #right-part .second-step-box .add-on-services .width-height-box {
        flex-direction: column;
    }

    #right-part .second-step-box .add-on-services .width-height-box .get-width-height-box {
        flex-direction: column;
        align-items: flex-start!important;
    }

    #right-part .second-step-box .add-on-services .width-height-box .form-floating {
        margin-left: 0!important;
        width: 100%!important;
    }
    #right-part .second-step-box .add-on-services .width-height-box .form-floating input {
        width: 100%;
    }
}

@media all and (max-width: 420px) {

    #right-part {
        padding-bottom: 300px;
    }
    
    /* Navigation Box */
    #right-part .navigate-box .main-buttons,
    #right-part .navigate-box .total-amount {
        flex-direction: column;
    }

    #right-part .navigate-box .main-buttons .next-btn button,
    #right-part .navigate-box .main-buttons .back-btn button {
        margin-top: 20px;
        width: 100%;
    }
}


/* Ishmam css */
/* eye popup */

.popup-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    display: none;
    position: absolute;
    top: -60px;
    left: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    justify-content: space-around;
    align-items: center;
}

.popup-container:hover .popup-content {
    display: block;
    z-index: 99;
}

.popup-left-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 500px;
}
.popup-left-right img {
    width: 50%;
    padding: 20px;
}
.popup-left-right p {
    width: 50%;
    padding: 20px;
    font-weight: lighter;
    color: rgba(0, 0, 0, 0.7) !important;
    font-size: 14px;
}

@media screen and (max-width:432px) {
    .popup-content { left: unset; width: unset; }
    .popup-left-right { width: 350px; }
}


/* Zoomable image */
/* Styles for the zoomed image container */
.zoom-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top of other content */
}

/* Styles for the zoomed image */
.zoomed-image {
    max-width: 80%; /* Adjust as needed */
    max-height: 80%; /* Adjust as needed */
    animation: zoomIn 0.5s forwards; /* Animation for zooming in */
}

/* Keyframe animation for zooming in */
@keyframes zoomIn {
    from {
        transform: scale(0.1); /* Start from small size */
    }
    to {
        transform: scale(1); /* End at original size */
    }
}
