body {
   
    font-family: Arial, sans-serif;
    background: url('images/BG.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.container {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
}

.card {
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    margin-bottom: 20px;
}

.btn-danger,
.btn-success {
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-group-text,
.form-control {
    border-radius: 0;
}

.text-center a {
    color: #038476;
    text-decoration: none;
}

.text-center a:hover {
    text-decoration: underline;
}

.button-row {
    display: flex;
    justify-content: space-between;
}

.btn-custom {
    background-color: #038476;
    color: white;
}

.sub-options {
    display: none;
    margin-left: 20px;
    padding: 10px;
    border-radius: 5px;
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sub-options .form-check-input {
    margin-right: 10px;
}

.sub-options .form-check-label {
    margin-bottom: 5px;
}

.arrow-icon {
    margin-left: 5px;
}

.form-check-input:checked+.form-check-label::before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    margin-right: 10px;
    color: #093732;
}

.form-check-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.form-check-label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
}

.form-check-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fff;
}

.form-check-input:checked+.form-check-label::before {
    background-color: #093732;
    border-color: #093732;
}

.form-check-label::after {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 4px;
    top: 0;
    width: 20px;
    height: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.form-check-input:checked+.form-check-label::after {
    opacity: 1;
}

.custom-control-label::before,
.custom-control-label::after {
    top: 0.8rem;
    width: 1.2rem;
    height: 1.2rem;
}

.custom-control-label::before {
    border: 2px solid #dcdcdc;
    border-radius: 50%;
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: #038476;
    border-color: #038476;
}

.custom-control-input:checked~.custom-control-label::after {
    background-color: #038476;
    color: white;
    border-radius: 50%;
}

.custom-control-label {
    padding-left: 2rem;
    display: flex;
    align-items: center;
}

.custom-control-label img {
    width: 150px;
    height: 100px;
    border-radius: 10px;
}

.custom-control-label .description {
    margin-left: 15px;
}

.custom-control-label .description h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
}

.custom-control-label .description p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

.custom-control-label .features {
    margin-top: 10px;
}

.custom-control-label .features i.green-check {
    color: #093732;
    /* Set color to green */
    margin-right: 5px;
}

.custom-control-label .features span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .custom-control-label {
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-control-label img {
        width: 100%;
    }

    .custom-control-label .description {
        margin-left: 0;
        margin-top: 10px;
    }
}

.sub-options {
    display: none;
    padding-left: 20px;
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-buttons {
    display: flex;
    justify-content: space-between;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.card {
    margin: 10px;
}

/* New CSS for Estimate Details Card */

.estimate-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.estimate-header {
    background: #038476;
    color: #ffffff;
    padding: 15px 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    text-align: center;
}

.estimate-body {
    padding: 20px;
}

.estimate-body p {
    font-size: 18px;
    line-height: 1.6;
}

.estimate-body ul {
    padding-left: 20px;
}

.estimate-body li {
    font-size: 16px;
    margin-bottom: 8px;
}

.estimate-footer {
    padding: 15px 20px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    text-align: right;
}

.estimate-footer .btn {
    background-color: #038476;
    border-color: #038476;
    color: #ffffff;
    transition: all 0.3s ease;
}

.estimate-footer .btn:hover {
    background-color: #065c7a;
    border-color: #065c7a;
}

/* New CSS for Progress Bar */

.progress-bar-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.progress-bar-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.progress-bar-step:not(:last-child)::after {
    content: '';
    width: 100%;
    height: 2px;
    background: #6c757d;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(50%);
}

.progress-bar-step.active::after {
    background: #28a745;
}

.progress-bar-step .step {
    width: 20px;
    height: 20px;
    background: #6c757d;
    border-radius: 50%;
    display: inline-block;
}

.progress-bar-step.active .step {
    background: #28a745;
}

.progress-bar-step span {
    display: block;
    margin-top: 10px;
}
 