@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
html{
    scroll-behavior: smooth;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
a{
    text-decoration: none;
    color: var(--color-text);
}

:root{
    --color-text: #475467;
    --color-main: #1f1f7a;
    --color-white: #ffffff;
    --color-table-bg: #C3C3FF;
}
nav{
    max-width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
select{
    cursor: pointer;
}

.nav_menu{
    padding-right: 200px;
}
.nav_menu ul{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.trans_btn{
    color: var(--color-text);
    background-color: transparent;
    outline: none;
    border: none;
    padding: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.main_btn{
    padding: 10px 15px;
    background-color: var(--color-main);
    color: white;
    border: none;
    outline: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}
header{
    border: 1px solid rgba(211, 211, 211, 0.456);
    padding: 10px;
}



main{
    max-width: 100vw;
    margin-left: 30px;
    margin-top: 20px;
    display: flex;
    /* align-items: center; */
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 75px;
}

.flex{
    display: flex;
    align-items: center;
    justify-content: center;
}
.main_content{
    width: 50%;
}
.main_content h1{
    font-weight: 700;
    margin-bottom: 5px;
}

.header_sub{
    color: var(--color-text);

}

.main_header{
    border-bottom: 1px solid rgba(211, 211, 211, 0.456);
    width: 100%;
    padding-bottom: 10px;
}
ul.breadcrumb {
    padding-top: 10px;
    list-style: none;
  }
ul.breadcrumb li {
    color: var(--color-main);
    display: inline;
    font-size: 13px;

}
.actived_link{
    font-weight: 600;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  text-decoration: none;
}

ul.breadcrumb li a:hover {
  text-decoration: underline;
}

.breadcrumb_img{
    padding-top: 5px;
    width: 16px;
}





.main_form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    background-color: #F9FAFB;
    margin-top: 20px;
    width: 100%;
    border-radius: 15px ;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.056);
}
.main_form form{
    background: #F9FAFB;
}
.ml-35{

    margin-left: 35px;
}

.step-wizard {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.step-wizard-list{
    color: #333;
    list-style-type: none;
    border-radius: 10px;
    display: flex;
    padding: 0;
    position: relative;
    z-index: 10;
}

.step-wizard-item{
    padding: 0 20px;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive:1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-width: 145px;
    position: relative;
}
.step-wizard-item:not(:last-child):after{
    content: "";
    position: absolute;
    right: 0;
    top: 15px;
    background: var(--color-main);
    width: 100%;
    height: 2px;
    transform: translateX(50%);
    z-index: -10;
}
.current_item ~ .step-wizard-item:after{
    content: none;
}
.step-wizard-item:not(:last-child) .progress-bar_middle{
    content: "";
    position: absolute;
    left: 50%;
    top: 14px;
    background: #DEDEFF;
    width: 100%;
    height: 4px;
    z-index: -10;
}
.current_item.step-wizard-item:not(:last-child):before {
    content: "";
    height: 4px;
    width: 4px;
    background: var(--color-main);
    position: absolute;
    left: 99%;
    top: calc(22%);
    border-radius: 50%;
    z-index: 0;
}
.current_item.step-wizard-item:not(:last-child):after{
    width: 50%;
    transform: none;
}
.progress-count{
    height: 30px;
    width:30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    z-index:10;
    color: var(--color-main);
    border: 2px solid var(--color-main);
    background: var(--color-white);
}
.current_item.step-wizard-item .progress-count{
    background: var(--color-main);
    color: var(--color-white);
}
/*.progress-count:after{*/
/*    content: "";*/
/*    height: 30px;*/
/*    width: 30px;*/
/*    background: var(--color-main);*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    top: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    border-radius: 50%;*/
/*    z-index: -10;*/
/*}*/
/*.progress-count:before{*/
/*    content: "";*/
/*    height: 30px;*/
/*    width: 30px;*/
/*    background: var(--color-main);*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    top: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    border-radius: 50%;*/
/*    z-index: -10;*/
/*}*/
.progress-label{
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}

.current_item .progress-count:before,
.current_item ~ .step-wizard-item .progress-count:before{
    display: none;
}
.current_item ~ .step-wizard-item .progress-label{
    opacity: 1;
}
.current_item .progress-count:after{
    border: 2px solid var(--color-main);
}
.current_item .progress-count{
    color: var(--color-white);
}
.progress-count svg {
    position: absolute;
    height: 100%;
    width: 100%;
    transform: scale(1.5);
    z-index: -1;
}
.progress-count svg.ellipse2{
    transform: scale(1.8);
}
.step-wizard-item:not(.current_item) .progress-count svg{
    display: none;
}
.completed_item.step-wizard-item .progress-count svg{
    display: none;
}
.completed_item .progress-count{
    background: var(--color-main);
    color: var(--color-white)
}
.top_inputs{
    display: flex;
    justify-content: space-around;
    gap: 150px;
    align-items: center;
    margin-top: 30px;
}
.size_input{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.size_input input{
    width: 100%;
}
label{
    color: var(--color-text);
    font-weight: 500;
}
input{

    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    border: 1px solid lightgray;
}


.area_types{
    margin-top: 20px;
}
/*input[type='radio']:after {*/
/*    width: 15px;*/
/*    height: 15px;*/
/*    border-radius: 15px;*/
/*    top: -2px;*/
/*    left: -1px;*/
/*    position: relative;*/
/*    background-color: #d1d3d1;*/
/*    content: '';*/
/*    display: inline-block;*/
/*    visibility: visible;*/
/*    border: 2px solid white;*/
/*}*/

/*input[type='radio']:checked:after {*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    border-radius: 15px;*/
/*    top: -2px;*/
/*    left: -1px;*/
/*    position: relative;*/
/*    background-color: var(--color-main);*/
/*    content: '';*/
/*    display: inline-block;*/
/*    visibility: visible;*/
/*    border: 3px solid white;*/
/*    box-shadow: 0px 0px 5px 1px rgba(31, 31, 122, 0.534);*/
/*}*/
.area_type label{
    font-weight: 400;
    margin-left: 5px;
    font-size: 15px;
}

.Soil_type{
    display: flex;
    flex-direction: column;
}
.Soil_type{
    margin-top: 25px;
}
.options_inputs{
    margin-top: 30px;
}
.options_input{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}
.options_input select{
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    border: 1px solid lightgray;
}
.form_button{
    /* width: 100%; */
    display: flex;
    align-items: center;
    text-align: center ;
    justify-content: center;
    margin-top: 20px;
    padding: 10px;
    background-color: var(--color-main);
    color: white;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 16px;
}
.form_button a{
    color: white;
    text-decoration: none;
}

.level_output{
    padding: 15px;
    margin-top: 30px;
    border-radius: 10px;
    gap: 30px;
    background-color: white;
    outline: 1px solid lightgray;
    /*min-width: 600px;*/
    /* margin-bottom: 50px; */
    cursor: pointer;
}


.level_output h3{
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 16px;
}
.level_output p{
    color: #7F7FAE;
    font-weight: 500;
    font-size: 15px;
}
.pink{

    background-color: #EFEFF9;
}
.package{
    display: flex;
    gap: 5px;
    margin-top: 5px;
    align-items: center;
}

.packages_cost{
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 10px;
}

.form_trans_btn{
    display: flex;
    align-items: center;
    text-align: center ;
    justify-content: center;
    margin-top: 20px;
    padding: 10px;
    color: var(--color-main);
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 16px;
    background-color: transparent;
    font-weight: 700;

}
.form_btns{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
.form_btns button{
    cursor: pointer;
}




.main_img{
    width: 50%;
}
.main_img img{
    width: 550px;
    height: 500px;
    margin-top: 80px;
    float: right;
    /* background-attachment: fixed; */
    /* position: fixed;
    top: 50px;
    right: 0; */

}
.main_img1 img{
    width: 580px;
    margin-top: 50px;
}



.options_input2{
    width: 100%;
}
.options_input2 select{
    color: #b8bbc0;
}



.form_img{
    display: flex;
    align-items: center;
    justify-content: center;
}
.form_img img{
    width: 200px;
    margin-top: 50px;
}


.form_info{
    padding: 10px;
    margin-top: 25px;
    border: 1px solid #D9D9D9;
    background-color: white;
    border-radius: 5px;
}
.form_info h3{
    font-weight: 400;
}
.info_section{
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}
.label_t{
    font-weight: 700;
    margin-bottom: 5px;
}
.info_price{
    color: #545454;
    font-weight: 300;
}

.main{
    max-width: 100vw;
    margin-left: 30px;
    margin-top: 20px;
    display: flex;
    /* align-items: center; */
    flex-direction: row;
    /* justify-content: space-between; */
    margin-bottom: 75px;
}

.calculator_form{
    display: flex;
    /* margin-left: 100px; */
    margin-top: 50px;
    background-color: white;
    box-shadow: 12px 12px 36px 6px #0202461F;
    width: 80%;
    /*height: 550px;*/
    padding: 30px;
    border-radius: 20px;
}
.cal_title{
    font-weight: 600;
    margin-bottom: 10px;
}
.calculator_main input::placeholder{
    color: #667085;
}
.calculator_main input{
    width: 100%;
}
.calculator_main{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.calculator_main label{
    margin-top: 30px;
}
.calculator_main button{
    margin-top: 20px;
    border: none;
    outline: none;
    padding: 15px;
    width: 100%;
    cursor: pointer;
    background-color: #020246;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}






.center_main{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 75px;
}

.package p{
    font-size: 13px;
}
.span{
    font-size: 12px;
}
.package img{
    width: 20px;
}
.package_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #1F1F7A;
    color: white;
    border: none;
    outline: none;
    margin-top: 40px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}
.package_btn button{
    color: white;
    background: transparent;
    outline: none;
    border: none;
}
div#parentdiv {
    position: relative;
    top: 60px;
    bottom: 0;
    z-index: 1;
    left: 0;
}
#parentdiv tr td{
    text-wrap: none;
    white-space: nowrap;
    font-size: 8px;
}


@media only screen and (max-width: 768px) {
    .current_item.step-wizard-item:not(:last-child):before{
        top: calc(18%);
    }
    #parentdiv{
        width: 100%
    }
    .step-wizard-item:not(:last-child):after{
        top: 12px;
    }
    .step-wizard-item:not(:last-child) .progress-bar_middle{
        top: 11px;
    }
    .side-image-container figure img{
        margin: 0;
    }
    nav{
        flex-direction: column;
    }
    .nav_btn{
        display: none;
    }
    .nav_logo img{
        width: 300px;
    }
    .nav_menu{
        padding: 0;
        margin-top: 20px;
    }
    .nav_menu ul li{
        font-size: 13px;

    }
    main{
        margin-left: 20px;
        margin-right: 20px;
    }
    .main_img{
        display: none;
    }
    .main_content{
        width: auto;
    }
    .ml-35{
        margin: 0;
        margin-top: 50px;
    }
    .top_inputs{
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    .step-wizard-item{
        min-width: auto;
        padding: 0 10px;
    }
    form{
        width: 90%;
    }
    .center_main {
        justify-content: flex-start;
        /* margin-left: 20px; */
        /* margin-right: 20px; */
    }
    .step-wizard{
        justify-content: flex-start;
    }
    .flex{
        flex-direction: column;
    }
    .main_form{
        padding: 15px;
        width: 100%;
    }
    .main_header{
        margin-left: 10px;
    }
    .main_breadcrumb{
        margin-left: 10px;
    }
    .packages_cost{
        flex-wrap: wrap;
    }
    .packages_cost{
        gap: 20px;
    }
    .package_btn{
        margin-bottom: 50px;
    }
    .main_img1 img{
        display: none;
    }
    .options_input2{
        width: auto;
    }
    .main{
        flex-direction: column;
    }
    .calculator_form{
        margin-left: 0;
        width: auto;
    }
    .calculator_main input{
        width: auto;
    }
    .calculator_main button{
        width: auto;
    }
  }


@media only screen and (max-width: 648px){
    .progress-count{
        height: 25px;
        width: 25px;
        font-size: 12px;
    }
    .progress-label{
        font-size: 8px;
    }
}

.table-theme {
    -moz-border-radius: 10px !important;
    border-radius: 10px !important;
    border-collapse: collapse !important;
}
.table-theme>:not(caption)>*>* {
    padding: 10px;
    border-width:  0 0.5px;
}
.table-theme>:not(caption)>*>th {
    background: var(--color-main);
    color: var(--color-white);
    border-top: 1px solid var(--color-main);
}
.table-theme th:first-child {
    -moz-border-radius: 5px 0 0 0 !important;
    border-radius: 10px 0 0 0 !important;
    border-left: 1px solid var(--color-main);
}
.table-theme th:last-child {
    -moz-border-radius: 0 10px 0 0 !important;
    border-radius: 0 10px 0 0 !important;
    border-right: 1px solid var(--color-main);
}
.table-theme tr:last-child td:first-child {
    -moz-border-radius: 0 0 0 5px !important;
    border-radius: 0 0 0 5px !important;
}
.table-theme tr:last-child td:last-child {
    -moz-border-radius: 0 0 5px 0 !important;
    border-radius: 0 0 5px 0 !important;
}
.table-theme tbody tr:nth-of-type(odd) {
    background-color: var(--color-table-bg);
}

.table-theme tr:last-child td{
    border-bottom: 1px solid var(--color-main);
}
.table-theme td:first-child {
    border-left: 1px solid var(--color-main);
}
.table-theme td {
    border-right: 1px solid var(--color-main);
}






/* Accordion Styles */
.accordion {
    width: 100%;
    max-width: 600px;
    margin: auto;
    margin-top: 50px;
  }

  .accordion-item {
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 16px;
  }

  .accordion-button {
    padding: 16px;
    background: #FFF;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-radius: 4px;
  }

  .accordion-button i.icon {
    float: right;
    color: #FF5A5F;
  }

  /* Updated Accordion Content Styles */
  .accordion-content {
    padding: 0 11px;  /* Set padding to 0 initially */
    max-height: 0;  /* Set max-height to 0 */
    overflow: hidden;  /* Hide overflow */
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;  /* Add transition effect */
    /* background: #f6f6f6; */
    background: white;
    border-top: 1px solid #ccc;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
  }

  /* New Class for Expanded Content */
  .accordion-content.show {
    max-height: 200px;  /* Set an appropriate max-height */
    padding: 14px;  /* Reset the padding */
    transition: max-height 0.3s ease-in, padding 0.3s ease-in;  /* Add transition effect */
  }

  .accordion-content p{
    margin-bottom: 15px;
    padding-bottom: 5px;
    cursor: pointer;
    border-bottom: 1px solid var(--color-main);
  }
