.slider-bg.slider_a-green-vision {
    min-height: 600px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;   
    justify-content: center;
}
.slider-bg:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
}
.page__title-wrapper {
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.page__title-wrapper ul li {
    display: inline-block;
    padding: 0 10px;
    position: relative; 
}
.page__title-wrapper ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
}
.page__title-wrapper ul li span {
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
}
.page__title-wrapper ul li span:before {
    content: "";
    background: rgba(255, 255, 255, 0.5);
    height: 15px;
    width: 2px;
    position: absolute;
    left: -3px;
    top: 5px;
}

.page__title {
    font-size: 70px;
    color: #fff;
    line-height: 62px;
    margin-bottom: 0;
}
.calculator h2 {
    font-weight: 600;
    font-size: 40px;
}
.calculator .card {
    border-radius: 15px;
    overflow: hidden;
}

.card-height-100 .card {
    box-shadow: 0 0 20px #e5e5e5;
}

.calculator-icon .card {
    border-radius: 15px !important;
    box-shadow: 0 0 2px rgb(0 0 0 / 50%);
    transition: all 0.2s;
}

.calculator-icon .card:hover {
    box-shadow: 0 0 9px rgb(9 87 99);
}

.calculator-icon svg {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    padding: 10px;
    border-radius: 5px;
}

#calculateButton {
    background: #095763;
    color: #fff;
    padding: 17px 0 !important;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid #fff;
    font-weight: 600;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 12px rgb(9 87 99 / 20%);
}

#calculateButton svg {
    margin: 0 10px 0 0;
    width: 20px;
    height: 20px;
}

#calculateButton:hover {
    background: #fff;
    color: #095763;
    border: 2px solid #095763;
}

.calculator input,
.calculator-dropdown {
    height: 60px;
    background: #f5f5f5;
    border-radius: 10px;
}

.radio-box input {
    height: auto;
}

.calculator-card {
    border-radius: 25px !important;
    overflow: hidden;
    box-shadow: 0 13px 20px rgb(0 0 0 / 20%);
}

.calculator ul li .calculator-icon svg {
    width: 40px;
    height: 40px;
    padding: 10px;
    background: #e6eeef;
    border-radius: 25px;
    fill: #095763;
}

.calculator ul li .calculator-icon {
    margin-right: 10px;
}

.calculator ul li {
    display: flex;
}

.calculator-text h6 {
    font-weight: 700;
}

.card-header .card-title {
    font-weight: 600;
}

.input-tabs {
    display: flex;
    gap: 12px;
}

.tab-btn {
    flex: 1;
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: grid;
    font-weight: 600;
}

.calculator .tab-btn svg {
    margin: 0 auto 10px;
    width: 20px;
    height: 20px;
}

.tab-btn i {
    display: block;
    font-size: 20px;
    margin-bottom: 6px;
}

.card-header svg {
    margin-right: 10px;
    width: 25px;
    height: 22px;
    fill: #095763;
}

.tab-btn.active {
    background: #e6f4f1;
    border-color: #0f766e;
    color: #0f766e;
    font-weight: 600;
}

.tab-btn:hover {
    border-color: #0f766e;
}
@media (max-width: 768px) {
    .page__title {
        font-size: 50px;
        font-weight: 600;
    }
}
@media (max-width: 575px) {
    .page__title {
        font-size: 42px;
    }
    .calculator h2 {
        font-size: 28px;
    }
}