@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --primary: #018F58;
    --dark-green: #071A0D;
    --light-green: #7DD543;
    --dark2-green: #192A1E;
    --light-green-20: rgba(125, 213, 67, 0.20);
    --light-green-04: rgba(125, 213, 67, 0.04);
    --red: #CC3232;
    --red-50: rgba(204, 50, 50, 0.50);
    --red-70: rgba(204, 50, 50, 0.70);
    --light-red: #F9E6E6;
    --black-70: rgba(0, 0, 0, 0.7);
    --black: rgba(0, 0, 0, 1);
    --black-04: rgba(0, 0, 0, 0.04);
    --black-40: rgba(0, 0, 0, 0.40);
    --black-50: rgba(0, 0, 0, 0.50);
    --black-12: rgba(0, 0, 0, 0.12);
    --grey: #F7F7F7;
    --bg-grey: #F3F3F3;
    --yellow: #F8D87E;
    --white: #ffffff;
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-12: rgba(255, 255, 255, 0.12);
    --font-primary: "Inter", sans-serif;
    --transition: .3s all ease-in-out;
    --fs16: 16px;
    --fs14: 14px;
}


/* Global CSS */

body {
    font-family: var(--font-primary);
    line-height: 1.5;
    font-size: var(--fs16);
    background-color: var(--white);
    font-weight: 400;
}

body,
html {
    height: 100%;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 56px;
    font-weight: 500;
}

h2 {
    font-size: 48px;
    font-weight: 500;
}

h2 span {
    color: var(--primary);
    font-weight: 700;
}

::-moz-selection {
    /* Code for Firefox */
    color: var(--white-70);
    background: var(--primary);
}

::selection {
    color: var(--white-70);
    background: var(--primary);
}

.color-grey {
    color: var(--black-70);
}

.color-white {
    color: var(--white-70);
}

.color-red {
    color: var(--red);
}

.color-green {
    color: var(--primary);
}

.bg-grey {
    background-color: var(--bg-grey) !important;

}

.bg-dark-green {
    background-color: var(--dark-green);
}

.br-24 {
    border-radius: 24px;
}

.br-16 {
    border-radius: 16px !important;
}

.p-2rem {
    padding: 2rem;
}

.py-2rem {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.px-80 {
    padding-left: 80px;
    padding-right: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.py-75 {
    padding: .75rem 0;
}

.px-75 {
    padding: 0 .75rem;
}

.px-32 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
}

.gx-75 {
    --bs-gutter-x: .75rem
}

.gx-32 {
    --bs-gutter-x: 2rem
}

.gy-32 {
    --bs-gutter-y: 2rem
}

.gy-75 {
    --bs-gutter-y: .75rem
}

.mb-36 {
    margin-bottom: 2.25rem;
}

.mb-60 {
    margin-bottom: 3.75rem;
}

.my-60 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.mt-80 {
    margin-top: 5rem;
}

.gap-80 {
    gap: 5rem;
}

.gap-12 {
    gap: .75rem;
}

.gap-32 {
    gap: 32px;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fs-36 {
    font-size: 2.25rem;
}

.fs-18 {
    font-size: 1.125rem;
    line-height: 1.8;
}

.fs-16 {
    font-size: 1rem;
}

.fs-20 {
    font-size: 1.25rem;
}

.fs-24 {
    font-size: 1.5rem;
}

ul {
    list-style: none;
    padding: 0;
}

.complaint {
    background: #ccc;
    padding: 8px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    color: #555;
}

.btn-primary,
.btn-white {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: var(--fs16);
    padding: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
}

.spinner {
    border: 2px solid #f3f3f3;
    /* Light gray */
    border-top: 2px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn-white {
    background-color: var(--white);
    border: 1px solid var(--black-12);
    color: var(--black);
}

.btnLeftIcon {
    padding-left: 32px;
}

.btnRightIcon {
    padding-left: 24px;
    padding-right: 32px;
}

.card {
    border-radius: 12px;
    border: 1px solid var(--white);
    padding: 16px;
    background-color: var(--white)
}

.card.red {
    background-color: var(--light-red);
    border-color: var(--red-50);
}

.card.grey {
    background-color: var(--grey);
    border-color: var(--grey);
}

.card.green {
    background-color: var(--light-green-20);
    border-color: var(--light-green-20);
}

hr.primary {
    border: 1px solid var(--primary);
}

.formStyle {
    position: relative;
    background-color: rgba(125, 213, 67, 0.12);
    border: 1px solid rgba(125, 213, 67, 0.24);
    padding: 8px 8px 8px 24px;
    border-radius: 50px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.formStyle input,
.formStyle select {
    color: var(--white-70);
    outline: none;
    border: 0;
    width: 100%;
    height: 50px;
    background-color: transparent;
    font-size: 20px;
}

.formStyle button {
    color: var(--white-70);
    outline: none;
    border: 0;
    font-size: var(--fs16);
    text-wrap: nowrap;
    font-weight: 500;
}

.formStyle button.sendMail {
    border: 1px solid rgba(255, 255, 255, 0.43);
    background: var(--white-12);
    color: var(--white);
}

.formStyle select {
    color: var(--white-70);
    font-size: var(--fs16);
    background-size: 24px 21px;
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");

}

.formStyle select:focus {
    box-shadow: none;
}

.formStyle select option {
    font-size: var(--fs16);
    color: var(--black-70);
    padding: 12px 20px;
}

.formStyle select option:hover {
    border-radius: 10px;
    background: #EBEBEB;
}

.formStyle .error-message {
    position: absolute;
    bottom: -30px;
    left: 32px;
    color: var(--light-green);
}

.error-message {
    /* position: absolute; */
    bottom: -30px;
    left: 32px;
    color: var(--light-green);
}

.topHeader {
    background-color: var(--dark-green);
    /* position: relative; */
}

.topHeader ul {
    gap: 48px;
    padding-top: 14px;
    padding-bottom: 14px;
    margin-bottom: 0;
    display: flex;
    white-space: nowrap;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.topHeader ul li {
    color: var(--white);
    font-size: var(--fs14);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    text-wrap: nowrap;
}

.topHeader ul li:after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    height: 10px;
    width: 1px;
    background-color: var(--white-50);
}

.topHeader ul li:last-child::after {
    display: none;
}




/* Navbar CSS */

.navbar {
    background-color: var(--white);
    box-shadow: 0px 4px 12px 0px rgba(94, 107, 153, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 103px;
}

.navbar form {
    width: 100%;
    max-width: 288px;
}

.navbar form input {
    border-radius: 50px;
    border: 1px solid var(--black-12);
    padding: 8px 16px;
    width: 100%;
}

.navbar .nav-item a.nav-link {
    color: var(--black-70);
    font-size: var(--fs14);
    font-weight: 500;
    line-height: 1.2 !important;
}

.navbar .navbar-collapse {
    gap: 48px;
}

.navbar .navbar-nav {
    width: 100%;
    max-width: 750px;
    justify-content: space-between;
}

.navStyle.fixed-top {
    top: 49px;
    transition: .3s all ease;
}

.navStyle.fixed-top.shrink {
    top: 0px;
}

.navIcon .nav-link {
    padding: 0.5rem;
    gap: .5rem;
}

.navStyle .navbar-toggler {
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-right: 1rem;
}


main {
    padding-top: 100px;
}




/* Header Section */

/* .headerSec{
    transition: .3s all ease;
} */
.headerSec .leftSide {
    padding-right: 60px;
}

.headerSec .rightSide {
    /* height: 100vh;
    padding-bottom: 40px; */
    height: calc(100vh - 131px);
    padding-bottom: 30px;
}

.headerSec .rightSide .rightSideIn {
    background-color: var(--primary);
    background-image: url(../images/swatch.png);
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 0px 0px 28px 28px;
    /* height: auto; */
    height: 100%;
    min-height: 586px;
    position: relative;
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    padding: 16px;
    /* align-items: first baseline; */
    /* gap: 116px; */
    overflow: hidden;
    flex-direction: column;
}

.headerSec .rightSideIn .rightSideImg {
    position: absolute;
    left: 0;
    top: 30px;
    width: 100%;
    height: calc(100% - 50px);
    overflow: hidden;
}

.headerSec .rightSideIn .rightSideImg img {
    width: 100%;
}

.headerSec .rightSideIn .trustpilot-logo {
    width: 120px;
    height: auto;
}

.headerSec .rightSideIn .warning-badge {
    padding: 8px 0px 8px 8px;
    background-color: var(--white);
    border-radius: 30px;
    display: inline-flex;
    position: relative;
    z-index: 2;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0px 14px 24px 0px var(--black-40);
    cursor: pointer;
}

.headerSec .rightSideIn .warning-badge img {
    height: 44px;
    margin-right: 8px;
}

.headerSec .rightSideIn .warning-badge p {
    width: 0;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 0;
    transition: var(--transition);
    overflow: hidden;
    text-wrap: nowrap;
}

.headerSec .rightSideIn .warning-badge:hover {
    padding: 8px;
}

.headerSec .rightSideIn .warning-badge:hover p {
    width: 147px;
}

.headerSec .rightSideIn .white-card {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    background-color: var(--white);
    padding: 16px;
}

.headerSec .rightSideIn .white-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
}

.headerSec .rightSideIn .white-card h2 {
    font-size: 24px;
    font-weight: 700;
}

.headerSec .rightSideIn .white-card p {
    font-size: var(--fs14);
    color: var(--black-50);
}

.headerSec .rightSideIn .white-card .card.red p {
    color: var(--red-70);
}

.headerSec .rightSideIn .white-card ul {
    min-height: 105px;
}

.headerSec .rightSideIn .white-card .whiteCardInMobile {
    display: none !important;
}


/* Steps CSS */

.sectionWrap2 .mobileBtn {
    display: none;
    text-align: center;
}

.step-card {
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid transparent;
    background: transparent;
    height: 100%;
    transition: var(--transition);
}

.step-card img {
    height: 100px;
    margin-bottom: 2.25rem;
}

.step-card .step-heading {
    margin-bottom: 1.25rem;
}

.step-card .step-heading span {
    color: var(--white-50);
    display: block;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
}

.step-card .step-heading h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.75;
}

.step-card p {
    color: var(--white-70);
    margin-bottom: 0;
    line-height: 1.25;
    font-size: var(--fs14);
}

.step-card:hover {
    border: 1px solid var(--primary);
    background: var(--dark2-green);
}

.step-card:hover .step-heading span {
    color: var(--light-green);
}

/* Renovation CSS */

.renovationSec .image-card {
    width: 100%;
    max-width: 401px;
    min-width: 401px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    height: -webkit-fill-available;
}

.renovationSec .image-card img.image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.renovationSec .image-card .white-card {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    background-color: var(--white);
    padding: 16px;
    width: calc(100% - 30px);
}

.renovationSec .image-card .white-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
}

.renovationSec .image-card .white-card h2 {
    font-size: 18px;
    font-weight: 700;
}

.renovationSec .image-card .white-card p {
    font-size: var(--fs14);
    color: var(--black-50);
    letter-spacing: -0.5px;
    text-wrap: nowrap;
}

.renovationSec .image-card .white-card .card.red p {
    color: var(--red-70);
    font-size: var(--fs14);
    letter-spacing: -0.5px;
}

/* Steps CSS */

.stepSec {
    padding-top: 110px;
    background-image: url(../images/swatch-bg.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.headingSec {
    width: 100%;
    max-width: 800px;
}

.stepContainer {
    border-radius: 24px;
    padding: 60px;
    background-color: var(--dark-green);
    display: flex;
    gap: 60px;
    position: relative;
    overflow: hidden;
    min-height: 550px;
}

.stepContainer .stepResult {
    width: 100%;
    /* max-width: 429px; */
    padding: 24px;
    min-height: 411px;
    border-radius: 8px;
    background-color: #1e2d24;
}

.stepContainer .stepResultIn {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    height: 100%;
    display: none;
}

.stepContainer .stepResultIn.active {
    display: flex;
}

.stepContainer .stepResult span.line {
    height: 55px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.20);
    display: inline-block;
}

.stepContainer .stepResult .white-card {
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFF;
    box-shadow: 0px 14px 34px 0px rgba(57, 64, 102, 0.09);
    display: flex;
    width: 100%;
    padding: 8px 3px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.stepContainer .stepResult .white-card p {
    color: var(--black);
    font-size: var(--fs14);
    font-weight: 600;
    margin-bottom: 0;
}

.stepContainer .stepResult .stepResultIn#stepResult-2 {
    justify-content: space-between;
}

.stepContainer .stepResult .stepResultIn ul {
    width: 100%;
}

.stepContainer .stepResult .stepResultIn ul li {
    border-bottom: 2px dashed rgba(255, 255, 255, 0.08);
    padding-top: 12px;
    padding-bottom: 12px;
}

.stepContainer .stepResult .stepResultIn ul li:last-child {
    border: none;
    padding-bottom: 0;
}

.stepContainer .stepResult .stepResultIn ul li:first-child {
    padding-top: 0;
}

.stepContainer .stepResult .stepResultIn ul li p {
    color: var(--white-70);
    font-size: var(--fs16);
    font-weight: 400;
    margin-bottom: 0;
}

.stepContainer .stepResult .stepResultIn ul li h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 0;
}

.stepContainer .stepResult .stepResultIn#stepResult-2 .btn-primary {
    padding: 16px 20px;
    border-radius: 12px;
    justify-content: space-between;
}

.stepContainer .stepResult .stepResultIn#stepResult-2 .btn-primary p {
    color: var(--white);
    font-size: var(--fs16);
    font-style: normal;
    font-weight: 500;
    max-width: 80px;
    margin: 0;
}

.stepContainer .stepResult .stepResultIn#stepResult-2 .btn-primary h3 {
    color: var(--white);
    font-size: 36px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.stepContainer .stepResult .stepResultIn#stepResult-2 .btn-primary h3 span {
    color: rgba(255, 255, 255, 0.30);
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
}




.stepContainer .stepBar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stepContainer .stepBar h4 {
    color: #F8D87E;
    font-size: var(--fs16);
    font-weight: 700;
    width: 70px;
    margin-bottom: 0;
    text-transform: uppercase;
}


.stepContainer .bar {
    background-color: #25352A;
    border-radius: 30px;
    height: 8px;
    width: 100%;
    position: relative;
    transition: var(--transition);
}

.stepContainer .bar:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 30%;
    border-radius: 30px;
    background-color: #F8D87E;
    transition: 1s all ease;
}

.stepContainer .bar.active:after {
    max-width: 100%;
}

.stepContainer .form-step h3 {
    color: var(--white);
    font-size: 2.25rem;
}

.stepContainer .form-step p {
    color: var(--white-70);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.stepContainer #terms-container {
    font-size: var(--fs16);
    font-weight: 400;
    color: var(--white-70);
    margin-top: 1rem;
}

.stepContainer input[type="checkbox"] {
    /* Hide default checkbox */
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid #018F58;
    /* Green border */
    padding: 5px;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* When the checkbox is checked, this styles the checkmark */
.stepContainer input[type="checkbox"]:checked {
    background-color: #018F58;
    /* Green background */
    border: 2px solid #018F58;
    /* Green border */
}

.stepContainer input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


/* Custom tooltip styling */
.tooltip {
    background-color: var(--primary) !important;
    border-radius: 8px;
}

.tooltip-inner {
    background-color: var(--primary) !important;
    color: white !important;
    text-align: left;
}

/* Align arrow to the left */
.tooltip.bs-tooltip-bottom .tooltip-arrow {
    left: 10% !important;
    /* Adjust this value for alignment */
    margin-left: 0;
}

/* Tooltip arrow customization */
.tooltip-arrow::before {
    border-bottom-color: var(--primary) !important;
    /* Make the arrow green */
}

.stepContainer .step3Card {
    gap: 20px;
    display: flex;
    flex-direction: column;

}

.repairCard {
    display: flex;
    padding: 24px 24px 24px 36px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 40px;
    background: #FFF;
    margin-top: 3rem;
}

.stepContainer .repairCard h3 {
    color: var(--black);
    font-size: 18px !important;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 30px;
}

.stepContainer .repairCard p {
    color: var(--black-70);
    font-size: 14px !important;
    font-weight: 400;
    margin: 0;
}

.stepContainer .divideLine {
    position: relative;
    text-align: center;
}

.stepContainer .divideLine:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background-color: var(--white-12);
}

.stepContainer .divideLine span {
    padding: 0 16px;
    color: var(--white-70);
    font-size: var(--fs16);
    background-color: var(--dark-green);
    display: inline-block;
    position: relative;
}

.form-step.formStep4.active {
    opacity: 1;
    display: block;
}

.stepContainer .formStep4 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background-color: var(--dark-green);
    transition: var(--transition);
    opacity: 0;
}

.formStepIn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 24px;
    flex-direction: column;
}

.formStepIn .tickIcon {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    width: 97px;
    height: 97px;
}

.formStepIn h2 {
    color: var(--white);
    text-align: center;
    font-size: 36px;
    font-weight: 500;
}

.formStepIn span {
    display: block;
    color: var(--white-70);
    text-align: center;
    font-size: 20px;
}

.formStepIn button {
    border: 1px solid rgba(255, 255, 255, 0.43);
    background: var(--white-12);
    color: var(--white);
    padding: .75rem 2rem;
}



/* Product Section */

.productSec {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--primary);
}

.productCard {
    padding: 8px 8px 16px;
    border-radius: 16px;
    border: 1px solid var(--black-12);
    background: var(--white);
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.05);
    gap: 10px;
}

.productCard .productImg {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.productCard .productImg .previewImg {
    height: 190px;
    border-radius: 12px;
    overflow: hidden;
    background: #F0F0F0;
}

.productCard .productImg .previewImg img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: center;
}

.productCard .productImg .imageThumbnails {
    display: flex;
    flex-direction: row;
    gap: 6px;
}

.productCard .productImg .imageThumbnails li {
    width: 100%;
    height: 88px;
    border-radius: 12px;
    overflow: hidden;
    background: #F0F0F0;
}

.productCard .productImg .imageThumbnails li img {
    object-fit: cover;
    width: 100%;
    object-position: center;
    top: 50%;
    transform: translateY(-50%);
    position: relative;
}

.productCard .productDetail {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.productCard .productDetail .productHeading {
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 12px;
    padding-right: 12px;
    gap: 6px;
}

.productCard .productDetail .productHeading h3,
.productCard .productDetail .productHeading span {
    color: var(--black);
    font-size: var(--fs14);
    font-weight: 500;

}

/* .productCard .productDetail .productHeading h3{
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
} */

.productCard .productDetail .productHeading p {
    color: var(--black-50);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
}

.productCard .productDetail .productHeading span {
    text-transform: uppercase;
    text-wrap: nowrap;
}


.productCard .productDetail .btn-white {
    border-color: var(--primary);
    background-color: var(--light-green-20);
    color: var(--dark-green);
    font-size: var(--fs14);
    padding: 12px 20px;
    display: block;
    text-align: center;
    font-weight: 500;
}


#productList {
    position: relative;
}

#productList .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    transition: var(--transition);
}

#productList .owl-nav .owl-prev,
#productList .owl-nav .owl-next {
    position: absolute;
    padding: 12px;
    border-radius: 50%;
    background-color: var(--white);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}

#productList .owl-nav .owl-prev {
    left: -80px;
}

#productList .owl-nav .owl-next {
    right: -80px;
}

#productList .owl-nav .disabled {
    opacity: 0;
    transition: var(--transition);
}


/* FQA Section */
@media screen and (min-width: 767px) {
    .faqSec {
        padding-top: 170px;
        padding-bottom: 110px;
    }
}

.faqContainer {
    padding-bottom: 160px;
}

.faqSec .accordion-item button:focus {
    box-shadow: none;
}

.faqSec .accordion-item {
    border: 0;
}

.faqSec .accordion-item button.collapsed {
    background-color: var(--black-04);
    border-radius: 8px !important;
    font-size: 18px;
    color: var(--black);
    font-weight: 600;
    padding: 20px !important;
    border: 2px solid transparent;
}

.faqSec .accordion-item button {
    background-color: var(--light-green-04);
    border-radius: 8px !important;
    font-size: 18px;
    color: var(--black);
    font-weight: 600;
    padding: 20px !important;
    border: 2px solid var(--primary);
    border-bottom: 0px solid transparent;
    border-radius: 8px 8px 0 0 !important;
    box-shadow: none;
    transition: .6s all ease-in-out;
}

.faqSec .accordion-item .accordion-collapse {
    transition: var(--transition);
    border: 2px solid transparent;
}

.faqSec .accordion-item .accordion-collapse:focus-visible,
.faqSec .accordion-item:focus-visible,
.faqSec .accordion-item button:focus-visible,
.faqSec .accordion-item .accordion-header:focus-visible {
    border-color: transparent;
    outline: none;
}

.faqSec .accordion-item .accordion-collapse .accordion-body:focus-visible {
    border: transparent;
    outline: none;
}

.faqSec .accordion-item .accordion-collapse.show {
    background-color: var(--light-green-04);
    border: 2px solid var(--primary);
    border-top: 0px solid transparent;
    border-radius: 0 0 8px 8px;
}

.faqSec .accordion-item .accordion-collapse .accordion-body {
    padding: 16px 20px 20px;
    position: relative;
    transition: var(--transition);
}

.faqSec .accordion-item .accordion-collapse .accordion-body:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border: 1px solid var(--black-12);
    width: calc(100% - 40px);
}

.faqContainer2 {
    background-color: var(--dark-green);
    padding: 60px;
    border-radius: 24px;
}

/* Blog Section */

.blogSec {
    padding-top: 64px;
    padding-bottom: 64px;
    /* gap: 80px; */
}

.blogCard {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blogCard .blogImage {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.blogCard .blogImage img {
    width: 100%;

    object-fit: cover;
    object-position: top center;
}

.blogCard.mainBlog .blogImage img {
    height: 100%;
    max-height: 521px;
    object-position: center;
}

.blogCard.mainBlog .blogDate {
    display: none !important;
}

.blogCard .blogDetial h3,
.blogCard .blogDetial p {
    margin-bottom: 0;
}

.blogCard .blogDetial p {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.blogCard .blogDetial a {
    font-family: "Roboto", sans-serif;
    font-size: var(--fs16);
    font-weight: 400;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.blogCard .blogDetial .blogDate span {
    color: var(--black-40);
    font-size: 12px;
    display: inline-block;
    font-weight: 500;
}

.blogCard .blogDetial .blogDate span.date {
    color: #1A2839;
    font-size: var(--fs14);
    padding: 4px 8px;
    background-color: var(--black-04);
    font-weight: 600;
}

.blogCard.mainBlog {
    gap: 80px;
}

.blogCard.mainBlog .blogDetial a {
    color: var(--black);
    padding-top: 16px;
}

.blogCard.mainBlog .blogDetial a img {
    width: 24px !important;
}

.blogCarousel {
    width: 100%;
    max-width: 95.83333333333333%;
    margin-top: 5rem;
}

/* .blogCarousel .blogCard {
    max-width: 370px;
} */

.blogCarousel .blogCard .blogImage img {
    height: 350px;
    object-position: center;
}

.blogCarousel .owl-carousel .owl-item .blogCard .blogDetial a img {
    width: 24px;
}

.blogCarousel .owl-nav {
    float: right;
    padding-right: 4.166666666666667%;
}

.blogCarousel .owl-nav button.owl-prev,
.blogCarousel .owl-nav button.owl-next {
    padding: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.16);
    width: 48px;
    height: 48px;
}

.blogCarousel .owl-nav button.owl-prev:hover,
.blogCarousel .owl-nav button.owl-next:hover {
    background-color: var(--primary);
}

.blogCarousel .owl-dots {
    float: left;
    height: 48px;
    line-height: 48px;
}

.blogCarousel .owl-dots .owl-dot span {
    background-color: #475260;
    width: 8px !important;
    height: 8px !important;
    margin: 5px 4px !important;
}

.blogCarousel .owl-dots .owl-dot.active span {
    background-color: var(--primary);
}

.blogCarousel .owl-stage-outer {
    margin-bottom: 2.5rem;
}

/* Map Section */

.mapSec {
    background-color: var(--dark-green);
}

.mapSec .mapCard {
    height: 450px;
    width: 100%;
    max-width: 600px;
}

/* Footer Section CSS */


footer .ffirstSec {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

footer .ffirstSec a.footerLogo {
    width: 186px;
    height: 50px;
    display: inline-block;
    width: 186px;
    height: 50px;
    padding: 15px;
    background: #D9D9D9;
}

footer .ffirstSec .contactFooter li {
    font-size: var(--fs14);
    color: var(--black-70);
}

footer .ffirstSec .logoList {
    display: flex;
    gap: 1.5rem;
    /* flex-wrap: wrap; */
    align-items: center;
}

footer .fsecondSec {
    display: flex;
    gap: 60px;
    flex-direction: row;
    justify-items: end;
}

footer .fsecondSec .fSec1 {
    min-width: 200px;
}

footer .fsecondSec .fheading {
    min-height: 38px;
}

footer .fsecondSec .fheading h5 {
    color: var(--black);
    font-size: var(--fs16);
    font-weight: 600;
    margin-bottom: 0;
}

footer .fsecondSec .fheading p {
    color: var(--black-40);
    font-size: 12px;
    margin-bottom: 0;
}

footer .fsecondSec p {
    color: var(--black-70);
    font-size: var(--fs14);
    margin-bottom: 8px;
    font-weight: 400;
}

footer .fsecondSec p span {
    font-weight: 600;
}

footer .fsecondSec a {
    margin-top: 2rem;
    color: var(--dark-green);
}

.cwSec {
    background-color: var(--dark-green);
    padding: 20px 40px
}

.cwSec p {
    color: var(--white-70);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
    text-wrap: nowrap;
}

.cwSec ul li a {
    color: var(--light-green);
    font-size: var(--fs14);
    font-weight: 500;
    text-wrap: nowrap;
    font-size: 13px;
    line-height: 9px;
}

.cwSec ul {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
    max-width: 100%;
    overflow: initial;
    flex-wrap: wrap;
}

.cwSec ul .cwList li {
    position: relative;
    padding-right: 20px;
}

.cwSec ul .cwList li:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 1px;
    background: rgba(255, 255, 255, 0.24);
}

.cwSec ul .cwList li:last-child {
    padding-right: 0;
}

.cwSec ul .cwList li:last-child::after {
    display: none;
}


#form-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    color: white;
    border-radius: 10px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    height: 100%;
}

/* select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
  }
  
  button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button.back-btn {
    background-color: #6c757d;
  }
  
  button:hover {
    background-color: #218838;
  } */

.hidden {
    display: none;
}


/* Responsive CSS */

@media screen and (max-width:1025px) {
    .navbar {
        padding: 16px 1.5rem;
    }

    .headerSec .rightSide {
        height: auto;
        padding-bottom: 3rem;
        padding-top: 1.25rem;
    }

    .headerSec .rightSide .rightSideIn {
        justify-content: flex-start;
        gap: 88px;
        min-height: 426px;
        width: calc(100% - 20px);
        overflow: visible;
    }

    .headerSec .rightSideIn .white-card {
        display: none;
    }

    .headerSec .leftSide {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .headerSec .rightSideIn .rightSideImg {
        width: 112%;
        left: -15px;
    }

    h1 {
        font-size: 48px;
    }

    .headerSec .leftSide h1 {
        padding-right: 2rem;
    }

    .headerSec .leftSide p {
        padding-right: 2.1rem;
    }

    .headerSec .rightSideIn .warning-badge img {
        height: 36px;
    }

    .headerSec .rightSideIn .warning-badge {
        transform: translateX(-23px);
    }

    .headerSec .rightSideIn .warning-badge p {
        width: auto;
        padding-right: 8px;
    }

    .headerSec .rightSideIn .warning-badge:hover p {
        width: auto;
    }

    h2 {
        font-size: 32px;
    }

    .step-card .step-heading h4 {
        font-size: 16px;
        line-height: 1.5;
    }

    .step-card p {
        font-size: 12px;
        line-height: 1.25;
    }

    .step-card img {
        height: 80px;
    }

    .renovationSec .card.gap-80 {
        gap: 36px;
    }

    .renovationSec .card img {
        height: 36px;
    }

    .renovationSec .card h3.fs-36 {
        font-size: 1.5rem;
    }

    .renovationSec .card p {
        font-size: var(--fs14);
    }

    .renovationSec .card p.firstLine {
        text-wrap: nowrap;
    }

    .stepSec .headingSec h2 {
        max-width: 515px;
        margin: 0 auto;
        line-height: 44px;
    }

    .stepSec .headingSec p {
        margin-top: .75rem !important;
    }

    .stepContainer {
        padding: 36px;
        min-height: 419px;
    }

    .stepContainer .stepResult .white-card p {
        font-size: 12px;
        font-weight: 600;
    }

    .stepContainer .form-step h3 {
        font-size: 1.25rem;
    }

    .stepContainer #step-3 .stepBar {
        display: none;
    }

    .stepContainer .repairCard {
        margin-top: 0;
    }

    .stepContainer .form-step p {
        font-size: var(--fs14);
    }

    .stepContainer .repairCard h3 {
        font-size: 16px !important;
    }

    .stepContainer .repairCard .btn-primary {
        font-size: 14px !important;
        text-wrap: nowrap;
    }

    .stepContainer .stepResult {
        padding: 20px;
        /* max-width: 373px; */
    }

    #form-container {
        padding: 20px 0 !important;
    }

    .stepContainer .repairCard p {
        font-size: 12px !important;
    }

    .stepContainer .stepResult .stepResultIn ul li p {
        font-size: var(--fs14);
    }

    .stepContainer .stepResult .stepResultIn ul li h3 {
        font-size: 18px;
    }

    .stepContainer .stepResult .stepResultIn#stepResult-2 .btn-primary p {
        font-size: var(--fs14);
    }

    .stepContainer .stepResult .stepResultIn#stepResult-2 .btn-primary h3 {
        font-size: 24px;
    }

    .stepContainer .stepResult .stepResultIn#stepResult-2 .btn-primary h3 span {
        font-size: 20px;
    }

    .stepContainer .step3Card {
        height: 100%;
        justify-content: center;
    }

    .stepResult .white-card img {
        height: 24px;
    }

    .formStyle select {
        height: 39px;
        font-size: var(--fs14);
    }

    .stepContainer #terms-container {
        font-size: var(--fs14);
    }

    /* .productSec .px-lg-20, .productSec .col-md-12{
        padding-right: 0 !important;
    } */
    .px-lg-20.productLg,
    .px-lg-20.productLg .col-md-12 {
        padding-right: 0 !important;
    }

    .blogCard.mainBlog {
        gap: 24px;
    }

    .blogCard .blogDetial h3 {
        font-size: 1rem;
        line-height: 1.5;
        font-weight: 600;
    }

    .blogCard.mainBlog .blogDetial h3 {
        font-size: 24px;
        line-height: 1.5;
    }

    .blogCard .blogImage img {
        height: 210px;
    }

    .blogCard.mainBlog .blogImage img {
        height: 100%;
        min-height: 587px;
        object-position: center;
    }

    .mapSec .headingSec {
        gap: 24px;
    }

    .mapSec .headingSec h2 {
        max-width: 400px;
    }

    .mapSec .headingSec p {
        font-size: 1rem;
    }

    .mapSec .mapCard {
        height: 335px;
        width: 100%;
        max-width: 393px;
    }

    .mapSec hr.my-60 {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .mapSec h5.fs-24 {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .mapSec p.fs-18 {
        font-size: var(--fs14);
    }

    .faqContainer2 .headingSec p {
        font-size: var(--fs14);
    }

    .faqContainer2 .formStyle {
        max-width: 390px;
    }

    .faqContainer2 .formStyle input {
        font-size: var(--fs16);
    }

    .faqContainer2 .formStyle button {
        padding: 12px 24px;
    }

    .productRow1 h2 {
        max-width: 294px;
    }

    .productRow1 p {
        font-size: 14px;
        line-height: 20px;
    }

    .step3Card .formStyle.separateBtn {
        flex-direction: column;
        width: 100%;
        max-width: initial;
        background: none;
        border: none;
        padding: 0;
        border-radius: 0;
        gap: 16px;
    }

    .step3Card .formStyle.separateBtn input {
        background-color: rgba(125, 213, 67, 0.12);
        border: 1px solid rgba(125, 213, 67, 0.24);
        height: 56px;
        padding: 12px 8px 12px 24px;
        border-radius: 50px;
        color: rgba(255, 255, 255, 0.7);

    }

    .step3Card .formStyle.separateBtn button {
        width: 100%;
    }

    .step3Card .formStyle.separateBtn .mailIcon {
        position: absolute;
        left: 20px;
        top: 16px;
    }

    .step3Card .formStyle.separateBtn input {
        padding-left: 48px;
    }

    .step3Card .formStyle.separateBtn button {
        background: var(--white);
        color: var(--dark-green);
    }

    .formStyle .error-message {
        font-size: var(--fs14);
    }

    /* Padding LG */

    .px-lg-32 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .px-lg-20 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .px-lg-60 {
        padding-left: 48px;
        padding-right: 48px;
    }

    .px-lg-80 {
        padding-left: 68px;
        padding-right: 68px;
    }

    .gap-lg-60 {
        gap: 60px;
    }

    /* Font Size */
    .fs-lg-14 {
        font-size: var(--fs14);
    }
}

/* vivek new style for header start */

@media screen and (max-width:769px) {
    .stepContainer {
        gap: 36px;
    }

    .step3Card .formStyle.separateBtn .mailIcon {
        position: absolute;
        left: 28px;
        top: 23px;
    }

    .headerSec .leftSide h1,
    .headerSec .leftSide p {
        padding-right: 0;
    }

    .headerSec .leftSide {
        padding-right: 1.5rem;
    }
}



@media (min-width: 992px) and (max-width: 1408px) {
  .navbar .nav-item a.nav-link {
    text-align: center;
}
.navbar-expand-lg .navbar-collapse {
    justify-content: space-around !important;
}
.navbar form {
    max-width: 190px !important;
}

}

/* vivek new style for header End */

@media (max-width: 991px){
    #navbarNavDropdown ul li {
            padding: 10px 25px!important;
    }
    #navbarNavDropdown ul li a {
        font-size: 18px!important;
    }
}



@media screen and (max-width:768px) {
    .formStyle .error-message {
        font-size: 12px;
    }

    .navbar {
        padding: 16px .5rem;
    }

    .batterySec {
        flex-direction: column;
    }

    .renovationSec .image-card {
        max-width: 100%;
        height: 800px;
    }

    footer .fsecondSec {
        flex-direction: column;
    }

    footer .fsecondSec a {
        background: rgba(125, 213, 67, 1);
        border-color: rgba(125, 213, 67, 1);
    }

    footer .fsecondSec {
        gap: 32px;
    }

    footer .fsecondSec .fSec1 {
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        padding-bottom: 32px;
    }

    .logoList li img {
        max-height: 38px;
        max-width: 100%;
    }

    footer .fsecondSec .fSec2,
    footer .fsecondSec .fSec1 {
        padding-top: 0 !important;
    }

    .faqSec .quickTrackWrap {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .formStyle.separateBtn {
        flex-direction: column;
        width: 100%;
        max-width: initial;
        background: none;
        border: none;
        padding: 0;
        border-radius: 0;
        gap: 16px;
    }

    .formStyle.separateBtn input {
        background-color: rgba(125, 213, 67, 0.12);
        border: 1px solid rgba(125, 213, 67, 0.24);
        height: 48px;
        padding: 12px 8px 12px 24px;
        border-radius: 50px;
        color: rgba(255, 255, 255, 0.7);

    }

    .formStyle.separateBtn button {
        width: 100%;
    }

    .formStyle.separateBtn .mailIcon {
        position: absolute;
        left: 20px;
        top: 12px;
    }

    .step3Card .formStyle.separateBtn input {
        padding-left: 48px;
    }

    .step3Card .formStyle.separateBtn button {
        background: var(--white);
        color: var(--dark-green);
    }

    .form-step .formStyle {
        padding: 8px 10px !important;
    }

    .stepContainer .stepBar h4 {
        width: 74px;
    }

    .stepContainer #terms-container {
        font-size: 12px;
    }

    .faqSec .formStyle {
        margin-top: 1.5rem;
    }

    .faqSec .px-80 {
        padding-left: 48px;
        padding-right: 48px;
    }

    .stepContainer .repairCard {
        flex-direction: column;
        gap: 1.5rem;
        padding: 24px;
    }

    .stepContainer .repairCard h3 {
        font-size: 18px !important;
    }

    .stepContainer .repairCard p {
        font-size: var(--fs14);
    }

    h1,
    h2 {
        font-size: 36px;
    }

    .btn-primary,
    .btn-white {
        padding: 12px 16px;
        font-size: var(--fs14);
    }

    .headerSec .btnWrap {
        gap: 1rem;
    }

    .headerSec .btnWrap .btn-primary,
    .headerSec .btnWrap .btn-white {
        width: 100%;
    }

    .headerSec .btnWrap .btn-white {
        margin-left: 0 !important;
    }

    .headerSec .rightSideIn .white-card {
        display: block;
    }

    .headerSec .rightSideIn .white-card .whiteCardInMobile {
        display: flex !important;
    }

    .headerSec .rightSideIn .white-card .row,
    .headerSec .rightSideIn .white-card .whiteCardInDesktop {
        display: none !important;
    }
}




@media screen and (max-width: 540px) {

    .renovationSec .btn-primary,
    .renovationSec .btn-white {
        padding: 12px 16px !important;
    }

    .batterySec {
        flex-direction: column;
    }

    .renovationSec .image-card {
        max-width: 100%;
        min-width: inherit
    }

    .headerSec .rightSide {
        padding: 0;
    }

    .headerSec .rightSide .rightSideIn {
        overflow: hidden;
        width: 100%;
    }

    .headerSec .rightSide .rightSideIn {
        justify-content: space-between;
        min-height: 500px;
    }

    .headerSec .rightSideIn .warning-badge {
        transform: translateX(72px);
    }


    .headerSec .leftSide {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    .headerSec .leftSide h1 {
        padding-right: 0;
        max-width: 300px;
    }

    .headerSec .leftSide p {
        padding-right: 0;
        font-size: 14px;
    }

    .sectionWrap2 h2.text-white.px-75 {
        padding: 0 0;
    }

    .step-card .step-heading span {
        color: var(--white);
        font-size: 1.25rem;
        font-weight: 500;
        text-transform: capitalize;
    }

    .step-card .step-heading h4 {
        font-size: 20px;
    }

    .sectionWrap2 .desktopBtn {
        display: none;
    }

    .sectionWrap2 .mobileBtn {
        display: block;
        margin-top: 1rem;
    }

    .sectionWrap2 .bg-dark-green {
        padding-bottom: 170px;
    }

    .renovationSec .image-card {
        height: 611px;
    }

    .stepContainer {
        flex-direction: column;
        padding: 16px;
        gap: 3rem;
    }

    .stepContainer .stepResult {
        min-height: 350px;
        height: 350px;
    }

    #form-container {
        padding: 0 !important;
    }

    .stepContainer .form-step h3,
    .stepContainer .form-step p {
        text-align: center;
    }

    .stepContainer .form-step h3 {
        font-size: 36px;
    }

    .stepContainer .form-step p {
        font-size: var(--fs16);
    }

    .formStyle select {
        padding: .375rem 0;
        font-size: var(--fs16);
    }

    .faqSec .px-80 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .faqSec .headingSec h2,
    .faqSec .headingSec p {
        text-align: center;
    }

    .faqContainer2 {
        padding: 36px 24px 24px;
    }

    .faqSec {
        padding-bottom: 30px;
    }

    .mapSec .px-lg-80 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .mapCard {
        margin-top: 80px;
    }

    .mapBottom {
        gap: 1.5rem;
    }

    .mapSec h5.fs-24 {
        font-size: 24px;
    }

    .mapSec p.fs-18 {
        font-size: 18px;
    }

    footer .px-lg-20 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .logoList li img {
        max-height: 38px;
        max-width: 100%;
    }

    footer .fsecondSec .fSec1 {
        padding-top: 3rem !important;
    }

    footer .fsecondSec {
        flex-direction: column;
        gap: 32px;
    }

    .px-lg-80.productRow1 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .px-lg-20.productLg,
    .px-lg-20.productLg .col-md-12 {
        padding-right: 0 !important;
        padding-left: 8px;
    }

    #productList .owl-nav {
        position: relative;
        display: flex;
        transform: none;
    }

    #productList .owl-nav .owl-prev,
    #productList .owl-nav .owl-next {
        position: relative;
        transform: none;
        right: initial;
        left: initial;
        background: rgba(221, 221, 221, 0.34);
        border: 1px solid rgba(255, 255, 255, 0.34);
    }

    #productList .owl-nav .disabled {
        opacity: 1;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.20);
    }

    #productList .owl-nav .disabled img {
        opacity: .3;
    }

    .productLg {
        margin-top: 42px;
    }

    .productSec {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    #productList .owl-nav {
        margin-top: 36px;
    }


    .blogCard {
        flex-direction: row;
    }

    .blogCard .blogImage {
        max-width: 130px;
        max-height: 111px;
        min-height: 111px;
    }

    .blogCard .blogImage img {
        height: 100%;
        width: 100%;
    }

    .blogCard.mainBlog {
        margin-bottom: 48px;
        flex-direction: column !important;
    }

    .blogCard.mainBlog .blogDate {
        display: flex !important;
    }

    .blogCard.mainBlog .blogImage {
        min-height: 198px;
        max-height: 198px;
        max-width: 100%;
    }

    .blogCard.mainBlog .blogImage img {
        min-height: 198px;
        max-height: 198px;
        height: 100%;
        width: 100%;
    }

    a.blogCard {
        color: inherit;
    }

    .blogCard .blogDetial .blogDate span.date {
        font-size: 12px;
    }

    .blogListMobile li {
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }

    .blogListMobile li:first-child {
        padding-top: 0;
    }

    .blogListMobile li:last-child {
        border: 0;
    }

    .blogCarousel .blogCard {
        flex-direction: column;
    }

    .blogCarousel .blogCard .blogImage {
        min-height: 198px;
        max-height: 198px;
        max-width: 100%;
    }

    .blogCard .blogDetial .blogDate span {
        color: var(--primary);
    }

    .cwSec {
        padding: 20px;
    }

    .stepContainer .stepResult .white-card {
        padding: 8px 10px;
    }

    .stepContainer .stepBar h4 {
        width: 74px;
    }

    .stepContainer .stepResult {
        height: auto;
    }

    .stepSec .px-lg-20 {
        padding-left: initial;
        padding-right: initial;
    }

    .stepContainer .stepResult .stepResultIn#stepResult-2 .btn-primary p {
        font-size: var(--fs16);
    }

    /* Padding CSS */
    .px-lg-60 {
        padding-left: initial;
        padding-right: initial;

    }

    .px-lg-32 {
        padding-left: inherit;
        padding-right: inherit;
    }
}

* {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

:root {
    --gray-100: #ffffffb2;
    --gray-200: #000000b2;
    --gray-300: #0000001f;
    --gray-500: #0000004d;
    --gray-600: #ffffff1f;
    --gray-700: #ffffff3d;
    --gray-400: #ffffff6e;
    --gray-800: #f7f7f7;
    --green-400: #018f58;
    --green-500: #071a0d;
    --shadow-banner: 0px 14px 60px 0px #00000040;
}

/* typography */
.title {
    font-size: 56px;
}

h1 {
    font-size: 52px;
    line-height: 0.9;
    letter-spacing: 2px;
}

h2 {
    font-size: 36px;
    letter-spacing: 1.2px;
}

h3 {
    font-size: 21px;
    letter-spacing: 0.4px;
}

h4 {
    font-size: 24px;
    color: white;
}

h5 {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.3px;
    font-weight: 400;
    color: var(--gray-200);
}

h6 {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-200);
}

p {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-100);
    margin: 0;
}

.fw7 {
    font-weight: 700;
}

.fw6 {
    font-weight: 600;
}

.fw5 {
    font-weight: 500;
}

.py-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.logo {
    width: 100% !important;
}

.p-34 {
    padding: 34px;
}

.pb-25 {
    padding-bottom: 25px;
}

.px-60 {
    padding-right: 60px !important;
    padding-left: 60px !important;
}

.mt-22 {
    margin-top: 22px;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-64 {
    margin-top: 64px !important;
}

.mt-75 {
    margin-top: 75px !important;
}

.mt-58 {
    margin-top: 58px;
}

.mt-10,
.mt-md-10 {
    margin-top: 10px !important;
}

.mt-18 {
    margin-top: 18px !important;
}

.mt-30 {
    margin-top: 30px;
}

.mt-36 {
    margin-top: 36px;
}

.mt-40 {
    margin-top: 40px;
}

.ml-12 {
    margin-left: 12px;
}

.my-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.min-h-0 {
    min-height: 0 !important;
}

.min-w-0.banner.lg {
    min-width: 0 !important;
    width: auto !important;
}

.gap-40 {
    gap: 40px;
}

.gap-30 {
    gap: 30px;
}

.gap-38 {
    gap: 38px;
}

/* colors */

.text-18 {
    font-size: 18px !important;
}

.text-14 {
    font-size: 14px !important;
}

.tracking--1 {
    letter-spacing: -1px;
}

.tracking--2 {
    letter-spacing: -2px;
}

.leading-13 {
    line-height: 32px;
}

.text-gray {
    color: var(--gray-300);
}

.text-gray-100 {
    color: var(--gray-100);
}

.text-gray-200 {
    color: var(--gray-200);
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-light-gray {
    color: var(--gray-600);
}

.text-green {
    color: var(--green-400);
}

.text-green-500 {
    color: var(--green-500);
}

.bg-green {
    background-color: var(--green-500);
}

.bg-green-400 {
    background-color: var(--green-400) !important;
}

.bg-gray-800 {
    background-color: var(--gray-800);
}

/* main classes & components */

.inner-container {
    padding: 120px 32px;
    max-width: 1248px;
    margin: auto;
}

.main-container {
    max-width: 1440px;
    margin: auto;
    padding: 0 80px;
}

.main-bg {
    background-image: url(./assets/main-bg.svg);
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner.primary {
    box-shadow: var(--shadow-banner);
    background: var(--green-500);
    padding: 124px 0;
}

.banner.secondary {
    background-color: white;
    padding: 36px;
    min-height: 770px;
}

.banner.lg {
    min-width: 988px;
}

button {
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 100px;
}

button.primary {
    background-color: var(--green-400);
    padding: 16px auto;
    color: white;
    border: none;
}

button:disabled {
    background-color: #0000000f;
}

button.primary.outlined {
    background-color: transparent;
    color: var(--green-400);
    border: 1px solid var(--green-400);
    font-size: 14px;
    padding: 12px 20px;
    letter-spacing: -0.5px;
    min-width: 324px;
}

button.secondary {
    border: 1px solid var(--gray-400);
    background-color: var(--gray-600);
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 100px;
    color: white;
}

input {
    outline: none;
    line-height: 0;
    font-size: 14px;
    border-radius: 100px;
}

textarea {
    outline: none;
    padding: 8px 12px;
    border: 1px solid #0000001f;
    border-radius: 12px;
}

input[type="checkbox"] {
    appearance: none;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    background-color: #f0f0f0;
    border-radius: 4px;
    box-shadow: 0px 1px 1px 0px #00000014, 0px 2px 1px 0px #0000000f,
        0px 1px 3px 0px #0000001a;
    cursor: pointer;
    position: relative;
}

input[type="checkbox"]:checked {
    background-color: var(--green-400);
}

input[type="checkbox"]:checked::after {
    content: "";
    background-image: url(./assets/check.svg);
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 7px;
}

input[type="checkbox"] {
    border: none;
}

input[type="radio"] {
    appearance: none;
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    border: 1px solid #e8e8e8;
    cursor: pointer;
    position: relative;
}

input[type="radio"]:checked {
    background-color: var(--green-400);
}

input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

input.primary {
    background-color: white;
    border: 1px solid #0000001f;
    padding: 15px 16px;
    color: var(--gray-200);
}

nav input.primary {
    padding: 10px 16px !important;
}

header {
    padding: 3px 0;
}

input.secondary {
    border: 1px solid var(--gray-700);
    background-color: var(--gray-600);
    padding: 24px 150px 24px 24px;
    color: white;
}

input.secondary::placeholder {
    color: var(--gray-100);
}

.status.success {
    color: #018f58;
    width: fit-content;
    background-color: #018f581f;
    border: 1px solid #018f58;
}

.status {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}

.status.error {
    color: #e2714d;
    background-color: #f07d191f;
    border: 1px solid #e2b04d;
}

.border-b {
    border-bottom: 1px dashed #0000001f;
}

.h-275 {
    height: 275px !important;
}

.min-w-90 {
    min-width: 360px;
}

.max-w-125 {
    max-width: 500px;
}

.max-w-25 {
    max-width: 25%;
}

.top-40 {
    top: 135px;
}

.flex-1 {
    flex: 1;
}

.leading-3xl {
    line-height: 32px;
}

/* custom classes */
header hr {
    height: 10px;
    width: 1px;
    background-color: var(--gray-700);
}

nav a {
    text-decoration: none;
    font-size: 14px;
    color: var(--gray-200);
    line-height: 0;
}

.details p {
    letter-spacing: -0.5px;
}

.checkout {
    background-color: #fafafa;
    border: 1px solid #0000001f;
    padding: 36px;
}

.checkout.mt-4 {
    margin-top: 40px !important;
}

.estimated-price {
    border: 1px solid #018f58;
    background-color: #e1f2eb;
    padding: 12px 36px;
    border-radius: 100px;
    width: 100%;
    margin: auto;
}

.progress {
    background-color: #dcdcdc;
    height: 4px;
    width: 100%;
    border-radius: 100px;
}

.warning {
    border-radius: 8px;
    background-color: #f0f0f0;
    padding: 20px;
    font-size: 12px;
    color: #000000b2;
}

#step2 input {
    padding: 12px 24px;
}

.cwSec {
    padding: 20px;
}

.cwList {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.cwList li {
    display: inline-block;
}

.cwList a {
    color: #000; /* Ensure link color is visible */
    font-size: 14px; /* Adjust font size */
    text-decoration: none;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .cwSec {
        text-align: center;
    }

    .cwList {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .cwList li {
        margin: 5px 0;
    }
}


@media (max-width: 1199px) {
    button.position-absolute {
        position: relative !important;
    }

    .banner {
        padding: 90px 0;
    }

    button.primary,
    input.secondary {
        font-size: 14px;
    }

    input.secondary {
        padding: 12px 24px;
    }

    .banner.secondary {
        width: 100% !important;
        min-height: 750px;
        padding: 32px 47px;
    }

    .checkout {
        padding: 18px 29px;
    }

    .checkout.rounded-4 {
        margin-top: 32px !important;
    }

    .estimated-price {
        padding: 7px 36px;
    }

    #step1 {
        margin-top: 22px;
    }

    .main-container.main {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .banner.lg {
        width: 700px !important;
        min-width: 700px;
    }

    .banner h3 {
        font-size: 24px;
    }

    .banner h6 {
        font-size: 16px;
    }

    .text-sm {
        font-size: 13px;
    }

    h5 {
        font-size: 14px;
    }

    .details {
        padding: 34px 26px;
    }
}

@media (max-width: 1026px) {
    .inner-container {
        padding: 72px 32px;
    }

    #success h5 {
        font-size: 18px !important;
    }

    .gap-38 {
        gap: 25px;
    }

    .title {
        font-size: 36px;
    }

    h1 {
        font-size: 32px;
        line-height: 1.3;
        letter-spacing: 1px;
    }

    h2 {
        font-size: 24px;
    }

    h5 {
        font-size: 16px;
    }

    h6 {
        line-height: 1.5;
    }

    nav .main-container,
    .main-container.main {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    #complain main.main-container {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }

    #complain .banner.secondary {
        padding: 33px 37px;
    }

    #complain .banner.secondary h4 {
        line-height: 1.4;
    }

    nav.py-12 {
        padding-top: 23px !important;
        padding-bottom: 23px !important;
    }

    .banner.lg {
        min-width: 0;
        width: auto;
    }

    .banner.primary {
        padding: 84px 0;
    }

    .banner.secondary {
        min-height: 455px;
    }

    .details h4,
    .text-18 {
        font-size: 18px !important;
    }

    .details h5,
    .text-sm {
        font-size: 14px;
    }

    .text-xs {
        font-size: 12px;
    }

    button.primary.outlined {
        min-width: 0;
    }

    .estimated-price {
        border-radius: 8px;
        padding: 8px;
    }

    .estimated-price h5,
    h6 {
        font-size: 14px !important;
    }

    .estimated-price p {
        font-size: 12px;
    }

    .checkout {
        padding: 24px 20px;
        margin-top: 12px;
    }

    #step1 {
        margin-top: 34px;
    }

    .warning {
        margin-top: 6px !important;
    }

    .bg-gray-800 {
        background-color: transparent;
    }

    .banner.secondary.mt-30 {
        margin-top: 74px;
    }

    .banner.secondary {
        padding: 24px;
    }

    nav .main-container,
    .main-container.main {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    nav.py-12 {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }

    article.banner.mt-75 {
        margin-left: 0;
        margin-top: 26px !important;
    }

    article.banner .mt-58 {
        margin-top: 33px !important;
    }

    .mt-sm-26 {
        margin-top: 26px !important;
    }

    .mt-sm-5 {
        margin-top: 5px !important;
    }

    .p-xs-0 {
        padding: 0 !important;
    }

    .mt-sm-28 {
        margin-top: 28px;
    }

    .pb-sm-28 {
        padding-bottom: 28px !important;
    }

    .checkout.mt-4 {
        margin-top: 53px !important;
    }

    #order .max-w-125.mt-90 {
        margin-top: 46px !important;
    }

    #order .max-w-125.mt-90 h5 {
        line-height: 1.5;
    }

    #order main.px-60 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    #order .banner.secondary {
        padding: 32px 19px;
        min-height: 463px;
    }

    .max-w-125.mt-90 {
        margin-top: 48px !important;
    }

    #order-details main.px-60 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    #order-details main button {
        margin-top: 40px !important;
    }

    #order-details .banner button.primary {
        margin-top: 20px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    #order-details .details {
        margin-top: 0 !important;
        padding: 16px 0px !important;
    }
}

/* ------Anupama_css-------------- */

.headerSec .rightSideIn .white-card ul {
    min-height: 120px;
}

headerSec .rightSide .rightSideIn {
    min-height: 518px;
}

.step-card:hover {
    border: 1px solid var(--primary);
    background: var(--dark2-green);
}

.step-card:active {
    border: 1px solid var(--primary);
    background: var(--dark2-green);
}

.step-card.active {
    border: 1px solid var(--primary);
    background: var(--dark2-green);
}
.batterySec {
    padding-right: 70px;
}

.renovationSec .image-card {
    width: 100%;
    max-width: 420px;
    min-width: 400px;
    max-height: 509px;
    /* padding-left: 4px; */
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    height: -webkit-fill-available;
}

@media (min-width: 992px) {
    .order-lg-1 {
        order: 1 !important;
        padding-right: 50px;
    }
}

.blogCard.mainBlog .blogImage img {
    height: 100%;
    max-height: 600px;
    object-position: center;
}

.blogDetial p {
    color: #000;
}

.cwSec {
    background-color: var(--dark-green);
    padding: 20px 40px;
}

@media screen and (max-width: 1150px) {
    .ms-md-4 {
        margin-left: 0.5rem !important;
    }

    .btnLeftIcon {
        padding-left: 17px;
    }

    .gap-lg-60 {
        gap: 30px !important;
    }

    .px-32 {
        padding-left: .90rem !important;
        padding-right: .90rem !important;
    }

    .blogCard .blogImage img {
        height: 210px !important;
    }

    .blogCard.mainBlog .blogImage img {
        height: 100%;
        min-height: 620px;
    }

    .px-sm-22 {
        padding-left: 2.25rem;
        padding-right: 2.25rem;
    }

    .faqContainer {
        padding-bottom: 55px;
    }

    .faqContainer {
        padding-bottom: 80px !important;
        padding-bottom: 80px !important;
    }

    .owl-carousel .item {
        text-align: left;
        width: 325px;
    }

    .blogCarousel {
        padding: 0px 30px;
        width: 100%;
        max-width: 100.833333% !important;
        margin-top: 5rem;
    }
}

.blogCarousel {
    padding: 0px 30px;
}





@media screen and (max-width: 540px) {
    .headerSec .leftSide h1 {
        margin-left: 0px;
    }

    .col.py-2rem.px-3 {
        display: none;
    }

    .ms-md-4 {
        margin-left: 0rem !important;

    }

    .h2.mb-36 {
        max-width: fit-content;
        margin: auto;
        Size: 40px !important;
        line-height: 45px;
        font-weight: 500;
    }

    .batterySec {
        padding-right: 9px;
    }

    .renovationSec .btn-primary,
    .renovationSec .btn-white {
        padding: 12px 23px !important;
        width: 100%;
        margin-bottom: 20px;
    }

    .stepSec {
        padding-top: 0px !important;

    }

    .renovationSec .image-card {
        width: 100%;
        max-width: 403px;
        min-width: 335px;
        max-height: 476px;
    }

    .renovationSec .image-card .white-card p {
        text-wrap: wrap;
    }

    .faqSec {
        padding-bottom: 30px;
        padding-top: 30px;
    }
}

body,
html {
    overflow-x: hidden;
}