/* fontawasome-link */
@import url('https://pro.fontawesome.com/releases/v6.0.0-beta3/css/all.css');

/* fontawasome-link */


:root {
    --primary-color: #16a34a;
    --deep-black: #000;
    --secondry-color: #14532d;
    --color-black: #111827;
    --color-white: #fff;
    --theme-color: #f5f7f5;
    --white-bg: #eefbf1;
    --dark-bg: #0f172a;
    --light-black: #64748b;
    --heading-color: #15803d;
    --light-white: #fafafa;
    --text-color: #374151;
    --text-dark: #111827;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --text-success: #16a34a;
    --green-gredient: linear-gradient(90deg, #062e24 0%, #0a4d3c 100%);
    --primary-font: "Roboto", sans-serif;
    --secondry-font: "Exo 2", sans-serif;
}

html {
    font-size: 62.5%;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--primary-font);
}

a {
    text-decoration: none !important;
}

ul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

h1,
h2,
h3,
h4,
h5,
a {
    font-family: var(--secondry-font);
}

.img-coverr {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ptb {
    padding: 6rem 0;
}

.sec-pt {
    padding-top: 6rem;
}

.sec-pb {
    padding-bottom: 6rem;
}

.sec-title {
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    line-height: 1.4;
    margin-bottom: .8rem;
}

.subtitle {
    font-family: var(--secondry-font);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
}

p {
    font-size: 1.6rem;
    line-height: 1.7;
    letter-spacing: 0.02rem;
}

.f-bold-500 {
    font-weight: 500 !important;
}

.f-bold-600 {
    font-weight: 600 !important;
}

.f-bold-700 {
    font-weight: 700 !important;
}

.f-bold-800 {
    font-weight: 800 !important;
}

.f-s-13 {
    font-size: 13px !important;
}

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

.f-s-15 {
    font-size: 15px !important;
}

.f-s-16 {
    font-size: 16px !important;
}

.f-s-17 {
    font-size: 17px !important;
}



/* header-start */

i.top-hdr-time-icn {
    color: var(--primary-color) !important;
}

.hdr-logo img {
    object-fit: cover;
    height: 7rem;
    width: auto;
}

.top-nav-container {
    background: var(--green-gredient);
    font-size: 13px;
    overflow: hidden;
}

.top-left-info {
    font-weight: 500;
}

.top-right-section {
    height: 100%;
}

.main-header .top-left-info .topbar-info li a {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 1.4rem;
    color: var(--color-white);
    opacity: 0.9;
    letter-spacing: 0.02rem;
    font-weight: 400;
}

.links-wrapper {
    background: linear-gradient(to right, #16a34a, transparent 100%);
    height: 100%;
    padding: 1.3rem 3rem;
    position: relative;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 3% 50%);
}



.top-link {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.top-link:hover {
    opacity: 0.8;
    color: var(--color-white);
}

.fixed-hdr {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}


.social-wrapper {
    height: 100%;
}

.social-wrapper a {
    color: var(--color-white);
    margin-left: 15px;
    font-size: 15px;
    transition: color 0.3s;
}

.social-wrapper a:hover {
    color: var(--primary-color);
}

.top-bar {
    background-color: var(--dark-bg);
    color: var(--color-white);
    font-size: 14px;
    padding: 8px 0;
}

.top-links a {
    color: var(--color-white);
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.top-links a:hover {
    color: var(--primary-color);
}

.social-icons a {
    margin-left: 15px;
}

.main-header .nav-link {
    color: #1a1a1a;
    font-weight: 600;
    padding: 0 1.5rem !important;
}

.btn-appointment {
    position: relative;
    overflow: clip;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 32px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to right, #0b5d2a 0%, #11853b 50%, #16a34a 100%);
    color: var(--text-white);
    font-weight: 500;
    transition: all 0.3s ease;
    z-index: 1;
    font-size: 1.6rem;
}

.btn-appointment::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70px;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-25deg);
    transition: all 0.8s ease;
}

.btn-appointment:hover::before {
    left: 130%;
}

.btn-appointment:hover {
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.25);
}

.btn-appointment:hover i {
    transform: translateX(3px);
    transition: 0.3s linear;
}

.icon-call i {
    --bs-text-opacity: 1;
    color: var(--primary-color) !important;
}



.navbar-toggler {
    border: none;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
}

.icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-bg);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler:not(.collapsed) .top-bar-line {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .middle-bar-line {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .bottom-bar-line {
    transform: translateY(-8px) rotate(-45deg);
}

li.nav-item .nav-link {
    font-size: 1.6rem;
    letter-spacing: 0.03rem;
    text-transform: capitalize;
}

.hdr-dropdown .dropdown-menu {
    min-width: 18rem;
}

.hdr-dropdown .dropdown-menu li a {
    font-size: 1.5rem;
    padding: 1rem;
}

.hdr-dropdown .dropdown-menu li a {
    font-size: 1.5rem;
    padding: 1rem;
    border-bottom: 1px solid var(--bs-border-color-translucent);
    font-weight: 500;
}

.hdr-dropdown .dropdown-menu li a.active,
.hdr-dropdown .dropdown-menu li .dropdown-item:active {
    background: var(--primary-color);
}


.ser-btn button i {
    font-size: 1.5rem;
    margin: 0 0.5rem;
}


.call-text small {
    font-size: 1.4rem;
}

.call-text {
    width: 100%;
    height: 100%;
}

.call-text strong {
    font-size: 1.6rem;
}

.hdr-cl-icon i {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.ser-btn .search-btn {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.ser-btn .search-btn:hover i {
    color: var(--primary-color);
    transition: 0.8s;
}

@media (min-width: 992px) {
    .hdr-dropdown:hover .dropdown-menu {
        display: block;
    }

    .hdr-dropdown .dropdown-menu {
        margin-top: 0;
    }

    .hdr-dropdown>.nav-link::after {
        display: inline-block;
        margin-left: 0.5rem;
        vertical-align: middle;
        content: "";
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
    }

    /* project-cta-2 */
    .projec-cta-sec-2 .row>[class*="col-"]:not(:last-child) .feature-item::after {
        content: '';
        position: absolute;
        right: -12px;
        top: 10%;
        height: 80%;
        width: 1px;
        background-color: #e2e8f0;
    }

    /* project-cta-2 */
}

@media (max-width: 1199px) {

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 255px;
        height: 100vh;
        background: var(--color-white);
        padding: 30px 20px 20px;
        transition: left 0.35s ease-in-out;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
        z-index: 1050;
    }

    .navbar-collapse.show {
        left: 0;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-item {
        width: 100%;
    }

    .main-header .nav-link {
        width: 100%;
        border-bottom: 1px dotted #666666b3;
        padding: 3rem 0 1rem !important;
    }

    .ser-btn {
        margin-top: 2rem;
        align-items: start !important;
    }

    .contact-box {
        display: none !important;
    }

    .mobile-arrow {
        font-size: 14px;
        margin-left: 10px;
        cursor: pointer;
    }

    .hdr-dropdown .dropdown-menu.show+.mobile-arrow i {
        transform: rotate(180deg);
        transition: 0.3s;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .main-header .top-left-info .topbar-info li a {
        gap: .5rem;
        font-size: 1.3rem;
    }

}

@media (max-width: 576px) {
    .links-wrapper {
        display: none !important;
    }

    .ser-btn {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* header-end */

/* banner-start */

.main-bnr-sec {
    background-size: cover !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    padding: 4rem 0 3rem;
    position: relative;
    height: 62vh;
}


.main-bnr-sec .main-bnr-lt {
    max-width: 70%;
}

.main-bnr-sec h1 {
    font-family: var(--secondry-font);
    font-size: 4rem;
    line-height: 1.4;
    color: var(--color-black);
}

.main-bnr-sec .stats-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.main-bnr-sec .stats-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.main-bnr-sec .container-fluid {

    max-width: 100%;
    padding: 0 10rem;
}


.main-bnr-sec .btn-calculator,
.cta-sec .btn-calculator,
.abt-pg-bnr .btn-calculator,
.abt-faq .faq-btn-group .btn-calculator,
.projec-cta-sec .cta-btn-group .btn-calculator,
.wrntry-cta-sec .btn-calculator {
    background: rgba(255, 255, 255, .85);
    border: 1.5px solid rgba(21, 128, 61, .25);
    color: var(--text-dark);
    backdrop-filter: blur(10px);
}

.main-bnr-sec .btn-calculator:hover i {
    transform: translateX(10px);
    transition: 0.4s linear;
}

.main-bnr-sec .btn-calculator i,
.abt-pg-bnr .btn-calculator i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(21, 128, 61, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all .35s ease;
}

.main-bnr-sec .btn-calculator:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    /* transform: translateY(-3px); */
}

.main-bnr-sec .btn-calculator:hover i {
    background: var(--primary-color);
    color: var(--color-white);
}

.main-bnr-sec .main-bnr-lt .bnr-fea-box {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.main-bnr-sec .main-bnr-lt .bnr-fea-box-wrp:hover {
    transform: translateY(-3px);
    transition: 0.4s linear;
    box-shadow: 0 10px 25px rgb(59 56 56 / 5%) !important;
}

.main-bnr-sec .main-bnr-lt .bnr-fea-box i {
    font-size: 19px;
}

.main-bnr-sec .main-bnr-lt .bnr-fea-box p {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.02rem;
    margin-bottom: .5rem !important;
}

.bnr-float-box {
    margin-top: -50px;
    position: relative;
    z-index: 5;
}

.bnr-float-box .bnr-float-wrap {
    background: var(--green-gredient);
    border-radius: 20px;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.bnr-float-box .bnr-float-itm {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 25px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.bnr-float-box .bnr-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bnr-float-box .bnr-icon i {
    color: var(--color-white);
    font-size: 20px;
}

.bnr-float-box .bnr-content span {
    color: var(--color-white);
    font-size: 25px;
    font-weight: 600;
    margin: 0;
    line-height: 1;
    letter-spacing: 0.02rem;
}

.bnr-float-box .bnr-content p {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    margin: 6px 0 0;
}

.bnr-float-box .bnr-str-list li {
    color: #FFC107;
    font-size: 11px;
    padding-top: .4rem;
}

/* banner-end */

/* why-chse-sec-start */

.why-chse-sec .title-bar,
.serv-sec .title-bar,
.testi-sec .title-bar {
    width: 50px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}


.why-chse-sec .feature-card {
    background-color: var(--color-white);
    border: 1px solid #b9b9b969;
    border-radius: 12px;
    padding: 23px 16px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-chse-sec .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}


.why-chse-sec .icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--white-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-chse-sec .icon-wrapper i {
    color: var(--heading-color);
    font-size: 26px;
    font-weight: 400;
}


.why-chse-sec .card-title {
    color: var(--color-black);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 11px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-chse-sec .card-text {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 0;
}

/* why-chse-sec-end */

/* about-sec-start */

.abt-sec {
    background: #f5f6fa;
}

.abt-lt-area .video-media-box {
    position: relative;
    height: 432px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.abt-lt-area .video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform .6s ease;
}

.abt-lt-area .video-media-box:hover .video-poster {
    transform: scale(1.08);
}

.abt-lt-area .video-play-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    text-decoration: none;
    z-index: 10;
    transition: all .4s ease;
}


.abt-lt-area .video-play-overlay::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.abt-lt-area .video-media-box:hover .video-play-overlay {
    transform: translate(-50%, -50%) scale(1.12);
}


.abt-lt-area .exp-floating-badge {
    position: absolute;
    top: 54px;
    left: -34px;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25);
    z-index: 30;
    animation: smoothFloat 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    will-change: transform;
}


.abt-lt-area .exp-floating-badge h3 {
    font-family: var(--secondry-font);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}

.abt-lt-area .exp-floating-badge p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.3;
    font-weight: 500;
}


@keyframes smoothFloat {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 8px 20px rgba(22, 163, 74, .25);
    }

    50% {
        transform: translateY(-10px);
        box-shadow: 0 18px 35px rgba(22, 163, 74, .35);
    }
}

.fancybox-slide--iframe .fancybox-content {
    width: 900px !important;
    height: 506px !important;
    max-width: 90vw;
    max-height: 80vh;
}

.fancybox-bg {
    background: rgba(0, 0, 0, .8);
}

.abt-lt-area .desc-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 22px;
}

.abt-lt-area .features-check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 28px;
}

.abt-lt-area .features-check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.abt-lt-area .features-check-list li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 10px;
}

.abt-rt-area .sol-card-item {
    position: relative;
    border-radius: 16px;
    overflow: clip;
    /* height: 140px; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.abt-rt-area .sol-card-item:hover {
    transform: translateY(-3px);
}

.abt-rt-area .sol-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.abt-rt-area .sol-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: linear-gradient(to top, black, transparent);
}


.abt-rt-area .sol-icon-box {
    width: 35px;
    height: 35px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.abt-rt-area .sol-icon-box i {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 400;
}


.abt-rt-area .sol-card-title {
    font-family: var(--secondry-font);
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 0;
    letter-spacing: 0.01rem;
}

/* about-sec-end */

/* service-sec-start */

.serv-sec .serv-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(6, 1fr);
}


.serv-sec .serv-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 1px 3px rgb(0 0 0 / 11%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #00000029;
}


.serv-sec .serv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.07);
}

.serv-sec .serv-icon-wrap {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
}


.serv-sec .serv-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.serv-sec .serv-title {
    font-family: var(--secondry-font);
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 8px;
    line-height: 1.3;
}

.serv-sec .serv-desc {
    color: var(--text-light);
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
}

/* service-sec-end */

/* sol-caluetor-sec-start */

.sol-calclu-area .sol-cal-wrpr {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 20px;
    padding: 18px 24px;
    overflow: clip;
    position: relative;
    isolation: isolate;
}


.sol-cal-wrpr::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(6, 46, 36, .95) 0%,
            rgba(10, 77, 60, .92) 100%);
    border-radius: 20px;
    z-index: -1;
}

.sol-calclu-area .calculator-intro .subtitle {
    color: #c6ffd6;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.sol-calclu-area .sec-title {
    text-transform: none;
    font-size: 28px;
    line-height: 1.6;
}

.sol-calclu-area .calculator-form {
    margin-top: 30px;
}

.sol-calclu-area .form-group-row label {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.sol-calclu-area .select-wrapper {
    width: 55%;
}

.sol-calclu-area .calculator-form .form-select {
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, .14);
    color: var(--text-white);
    font-size: 13px;
    font-weight: 500;
    box-shadow: none;
    cursor: pointer;
}

.sol-calclu-area .calculator-form .form-select option {
    color: #111;
}

.sol-calclu-area .calculator-form .form-select:focus {
    box-shadow: none;
    border: 0;
}

.sol-calclu-area .calculator-form input::placeholder {
    color: var(--text-white);
}

.sol-calclu-area .results-display-card {
    background: rgba(255, 255, 255, .97);
    border-radius: 18px;
    padding: 28px;
    min-height: 100%;
}

.sol-calclu-area .results-heading {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 30px;
    font-family: var(--secondry-font);
}

.sol-calclu-area .metric-item {
    position: relative;
}

.sol-calclu-area .metric-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 500;
}

.sol-calclu-area .metric-value {
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    font-family: var(--secondry-font);
}

.sol-calclu-area .divider-left::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 10px;
    width: 1px;
    height: 60px;
    background: #d9e2dc;
}


.sol-calclu-area .eco-benefits-panel {
    background: linear-gradient(180deg,
            #f7fff8 0%,
            #eefbf1 100%);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #dceede;
}

.sol-calclu-area .benefit-block {
    position: relative;
}

.sol-calclu-area .benefit-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sol-calclu-area .benefit-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.sol-calclu-area .benefit-value {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
    font-family: var(--secondry-font);
}

.sol-calclu-area .divider-left-light::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: #d9e2dc;
}

.sol-calclu-area .disclaimer-text {
    font-size: 13px;
    color: var(--text-light);
}

/* sol-caluetor-sec-end */

/* project-sec-start */

.projec-sec .nav-pills .nav-link {
    background-color: var(--color-white);
    color: var(--text-dark);
    border: 0.1rem solid #e2e8f0;
    border-radius: 5rem;
    padding: 0.8rem 2.2rem;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.projec-sec .nav-pills .nav-link.active,
.projec-sec .nav-pills .nav-link:hover {
    background-color: var(--primary-color) !important;
    color: var(--text-white) !important;
    border-color: var(--primary-color);
}


.projec-sec .project-card-item {
    background-color: var(--color-white);
    border: 0.1rem solid #edf2f7;
    border-radius: 1.6rem;
    overflow: hidden;
    margin: 1rem 0.2rem 2.5rem 0.2rem;
    box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projec-sec .project-card-item:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.07);
}

.projec-sec .project-card-item .img-box {
    width: 100%;
    height: 19rem;
    overflow: hidden;
}

.projec-sec .project-card-item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projec-sec .project-card-item .content-box {
    padding: 2rem;
}

.projec-sec .project-card-item .category {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 400;
    display: block;
    margin-bottom: 0.5rem;
}

.projec-sec .project-card-item .title {
    color: var(--text-dark);
    font-family: var(--secondry-font);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: .6rem;
}

.projec-sec .project-card-item .location {
    color: var(--text-muted);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}


.projec-sec .project-card-item .status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-light);
    font-size: 1.4rem;
    font-weight: 500;
}

.projec-sec .project-card-item .status i {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 400;
}

.projec-sec .owl-theme .owl-nav {
    display: none !important;
}

.projec-sec .project-carousel .owl-dots {
    margin-top: 2rem !important;
    display: flex;
    justify-content: center;
    gap: .5rem;
}

.projec-sec .project-carousel .owl-dot.active {
    background: #16a049;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.project-carousel .owl-dot span {
    display: block !important;
    width: 10px !important;
    height: 10px !important;
    background: var(--light-black) !important;
    border-radius: 50%;
}

.projec-sec .project-carousel .owl-dots .owl-dot.active span,
.projec-sec .project-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--primary-color) !important;
    opacity: 1;
    transform: scale(1.2);
}


/* project-sec-end */

/* testimonail-sec-start */

.testi-sec {
    background: #f5f6fa;
}

.testi-sec .testi-card {
    background-color: var(--color-white);
    border: 0.1rem solid #f1f5f9;
    border-radius: 1.6rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.02);
    margin: 1rem 0.5rem;
}

.testi-sec .rating-stars i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.testi-sec .feedback-text {
    color: var(--text-color);
    font-size: 1.48rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 0;
    min-height: 7rem;
}

.testi-sec .user-img {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.testi-sec .user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-sec .user-info .name {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.testi-sec .user-info .designation {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 0;
}

.testi-sec .owl-theme .owl-nav {
    margin-top: 0;
}

.testi-sec .owl-theme .owl-nav [class*='owl-'] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    height: 4rem;
    background-color: var(--white-bg) !important;
    color: var(--heading-color) !important;
    border-radius: 50% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.testi-sec .owl-theme .owl-nav [class*='owl-'] i {
    font-size: 1.6rem;
    font-weight: 400;
}

.testi-sec .owl-theme .owl-nav [class*='owl-']:hover {
    background-color: var(--primary-color) !important;
    color: var(--color-white) !important;
}

.testi-sec .owl-nav .owl-prev {
    left: -2.5rem;
}

.testi-sec .owl-nav .owl-next {
    right: -2.5rem;
}

.testi-sec .testimonial-carousel .owl-nav.disabled {
    display: flex;
}

/* testimonail-sec-end */

/* brand-start */

.brand-marique .marquee-wrapper {
    padding: 1.5rem 0 1rem;
    position: relative;
    display: flex;
    max-width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.brand-marique .marquee-track {
    display: flex;
    align-items: center;
    gap: 6rem;
    width: max-content;
    animation: scrollMarquee 18s linear infinite;
}

.brand-marique .marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.brand-marique .brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 1rem;
}

.brand-marique .brand-item img {
    height: auto;
    width: 13rem;
    object-fit: contain;
    filter: grayscale(20%) opacity(0.85);
    transition: filter 0.4s ease, transform 0.3s ease;
}

.brand-marique .brand-item img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.03);
}


@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-30%);
    }
}

/* brand-end */

/* cta-start  */
.cta-sec {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 76px 10px 30px;
    position: relative;
    background-position: center center !important;
}

.cta-sec .cta-txt-wrpr strong {
    font-size: 27px;
    letter-spacing: 0.05rem;
    color: var(--color-white);
}

.cta-sec .cta-txt-wrpr p {
    color: #ffffffba;
    line-height: 1.6;
    letter-spacing: 0.018rem;
    font-size: 1.5rem;
}


/* cta-end */

/* footer-start */

.footer {
    background: var(--green-gredient);
    color: var(--text-white);
    padding-top: 5rem;
    position: relative;
    overflow: clip;
}

.footer-float-bg {
    position: absolute;
    width: 80%;
    right: 0;
    left: unset;
    bottom: -150px;
    transform: unset;
    opacity: .04;
    z-index: 1;
}

.footer .footer-top {
    padding-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer .footer-item {
    height: 100%;
}

.footer .footer-logo img {
    height: 59px;
    width: auto;
    object-fit: contain;
}

.footer .brand-desc {
    font-size: 1.4rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    margin-top: 1.8rem;
}

.footer .footer-title {
    color: var(--text-white);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.footer .footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer .footer-links li {
    margin-bottom: .8rem;
}

.footer .footer-links li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.5rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer .footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 0.4rem;
}

.footer .contact-info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer .contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.footer .contact-info-list li i {
    color: var(--text-white);
    font-size: 1.6rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer .contact-info-list li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .contact-info-list li a:hover {
    color: var(--primary-color);
}


.footer .social-icon {
    width: 3.5rem;
    height: 3.5rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .social-icon i {
    font-size: 1.5rem;
}

.footer .social-icon:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-0.2rem);
}


.footer .footer-contact-form .form-control {
    background-color: rgba(255, 255, 255, 0.06);
    border: 0.1rem solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    font-size: 1.4rem;
    padding: 0.7rem 1.2rem;
    border-radius: 0.8rem;
}

.footer .footer-contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer .footer-contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: none;
}

.footer .footer-contact-form textarea.form-control {
    resize: none;
}

.footer .btn-send:hover {
    background-color: var(--secondry-color);
    color: var(--text-white);
}


.footer .footer-bottom {
    border-top: 0.1rem solid rgba(255, 255, 255, 0.08);
    padding: 1.4rem 0;
    position: relative;
    z-index: 3;
}

.footer .copyright-text {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer .bottom-links {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .bottom-links a:hover {
    color: var(--primary-color);
}

.footer .text-divider {
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.1rem;
}

.footer .border-left-divider {
    border-left: 0.1rem solid rgba(255, 255, 255, 0.12);
}

/* footer-end */

/* about-page-start */

/* bnr */

.abt-pg-bnr {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    position: relative;
}

.abt-pg-bnr .banner-content-wrap {
    padding: 8rem 4rem 8rem 8%;
}


.abt-pg-bnr .main-heading {
    font-family: var(--secondry-font);
    font-size: 4.4rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 1.4rem;
}

.abt-pg-bnr .main-heading .highlight-text {
    color: var(--heading-color);
    display: inline-block;
    font-family: var(--secondry-font);
}

.abt-pg-bnr .sub-heading {
    font-family: var(--primary-font);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: 0.02rem;
}

.abt-pg-bnr .desc-text {
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 55rem;
}


.abt-pg-bnr .btn-outline-custom .icon-circle-outline {
    width: 3.2rem;
    height: 3.2rem;
    background-color: var(--theme-color);
    color: var(--heading-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt-pg-bnr .btn-outline-custom:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(22, 163, 74, 0.03);
}

.abt-pg-bnr .banner-img-column {
    min-height: 55rem;
}

.abt-pg-bnr .banner-bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.abt-pg-bnr .floating-stats-card {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    background-color: var(--color-white);
    border-radius: 2rem;
    padding: 3rem 3.5rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.08);
    width: 28rem;
    z-index: 10;
}

.abt-pg-bnr .stats-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.abt-pg-bnr .stat-icon-wrap {
    width: 4.4rem;
    height: 4.4rem;
    background-color: var(--white-bg);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.abt-pg-bnr .stat-icon-wrap i {
    color: var(--primary-color);
    font-size: 2.26rem;
    font-weight: 400;
}

.abt-pg-bnr .counter-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.abt-pg-bnr .counter-label {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 500;
}

/* bnr */

/* about-company */

.abt-detail-sec .abt-img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2rem !important;
}

.abt-detail-sec .section-heading {
    font-family: var(--secondry-font);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.2rem;
}

.abt-detail-sec .description-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.abt-detail-sec .desc-para {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0;
}


.abt-detail-sec .stat-inner-card {
    background-color: var(--color-white);
    border: 0.1rem solid #bdbdbd42;
    border-radius: 1.6rem;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 1.2rem;
}

.abt-detail-sec .stat-inner-card:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.05);
}

.abt-detail-sec .stat-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.abt-detail-sec .stat-icon i {
    color: var(--primary-color);
    font-size: 2.4rem;
    font-weight: 400;
}

.abt-detail-sec .stat-number {
    font-family: var(--secondry-font);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.abt-detail-sec .stat-text {
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0;
}

/* about-company */

/* aproach */

.abt-aproach-sec {
    background-color: var(--light-white);
}


.abt-aproach-sec .section-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.abt-aproach-sec .title-bottom-line {
    width: 4rem;
    height: 0.3rem;
    background-color: var(--primary-color);
    margin: 0 auto;
    border-radius: 0.2rem;
}

.abt-aproach-sec .process-flow-wrapper {
    width: 100%;
    padding: 3rem 0;
}

.abt-aproach-sec .process-flow-wrapper::-webkit-scrollbar {
    height: 0.5rem;
}

.abt-aproach-sec .process-flow-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(22, 163, 74, 0.2);
    border-radius: 1rem;
}

.abt-aproach-sec .process-track {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-top: 2rem;
}

.abt-aproach-sec .process-track::before {
    content: '';
    position: absolute;
    top: 3.6rem;
    left: 4%;
    width: 92%;
    height: 0.1rem;
    background-color: #cbd5e1;
    z-index: 1;
}

.abt-aproach-sec .process-step-item {
    width: 12.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 0.5rem;
}

.abt-aproach-sec .step-number-node {
    width: 3.2rem;
    height: 3.2rem;
    background-color: var(--secondry-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 0.3rem solid var(--light-white);
    box-shadow: 0 0 0 0.1rem #cbd5e1;
    position: relative;
}

.abt-aproach-sec .process-step-item:not(:last-child) .step-number-node::after {
    content: '\f105';
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -5.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.3rem;
    animation: smoothArrow 1.8s ease-in-out infinite;
}

@keyframes smoothArrow {
    0% {
        transform: translateY(-50%) translateX(0) scale(1);
        opacity: .4;
    }

    50% {
        transform: translateY(-50%) translateX(10px) scale(1.15);
        opacity: 1;
    }

    100% {
        transform: translateY(-50%) translateX(0) scale(1);
        opacity: .4;
    }
}


.abt-aproach-sec .step-card {
    background-color: var(--color-white);
    border: 0.1rem solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
    width: 100%;
    min-height: 15rem;
    box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.abt-aproach-sec .process-step-item:hover .step-card {
    transform: translateY(-0.4rem);
    border-color: var(--primary-color);
}

.abt-aproach-sec .step-title {
    font-family: var(--secondry-font);
    font-size: 1.67rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    text-align: center;
    line-height: 1.5;
}

.abt-aproach-sec .step-desc {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center;
}

.abt-aproach-sec .approach-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
    object-position: 0;
}

.abt-aproach-sec .approach-detail-card {
    border: 0.1rem solid #e2e8f0;
    box-shadow: 0 0.5rem 2.5rem rgba(0, 0, 0, 0.02);
}

.abt-aproach-sec .detail-heading {
    font-family: var(--secondry-font);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: 0.02rem;
}

.abt-aproach-sec .feature-checklist {
    list-style: none;
}

.abt-aproach-sec .feature-checklist li {
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.abt-aproach-sec .check-icon i {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 400;
}

.abt-aproach-sec .btn-approach-cta {
    background-color: var(--secondry-color);
    border: 0.1rem solid var(--secondry-color);
    color: var(--text-white);
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0.8rem 0.8rem 0.8rem 2.4rem;
    border-radius: 3rem;
    transition: all 0.3s ease;
}

.abt-aproach-sec .btn-approach-cta .icon-circle {
    width: 3.2rem;
    height: 3.2rem;
    background-color: var(--color-white);
    color: var(--secondry-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.abt-aproach-sec .btn-approach-cta:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.abt-aproach-sec .btn-approach-cta:hover .icon-circle {
    transform: translateX(0.3rem);
    color: var(--primary-color);
}


/* aproach */

/* abt-2 */

.abt-comp-mv .side-heading,
.why-install-sec .sec-sub-tle-2,
.abt-wrk-sec .tle-1,
.work-header .tle-1,
.brnad-cont-lt .tle-1,
.abt-testi-rt .tle-1,
.abt-faq .abt-faq-cont-lt .tle-1 {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.abt-comp-mv .mvv-side-wrap {
    background-color: var(--theme-color);
    border: 0.1rem solid #e2e8f0;
    border-radius: 2rem;
    padding: 2.3rem;
}

.abt-comp-mv .mvv-card {
    background-color: var(--color-white);
    border: 0.1rem solid #f1f5f9;
    border-radius: 1.6rem;
    padding: 2.5rem 1.5rem;
    height: 100%;
    box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.01);
    transition: transform 0.3s ease;
}

.abt-comp-mv .mvv-card:hover {
    transform: translateY(-0.3rem);
}

.abt-comp-mv .mvv-icon-box {
    width: 5rem;
    height: 5rem;
    background-color: var(--white-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto 1.5rem;
}

.abt-comp-mv .mvv-icon-box i {
    color: var(--primary-color);
    font-size: 2.4rem;
    font-weight: 400;
}

.abt-comp-mv .mvv-card-title {
    font-family: var(--secondry-font);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.abt-comp-mv .mvv-card-desc {
    font-size: 1.37rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 0;
}

.abt-comp-mv .values-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-left: 35px !important;
}

.abt-comp-mv .values-checklist li {
    font-size: 1.37rem;
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.abt-comp-mv .values-checklist li i {
    color: var(--primary-color);
    font-size: 1.45rem;
    font-weight: 400;
}

.abt-comp-mv .why-side-wrap {
    background-color: var(--theme-color);
    border: 0.1rem solid #e2e8f0;
    border-radius: 2rem;
    padding: 3.5rem 2.5rem;
}

.abt-comp-mv .feature-mini-card {
    background-color: var(--color-white);
    border: 0.1rem solid #f1f5f9;
    border-radius: 1.4rem;
    padding: 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.01);
    transition: transform 0.3s ease, border-color 0.3s ease;
    flex-direction: column;
    text-align: center;
}

.abt-comp-mv .feature-mini-card:hover {
    transform: translateY(-0.3rem);
    border-color: var(--primary-color);
}

.abt-comp-mv .feature-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--white-bg);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.abt-comp-mv .feature-icon i {
    color: var(--primary-color);
    font-size: 1.9rem;
    font-weight: 400;
}

.abt-comp-mv .feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

/* abt-2 */

/* why-install */

.why-install-sec {
    background: var(--light-white);
}



.why-install-sec .install-benefit-card {
    background-color: var(--color-white);
    border: 0.1rem solid #e2e8f0;
    border-radius: 1.2rem;
    padding: 2.2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    height: 100%;
    min-height: 10.5rem;
    box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.01);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.why-install-sec .install-benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-0.2rem);
}

.why-install-sec .container-fluid {
    max-width: 100%;
    padding: 0 10rem !important;
}

.why-install-sec .benefit-icon-box {
    width: 4.6rem;
    height: 4.6rem;
    background-color: var(--white-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-install-sec .benefit-icon-box i {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 400;
}

.why-install-sec .benefit-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.why-install-sec .benefit-title {
    font-family: var(--secondry-font);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.6;
}

.why-install-sec .benefit-desc {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0;
    padding-top: .5rem;
}

/* why-install */

/* team */

.abt-team-sec .team-main-wrpr {
    position: relative;
    padding: 0 1rem;
}


.abt-team-sec .expert-card {
    background-color: var(--color-white);
    border: 0.1rem solid #e2e8f0;
    border-radius: 1.6rem;
    padding: 1.2rem;
    box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.01);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.abt-team-sec .expert-card:hover {
    border-color: var(--primary-color);
}

.abt-team-sec .expert-img-box {
    width: 100%;
    border-radius: 1.2rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: #f1f5f9;
}

.abt-team-sec .expert-img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.abt-team-sec .expert-info {
    padding-bottom: 0.5rem;
}

.abt-team-sec .expert-name {
    font-family: var(--secondry-font);
    font-size: 21px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: .6rem;
}

.abt-team-sec .expert-designation {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    letter-spacing: 0.02rem;
}

.abt-team-sec .social-icon a {
    width: 3.8rem;
    height: 3.8rem;
    background-color: #f0fdf4;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-black);
    font-size: 1.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.abt-team-sec .expert-card:hover .social-icon a {
    background-color: var(--primary-color);
    color: var(--text-white);
}


.abt-team-sec .expert-carousel .owl-nav {
    position: static;
}

.abt-team-sec .expert-carousel .owl-prev,
.abt-team-sec .expert-carousel .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--color-white) !important;
    border: 0.1rem solid #cbd5e1 !important;
    color: var(--text-dark) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.abt-team-sec .expert-carousel .owl-prev {
    left: -5.2rem;
}

.abt-team-sec .expert-carousel .owl-next {
    right: -5.2rem;
}

.abt-team-sec .expert-carousel .owl-prev i,
.abt-team-sec .expert-carousel .owl-next i {
    font-size: 1.4rem;
    font-weight: 400;
}

.abt-team-sec .expert-carousel .owl-prev:hover,
.abt-team-sec .expert-carousel .owl-next:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-white) !important;
}

/* team */

/* work */

.abt-wrk-sec {
    background: var(--light-white);
}

.abt-wrk-sec .tle-2 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.abt-wrk-sec .map-img {
    max-height: 30rem;
}

.abt-wrk-sec .district-list-row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.abt-wrk-sec .district-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.abt-wrk-sec .district-list li {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

.abt-wrk-sec .district-list li i {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 400;
}

.abt-wrk-sec .district-list li.coming-soon {
    color: var(--text-light);
}

.abt-wrk-sec .work-bottom-desc {
    font-family: var(--secondry-font);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin-top: 2rem;
    max-width: 55rem;
}

.abt-wrk-sec .badge-planned {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    margin-left: 0.4rem;
}

.abt-wrk-sec .impact-stat-card {
    background-color: var(--color-white);
    border: 0.1rem solid #e2e8f0;
    border-radius: 1.2rem;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.01);
    transition: border-color 0.3s ease, transform 0.3s ease;
    align-items: center;
    text-align: center;
    gap: .3rem;
}

.abt-wrk-sec .impact-stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-0.3rem);
}

.abt-wrk-sec .stat-icon-box {
    width: 4.4rem;
    height: 4.4rem;
    background-color: var(--white-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
}

.abt-wrk-sec .stat-icon-box i {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 400;
}

.abt-wrk-sec .stat-counter {
    font-family: var(--secondry-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0.6rem;
}


.abt-wrk-sec .stat-counter span {
    font-size: 1.4rem;
    font-weight: 600;
}

.abt-wrk-sec .stat-label {
    font-size: 1.32rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.abt-wrk-sec .stat-label span {
    display: block;
}

/* work */

/* review */

.brnad-cont-lt,
.abt-testi-rt {
    background-color: var(--theme-color);
    border-radius: 1.6rem;
    padding: 2.4rem;
    border: 0.1rem solid #e2e8f0;
}

.brnad-cont-lt .brand-sliders-wrapper {
    display: flex;
    flex-direction: column;
}


.brnad-cont-lt .brand-logo-box {
    background-color: var(--color-white);
    border: 0.1rem solid #f1f5f9;
    border-radius: 1.2rem;
    padding: 1.2rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.01);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.brnad-cont-lt .brand-logo-box:hover {
    border-color: var(--primary-color);
    /* transform: translateY(-0.2rem); */
}

.brnad-cont-lt .brand-logo-box img {
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    object-fit: contain;
}

/* review */

/* faq */

.abt-faq-cont-lt {
    border-radius: 1.6rem;
    padding: 2.4rem;
    border: 0.1rem solid #e2e8f0;
}

.abt-faq-cont-lt .faq-section-title {
    font-family: var(--secondry-font);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.abt-custom-accordion .accordion-item {
    background-color: transparent;
    border: none;
    margin-bottom: 1rem;
}

.abt-custom-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.abt-custom-accordion .accordion-button {
    background-color: #f1f5f9;
    color: var(--text-color);
    font-family: var(--primary-font);
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1.4rem 2rem;
    border-radius: 1.2rem !important;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.25s ease-in-out;
}

.abt-custom-accordion .accordion-body p {
    font-size: 1.4rem;
    line-height: 1.6;
}

.abt-custom-accordion .accordion-button::after {
    display: none !important;
}

.abt-custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--white-bg);
    color: var(--secondary-color);
}


.abt-custom-accordion .faq-icon-status {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-custom-accordion .accordion-button:not(.collapsed) .faq-icon-status {
    background-color: var(--primary-color);
    transform: rotate(180deg);
}

.abt-custom-accordion .faq-icon-status i {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.abt-custom-accordion .accordion-button:not(.collapsed) .faq-icon-status i {
    color: var(--text-white);
}

.abt-custom-accordion .accordion-button:not(.collapsed) .faq-icon-status i::before {
    content: "\f068";
}

.abt-custom-accordion .accordion-body {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
    padding: 1.2rem 2rem 0.5rem 2rem;
    background-color: transparent;
}

.abt-faq .abt-cta-rt {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    padding: .5rem;
    border-radius: 1.4rem;
    height: 460px;
}

.abt-faq .faq-cta-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 5rem;
    background-size: cover;
    background-position: center;
}

.abt-faq .faq-content {
    position: relative;
    z-index: 2;
}

.abt-faq .faq-content h3 {
    font-size: 2.8rem;
    color: var(--text-white);
    font-family: var(--secondry-font);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.02rem;
}

.abt-faq .faq-content p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.abt-faq .faq-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem 2rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.abt-faq .faq-feature-list li {
    color: rgba(255, 255, 255, .92);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    letter-spacing: 0.01rem;
}

.abt-faq .faq-feature-list i {
    color: #b6ffca;
    font-size: 1.4rem;
}


/* faq */

/* about-page-end */

/* dealer-page-start */

/* bnr */

.dealer-innr-bnr .floating-feature-wrap {
    background-color: var(--color-white);
    border-radius: 1.6rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.06);
    border: 0.1rem solid rgba(0, 0, 0, 0.02);
}

.dealer-innr-bnr .feature-icon-frame {
    width: 4.8rem;
    height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dealer-innr-bnr .feature-icon-frame i {
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--primary-color);
}


.dealer-innr-bnr .feature-info-meta span {
    font-family: var(--secondry-font);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    white-space: nowrap;
    display: inline-block;
}

.dealer-innr-bnr .feature-info-meta p {
    font-family: var(--primary-font);
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.2;
    white-space: nowrap;
}

/* bnr */

/* dealer-main */

.dealer-main-sec-2 .title-1 {
    font-family: var(--secondry-font);
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
    letter-spacing: 0.02rem;
}

.dealer-main-sec-2 .sec-desc {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}


.dealer-main-sec-2 .benefit-item .benefit-icon {
    margin-top: 0.2rem;
}

.dealer-main-sec-2 .benefit-item .benefit-icon i {
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
}

.dealer-main-sec-2 .benefit-text h3 {
    font-family: var(--secondry-font);
    font-size: 1.78rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.dealer-main-sec-2 .benefit-text p {
    font-family: var(--primary-font);
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

.dealer-main-sec-2 .docs-main-icon i {
    font-size: 17px;
    font-weight: 400;
    color: var(--heading-color);
}

.dealer-main-sec-2 .why-partner-wrap {
    background-color: #fafbfc;
    border: 0.1rem solid #6d535336;
    border-radius: 2rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.03);
    padding: 2rem;
    height: 100%;
    background-size: cover !important;
    background-position: bottom center !important;
    background-repeat: no-repeat !important;
}

.dealer-main-sec-2 .docs-title {
    font-family: var(--secondry-font);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.dealer-main-sec-2 .docs-desc {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    color: var(--text-color);
}

.dealer-main-sec-2 .docs-checklist {
    list-style: none;
}

.dealer-main-sec-2 .docs-checklist li {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.dealer-main-sec-2 .docs-checklist li i.text-success-icon {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 400;
}

.dealer-main-sec-2 .form-card-container {
    background-color: #fafbfc;
    border: 0.1rem solid #6d535336;
    border-radius: 2rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.03);
}

.dealer-main-sec-2 .form-main-title {
    font-family: var(--secondry-font);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--heading-color);
}

.dealer-main-sec-2 .form-subtitle {
    padding-top: .5rem;
    font-size: 1.4rem;
    color: var(--text-light);
    max-width: 38rem;
    line-height: 1.4;
}

.dealer-main-sec-2 .form-label-custom {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    display: block;
}

.dealer-main-sec-2 .required-star {
    color: #ef4444;
    margin-left: 0.3rem;
}

.dealer-main-sec-2 .custom-input,
.dealer-main-sec-2 .custom-select {
    height: 4.8rem;
    border: 0.1rem solid #e2e8f0;
    border-radius: 0.8rem;
    font-family: var(--primary-font);
    font-size: 1.5rem;
    color: var(--text-dark);
    padding: 0 1.6rem;
    box-shadow: none !important;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.dealer-main-sec-2 .custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.6rem center;
    background-size: 1.2rem;
}

.dealer-main-sec-2 .custom-input::placeholder {
    color: var(--text-muted);
}

.dealer-main-sec-2 .custom-input:focus,
.dealer-main-sec-2 .custom-select:focus {
    border-color: var(--primary-color);
    background-color: var(--color-white);
}

.dealer-main-sec-2 .upload-dropzone-wrapper {
    background-color: var(--color-white);
    border: 0.15rem dashed #cbd5e1;
    border-radius: 1rem;
    cursor: pointer;
    transition: border-color 0.25s ease;
}

.dealer-main-sec-2 .upload-dropzone-wrapper:hover {
    border-color: var(--primary-color);
}

.dealer-main-sec-2 .dropzone-hidden-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.dealer-main-sec-2 .upload-icon-box i {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--primary-color);
}

.dealer-main-sec-2 .upload-text {
    font-family: var(--primary-font);
    font-size: 1.35rem;
    color: var(--text-dark);
    font-weight: 500;
}

.dealer-main-sec-2 .upload-text span {
    color: var(--text-light);
    font-weight: 400;
}

.dealer-main-sec-2 .upload-limits {
    font-family: var(--primary-font);
    font-size: 1.3rem;
    color: var(--text-muted);
}

.dealer-main-sec-2 .custom-checkbox-box {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 0.4rem;
    border: 0.15rem solid #cbd5e1;
    box-shadow: none !important;
    cursor: pointer;
}

.dealer-main-sec-2 .custom-checkbox-box:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.dealer-main-sec-2 .check-label-text {
    font-family: var(--primary-font);
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 500;
}

.dealer-main-sec-2 .check-label-text a {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 600;
}

.dealer-main-sec-2 .check-label-text a:hover {
    text-decoration: underline;
}


.dealer-main-sec-2 .btn-submit-application {
    height: 5rem;
    background-color: var(--secondry-color);
    color: var(--text-white);
    font-family: var(--primary-font);
    border-radius: 1rem;
}

.dealer-main-sec-2 .btn-submit-application i {
    font-size: 1.4rem;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.dealer-main-sec-2 .btn-submit-application:hover {
    background-color: #0f3f22;
    color: var(--text-white);
}

.dealer-main-sec-2 .btn-submit-application:hover i {
    transform: translateX(0.4rem);
}

/* dealer-main */

/* dealer-partner */

section.dealer-partnr-2 {
    background: #dfe4ea;
    position: relative;
}

.dealer-partnr-2 .partner-card {
    background-color: var(--color-white);
    border: 0.1rem solid #e2e8f0;
    border-radius: 1.2rem;
    padding: 3rem 2rem;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dealer-partnr-2 .partner-card:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
}

.dealer-partnr-2 .logo-wrapper {
    height: 7.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dealer-partnr-2 .partner-logo {
    max-height: 100%;
    width: auto !important;
    object-fit: contain;
}

.dealer-partnr-2 .partner-name {
    font-family: var(--secondry-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.dealer-partnr-2 .partner-tag {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.dealer-partnr-2 .partner-loc {
    font-family: var(--primary-font);
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.dealer-partnr-2 .dealer-partner-carousel {
    position: relative;
}

.dealer-partnr-2 .owl-nav {
    margin-top: 0 !important;
}

.dealer-partnr-2 .owl-nav button.owl-prev,
.dealer-partnr-2 .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.6rem;
    height: 3.6rem;
    background-color: rgba(22, 163, 74, 0.15) !important;
    border: 0.2rem solid var(--primary-color) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 10;
}


.dealer-partnr-2 .owl-nav button.owl-prev {
    left: -4.5rem;
}

.dealer-partnr-2 .owl-nav button.owl-next {
    right: -4.5rem;
}

.dealer-partnr-2 .owl-nav button.owl-prev:hover,
.dealer-partnr-2 .owl-nav button.owl-next:hover {
    background-color: var(--primary-color) !important;
}


.dealer-partnr-2 .owl-nav button i {
    font-size: 1.5rem;
    color: var(--secondry-color);
    font-weight: 400;
    transition: color 0.2s ease;
}

.dealer-partnr-2 .owl-nav button:hover i {
    color: var(--text-white);
}

.dealer-partnr-2 .owl-carousel .owl-nav.disabled {
    display: block;
}

/* dealer-partner */

/* cta */
.dealer-cta-wrpr .cta-sec {
    background-position: left center !important;
    padding: 4rem 1.5rem !important;
}

/* cta */

/* dealer-page-end */

/* project-details-page-start */

/* bnr */

.project-innr-bnr {
    padding: 4rem 0 3rem;
    height: 50vh;
}

/* bnr */

/* project-details-main */


.proje-dtils-main .filter-top-bar {
    background: var(--color-white);
    border-radius: 16px;
    padding: 3rem !important;
    box-shadow: 0 10px 30px rgb(0 0 0 / 14%);
    margin: 1rem 0 5rem !important;
}


.proje-dtils-main .search-box-wrapper {
    position: relative;
}

.proje-dtils-main .search-box-wrapper .search-icon {
    position: absolute;
    left: 15px;
    top: 48%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 13px;
}

.proje-dtils-main .search-box-wrapper .form-control {
    padding-left: 38px;
}

.proje-dtils-main .form-control,
.proje-dtils-main .form-select {
    font-size: 15px;
    height: 47px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    color: var(--text-dark);
}

.proje-dtils-main .form-control:focus,
.proje-dtils-main .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.proje-dtils-main .project-tab-nav::-webkit-scrollbar {
    height: 4px;
}

.proje-dtils-main .project-tab-nav::-webkit-scrollbar-thumb {
    background-color: #e2e8f0;
    border-radius: 10px;
}

.proje-dtils-main .project-tab-nav .nav-item {
    margin-right: 17px;
}

.proje-dtils-main .project-tab-nav .nav-link {
    background-color: #f8fafc;
    color: var(--text-color);
    border: 1px solid #e2e8f0;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.proje-dtils-main .project-tab-nav .nav-link.active,
.proje-dtils-main .project-tab-nav .nav-link:hover {
    background-color: var(--secondry-color) !important;
    color: var(--text-white) !important;
    border-color: var(--secondry-color);
}

.proje-dtils-main .project-card-item {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proje-dtils-main .project-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.proje-dtils-main .card-img-holder {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.proje-dtils-main .card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proje-dtils-main .badge-tag {
    position: absolute;
    top: 11px;
    left: 12px;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
}

.proje-dtils-main .tag-res {
    background-color: #16a34a;
}

.proje-dtils-main .tag-comm {
    background-color: #15803d;
}

.proje-dtils-main .tag-ind {
    background-color: #14532d;
}

.proje-dtils-main .tag-agri {
    background-color: #047857;
}

.proje-dtils-main .tag-gov {
    background-color: #065f46;
}

.proje-dtils-main .tag-hybrid {
    background-color: #0f766e;
}

.proje-dtils-main .badge-cap {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--color-black);
    color: var(--text-white);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.proje-dtils-main .card-body-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.proje-dtils-main .loc-tag {
    font-size: 15px;
    color: var(--light-black);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.proje-dtils-main .loc-tag i {
    color: var(--primary-color);
}

.proje-dtils-main .proj-title {
    font-family: var(--secondry-font);
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.6;
}

.proje-dtils-main .proj-desc {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.proje-dtils-main .comp-date {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-success);
    background-color: var(--white-bg);
    padding: 6px 12px;
    border-radius: 6px;
    width: fit-content;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.proje-dtils-main .card-footer-action {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.proje-dtils-main .view-link {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    transition: color 0.2s;
}

.proje-dtils-main .view-link:hover {
    color: var(--primary-color);
}

.proje-dtils-main .arrow-btn {
    width: 32px;
    height: 32px;
    background-color: var(--secondry-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    transition: background-color 0.2s;
}

.proje-dtils-main .arrow-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.proje-dtils-main .btn-load-more {
    background-color: var(--color-white);
    border: 1px solid #cbd5e1;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    padding: 10px 24px;
    border-radius: 30px;
    transition: all 0.3s;
}

.proje-dtils-main .btn-load-more:hover {
    background-color: #f8fafc;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* project-details-main */

/* project-cta */



.projec-cta-sec {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: var(--primary-font);
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: bottom center !important;
    padding: 0 2rem;
    border-radius: 1.6rem;
}


.projec-cta-sec .cta-content-wrapper {
    padding: 60px 40px 60px 8%;
    color: var(--text-white);
    position: relative;
    z-index: 2;
}

.projec-cta-sec .cta-heading {
    font-family: var(--secondry-font);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 11px;
    letter-spacing: 0.02rem;
    color: var(--text-white);
    max-width: 84%;
}

.projec-cta-sec .cta-desc {
    font-weight: 400;
    color: var(--light-white);
    max-width: 65%;
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1.8rem;
    letter-spacing: 0.02rem;
}


.projec-cta-sec .cta-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* project-cta */

/* project-cta-2 */

.projec-cta-sec-2 .section-card {
    background-color: #f8f9f9;
    border-radius: 24px;
    padding: 40px 45px;
    box-shadow: 0 10px 30px rgb(255 178 178 / 4%);
    border: 1px solid #a9a9a97d;
}

.projec-cta-sec-2 h2 .highlight {
    color: var(--heading-color);
}

.projec-cta-sec-2 .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 10px 12px;
    position: relative;
    height: 100%;
}

.projec-cta-sec-2 .feature-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--white-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 25px;
    transition: all 0.3s ease;
}

.projec-cta-sec-2 .feature-item:hover .feature-icon-box {
    background-color: var(--primary-color);
    color: var(--color-white);
}

.projec-cta-sec-2 .feature-text {
    display: flex;
    flex-direction: column;
}

.projec-cta-sec-2 .feature-title {
    font-family: var(--secondry-font);
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 9px;
    line-height: 1.5;
}

.projec-cta-sec-2 .feature-desc {
    color: var(--text-light);
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 0;
}

/* project-cta-2 */

/* project-details-page-end */

/* modal-start */

.apply-modal {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(16px);
}

.apply-modal .modal-dialog {
    max-width: 480px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.apply-modal .modal-content {
    border: none;
    border-radius: 2.4rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.apply-modal .modal-top-section {
    background-color: #e8f7ee;
    padding: 3.5rem 2.5rem 2.5rem 2.5rem;
    position: relative;
    text-align: center;
}


.apply-modal .close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: #f1f3f5;
    border: none;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5c677d;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    padding: 0;
}

.apply-modal .close-btn:hover {
    background-color: #e2e6ea;
    color: #1a202c;
}

.apply-modal .badge-tag {
    display: inline-block;
    background-color: #c6f6d5;
    color: #1c733c;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 1.2rem;
    border-radius: 5rem;
    margin-bottom: 1.5rem;
}

.apply-modal .modal-main-title {
    color: #0f172a;
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.02rem;
    text-transform: capitalize;
}


.apply-modal .modal-body {
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    background-color: #ffffff;
}


.apply-modal .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.2rem;
}

.apply-modal .icon-box {
    width: 3.9rem;
    height: 3.9rem;
    background-color: #e8f7ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.apply-modal .icon-box i {
    color: #22c55e;
    font-size: 1.6rem;
}


.apply-modal .feature-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .6rem;
    line-height: 1.2;
}

.apply-modal .feature-text p {
    font-size: 1.5rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}


.apply-modal .apply-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f1423;
    color: #ffffff;
    text-decoration: none;
    /* font-size: 1.5rem; */
    font-weight: 700;
    /* padding: 1.4rem 2rem; */
    border-radius: 1.2rem;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    transition: background-color 0.2s ease;
    gap: .8rem;
}


@media (max-height: 600px) {
    .apply-modal .modal-dialog {
        margin: 1rem auto;
    }

    .apply-modal .modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* modal-end */

/* warranty-pg-start */

.wrntry-innr-bnr {
    position: relative;
    width: 100%;
    padding: 11rem 0 !important;
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
    position: relative;
    isolation: isolate;
}


.wrntry-innr-bnr .banner-title {
    font-family: var(--secondry-font);
    font-size: 38px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.3rem;
    letter-spacing: 0.05rem;
    line-height: 1.4;
}

.wrntry-innr-bnr .banner-title .highlight {
    color: var(--primary-color);
}


.wrntry-innr-bnr .banner-text {
    color: var(--color-white);
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 480px;
    letter-spacing: 0.03rem;
}

.wrntry-innr-bnr .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wrntry-innr-bnr .breadcrumb-item {
    font-size: 16px !important;
    font-weight: 600;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.02rem;
}

.wrntry-innr-bnr .breadcrumb-item+.breadcrumb-item::before {
    content: none;
}

.wrntry-innr-bnr .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.wrntry-innr-bnr .breadcrumb-item a:hover {
    opacity: 0.8;
}

.wrntry-innr-bnr .breadcrumb-item.icon-item {
    color: var(--text-white);
    font-size: 15px !important;
    opacity: 0.8;
}

.wrntry-innr-bnr .breadcrumb-item.active {
    color: var(--text-white);
}

.wrntry-innr-bnr .banner-content {
    padding: 3rem 0 3rem 6%;
}

/* prmise-sec */


.wrntry-prmise-sec .sec-title {
    color: var(--text-dark);
    position: relative;
}


.wrntry-prmise-sec .sec-title::after,
.wrntry-cvrge-sec .sec-title:after,
.wrntry-trms-sec .sec-title:after,
.rtrn-plcy-main-cont .sec-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}


.wrntry-prmise-sec .description {
    color: var(--text-color);
    margin-top: 25px;
    margin-bottom: 60px;
    font-weight: 400;
}


.wrntry-prmise-sec .promise-cards-row {
    row-gap: 24px;
}


.wrntry-prmise-sec .promise-card-col {
    position: relative;
}

.wrntry-prmise-sec .promise-card-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 3rem;
    transform: translateY(-50%);
    width: 1px;
    height: 71%;
    background-color: #e2e8f0;
}


.wrntry-prmise-sec .promise-card {
    display: flex;
    /* align-items: center; */
    justify-content: flex-start;
    text-align: left;
    padding: 0 15px;
    gap: 16px;
}

.wrntry-prmise-sec .icon-box {
    flex-shrink: 0;
    display: flex;
    /* align-items: center;
    justify-content: center; */
    padding-top: .5rem;
}

.wrntry-prmise-sec .icon-box i {
    font-size: 34px;
    color: var(--primary-color);
    font-weight: 300;
    line-height: 1;
}

.wrntry-prmise-sec .content-box h3 {
    color: var(--text-dark);
    font-family: var(--secondry-font);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.02rem;
}

.wrntry-prmise-sec .content-box p {
    color: var(--text-light);
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.02rem;
}

/* prmise-sec */

/* coverge-sec */
.wrntry-cvrge-main-cont .coverage-card {
    background-color: var(--color-white);
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 30px 18px 24px 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.wrntry-cvrge-main-cont .coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.08);
    border-color: rgba(22, 163, 74, 0.3);
}

.wrntry-cvrge-main-cont .icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--white-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.wrntry-cvrge-main-cont .icon-circle i {
    font-size: 25px;
    color: var(--primary-color);
    font-weight: 300;
    line-height: 1;
}

.wrntry-cvrge-main-cont .card-title {
    color: #030814;
    font-family: var(--secondry-font);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.wrntry-cvrge-main-cont .badge-years {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 11px;
    display: inline-block;
}

.wrntry-cvrge-main-cont .card-desc {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.wrntry-cvrge-card .coverage-box {
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 36px 40px;
    height: 100%;
}


.wrntry-cvrge-card .box-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.wrntry-cvrge-card .header-icon {
    font-size: 26px;
    line-height: 1;
}

.wrntry-cvrge-card .box-title {
    font-family: var(--secondry-font);
    font-size: 21px;
    font-weight: 600;
    margin: 0;
}

.wrntry-cvrge-card .text-covered {
    color: var(--heading-color);
}

.wrntry-cvrge-card .text-not-covered {
    color: var(--color-black);
}

.wrntry-cvrge-card .coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wrntry-cvrge-card .coverage-list li,
.wrntry-trms-sec .terms-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.02rem;
}

.wrntry-cvrge-card .success-icon {
    color: var(--primary-color);
    font-weight: 300;
}

.wrntry-cvrge-card .danger-icon {
    color: #ef4444;
    font-weight: 300;
}

.wrntry-cvrge-card .list-icon,
.wrntry-trms-sec .terms-list li i {
    font-size: 17px;
    flex-shrink: 0;
}

/* coverge-sec */

/* wrntry-terms-sec */
.wrntry-trms-sec .section-title {
    color: var(--text-dark);
    font-family: var(--secondry-font);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}


.wrntry-trms-sec .heading-line {
    width: 32px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 50px auto;
    border-radius: 2px;
}

.wrntry-trms-sec .terms-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.wrntry-trms-sec .terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wrntry-trms-sec .terms-list li i {
    color: var(--primary-color);
    font-weight: 300;
}

/* wrntry-terms-sec */

/* cta-sec */

.wrntry-cta-sec .cta-card-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 36px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}


.wrntry-cta-sec .cta-title {
    color: var(--text-white);
    font-family: var(--secondry-font);
    font-size: 27px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 17px;
    letter-spacing: 0.02rem;
}

.wrntry-cta-sec .cta-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 26px;
    max-width: 440px;
}


.wrntry-cta-sec .contact-info-card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wrntry-cta-sec .info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wrntry-cta-sec .info-icon {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wrntry-cta-sec .info-icon i {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 300;
}

.wrntry-cta-sec .info-text {
    display: flex;
    flex-direction: column;
}

.wrntry-cta-sec .info-text .label {
    color: var(--color-black);
    font-family: var(--secondry-font);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.wrntry-cta-sec .info-text .value {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.wrntry-cta-sec .info-text a.value:hover {
    color: var(--primary-color);
}


/* cta-sec */

/* warranty-pg-end */

/* return-pg-start */

/* return-policy-main-sec */

.rtrn-plcy-main-cont .policy-card {
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 16px;
    padding: 25px 28px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.rtrn-cta .cta-card-wrapper {
    background-position: top center !important;
}

.rtrn-plcy-main-cont .policy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.08), 0 4px 12px -2px rgba(22, 163, 74, 0.06);
    transition: 0.2s ease-in;
}

.rtrn-plcy-main-cont .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-color);
    background-color: var(--white-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
}

.rtrn-plcy-main-cont .icon-circle i {
    color: var(--primary-color);
    font-size: 21px;
    font-weight: 300;
}

.rtrn-plcy-main-cont .card-content {
    flex-grow: 1;
}

.rtrn-plcy-main-cont .card-title {
    font-family: var(--secondry-font);
    font-size: 21px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 17px;
}

.rtrn-plcy-main-cont .policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 17px;
}


.rtrn-plcy-main-cont .policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.rtrn-plcy-main-cont .policy-list li i {
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 300;
    margin-top: 3px;
    flex-shrink: 0;
}


/* return-policy-main-sec */

/* cta */

.rtrn-cta {
    padding: 4rem 0;
}

.rtrn-cta .btn-cta-txt {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.02rem;
    display: inline-block;
}

/* cta */

/* return-pg-end */

/* faq-pg-start */

.text-green {
    color: var(--secondry-color) !important;
}

.faq-cont-wrpr .faq-nav-card {
    border-color: #e8ece9 !important;
    background-color: var(--color-white) !important;
}

.faq-cont-wrpr .faq-nav-card .nav-link {
    color: var(--text-color);
    background-color: transparent;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 1px solid #c7c7c794;
}

.faq-cont-wrpr .faq-contact-card h3 {
    font-size: 20px;
    letter-spacing: 0.02rem;
    margin-bottom: 1.6rem !important;
}

.faq-cont-wrpr .faq-nav-card .nav-link:hover {
    background-color: var(--theme-color);
    color: var(--secondry-color);
}

.faq-cont-wrpr .faq-nav-card .nav-link.active {
    background: var(--green-gredient) !important;
    color: var(--text-white) !important;
}

.faq-cont-wrpr .faq-nav-card .nav-link i {
    font-size: 1.4rem;
}

.faq-cont-wrpr .faq-nav-card .nav-link span {
    font-size: 15px;
}

.faq-cont-wrpr .faq-contact-card {
    background-color: var(--theme-color) !important;
    border-color: #e8ece9 !important;
    text-align: start;
}

.faq-cont-wrpr .faq-contact-card .faq-main-lt-pra {
    font-size: 15px;
    line-height: 1.6;
}

.faq-cont-wrpr .faq-contact-card .contact-info span {
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0.02rem;
}

.faq-cont-wrpr .faq-contact-card .contact-info i {
    font-size: 14px;
    margin-right: .6rem;
}

.faq-cont-wrpr .accordion-item {
    border-color: #e8ece9 !important;
    background-color: var(--color-white);
}

.faq-cont-wrpr .accordion-button {
    background-color: var(--color-white);
    padding: 1.25rem 1.5rem;
    font-size: 1.7rem;
    color: var(--text-dark) !important;
    font-family: var(--secondry-font);
    font-weight: 600 !important;
}

.faq-cont-wrpr .accordion-button:not(.collapsed) {
    background-color: var(--color-white);
    color: var(--text-dark) !important;
    box-shadow: none;
}

.faq-cont-wrpr .accordion-button::after {
    content: "\f055";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    background-image: none !important;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.8rem;
    transform: none !important;
    transition: color 0.2s ease;
}

.faq-cont-wrpr .accordion-button:not(.collapsed)::after {
    content: "\f056";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    color: var(--secondry-color);
}

.faq-cont-wrpr .accordion-body {
    padding: 0 .5rem 1.25rem 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    color: var(--text-light);
    font-family: var(--primary-font);
}

.faq-cont-wrpr .accordion-body p {
    font-size: 14px;
    text-align: left;
    line-height: 1.58;
    letter-spacing: 0.02rem;
}


/* faq-pg-end */


/* responsive */

@media(min-width:1199.98px) {

    /* warranty-pg */

    .wrntry-cvrge-main-cont .col-xl-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }

    /* warranty-pg */
}

@media(max-width:1540px) {
    .footer .footer-logo img {
        height: 50px;
    }

    .main-bnr-sec h1 {
        font-size: 34px;
    }

    .main-bnr-sec .main-bnr-lt {
        max-width: 85%;
    }

    .main-bnr-sec .main-bnr-lt .bnr-fea-box p {
        font-size: 1.4rem;
        letter-spacing: 0.01rem;
        display: flex;
        flex-direction: column;
    }

    .btn-appointment,
    .btn-calculator {
        padding: 9px 30px;
        font-size: 1.5rem;
    }

    .bnr-float-box .bnr-content span {
        font-size: 22px;
    }

    .bnr-float-box .bnr-icon i {
        font-size: 18px;
    }

    .bnr-float-box .bnr-icon {
        width: 40px;
        height: 40px;
    }

    .ptb {
        padding: 5rem 0;
    }

    .why-chse-sec .card-text {
        color: var(--text-light);
        font-size: 15px;
        margin-bottom: 0;
        line-height: 1.4;
    }

    .why-chse-sec .icon-wrapper {
        width: 55px;
        height: 55px;
        margin: 0 auto 0;
    }

    .abt-lt-area .exp-floating-badge h3 {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .sec-title {
        font-size: 28px;
        margin-bottom: .3rem;
    }

    .sol-calclu-area .calculator-intro .sec-title {
        font-size: 25px;
        line-height: 1.5;
    }

    .sol-calclu-area .metric-label {
        margin-bottom: 3px;
    }

    .sol-calclu-area .metric-value {
        font-size: 23px;
    }

    .sol-calclu-area .benefit-value {
        font-size: 16px;
    }

    /* about-pg */

    .abt-pg-bnr .main-heading {
        font-size: 4rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }

    .abt-pg-bnr .sub-heading {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }

    .abt-pg-bnr .counter-num {
        font-size: 1.8rem;
        margin-bottom: 0.2rem;
    }

    .abt-detail-sec .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.2rem;
    }

    .why-install-sec .install-benefit-card {
        padding: 1.8rem;
        gap: 1.2rem;
        min-height: auto;
        flex-direction: column;
        text-align: center;
    }

    .abt-detail-sec .stat-icon i {
        font-size: 24px;
    }

    .abt-detail-sec .stat-inner-card {
        justify-content: start;
        gap: 2rem;
    }

    section.abt-aproach-sec .container,
    .abt-wrk-sec .container,
    .abt-comp-mv .container {
        max-width: 100%;
        padding: 0 5rem;
    }



    /* about-pg */

    /* project-dtls-pg */

    .project-innr-bnr {
        padding: 4rem 0 3rem;
        height: 100% !important;
    }

    .projec-cta-sec .cta-content-wrapper {
        padding: 28px 21px;
        z-index: 2;
    }

    .projec-cta-sec .cta-heading {
        font-size: 28px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 10px;
        max-width: 100%;
    }

    .proje-dtils-main .btn-load-more {
        font-size: 14px;
        padding: 10px 23px;
    }

    /* project-dtls-pg */

    /* warranty-pg */

    .wrntry-innr-bnr {
        padding: 5rem 0 !important;
    }

    .wrntry-innr-bnr .banner-title {
        font-size: 35px;
        margin-bottom: 1.1rem;
        line-height: 1.4;
    }


    .wrntry-innr-bnr .banner-text {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        max-width: 480px;
    }

    /* warranty-pg */


}

@media(max-width:1440px) {

    .main-bnr-sec h1 {
        font-size: 32px;
    }


    .btn-appointment,
    .btn-calculator {
        padding: 8px 25px;
        font-size: 1.4rem;
    }

    .main-bnr-sec .main-bnr-lt {
        max-width: 100%;
    }


    .why-chse-sec .card-title {
        font-size: 16px;
    }

    .why-chse-sec .feature-card {
        padding: 20px 13px;
    }

    .why-chse-sec .card-text {
        font-size: 14px;
        line-height: 1.5;
    }

    p {
        font-size: 1.5rem;
    }

    .abt-lt-area .video-media-box {
        height: 380px;
    }

    .sec-title {
        font-size: 26px;
        margin: .5rem 0;
    }

    .serv-sec .serv-grid {
        gap: 20px;
        grid-template-columns: repeat(3, 1fr);
    }

    .serv-sec .serv-icon-wrap {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .sol-calclu-area .calculator-intro .sec-title {
        font-size: 23px;
        line-height: 1.6;
        margin-top: 0;
    }


    .sol-calclu-area .results-display-card {
        padding: 19px;
    }

    .sol-calclu-area .metric-value {
        font-size: 22px;
    }

    .sol-calclu-area .benefit-value {
        font-size: 15px;
    }

    .projec-sec .project-card-item .content-box {
        height: 21rem;
    }



    section.brand-marique {
        padding-bottom: 0;
    }

    section.brand-marique {
        padding-bottom: 0 !important;
    }

    .cta-sec {
        padding: 60px 10px 20px;
    }

    .cta-sec .cta-txt-wrpr strong {
        font-size: 25px;
        line-height: 1.4;
    }

    .brand-marique .marquee-wrapper {
        padding: 0;
    }

    .main-bnr-sec .container-fluid {
        padding: 0 5rem;
    }

    /* about-pg */

    .abt-comp-mv .values-checklist {
        padding-left: 28px !important;
    }

    .abt-comp-mv .values-checklist {
        padding-left: 20px !important;
    }


    .abt-faq .faq-cta-card {
        padding: 3rem;
    }

    /* about-pg */

    /* dealer-pg */

    .abt-pg-bnr .main-heading {
        font-size: 3.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .dealer-innr-bnr .feature-info-meta span {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .dealer-innr-bnr .feature-icon-frame i {
        font-size: 2.4rem;
    }

    .floating-feature-wrap .feature-single-card {
        gap: .6rem !important;
    }

    /* dealer-pg */

    /* project-dtls-pg */

    .projec-cta-sec .cta-heading {
        margin-bottom: 0;
    }

    .projec-cta-sec .cta-desc {
        font-size: 1.6rem;
        line-height: 1.6;
        margin-bottom: .4rem;
    }

    /* project-dtls-pg */

    /* warranty-pg */


    .wrntry-cta-sec .cta-card-wrapper {
        padding: 30px;
    }

    .wrntry-cta-sec .cta-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    /* warranty-pg */

}

@media(max-width:1199px) {

    .main-bnr-sec .container-fluid {
        padding: 0 4rem;
    }

    .footer .footer-logo img {
        height: 64px;
    }

    .main-bnr-sec h1 {
        font-size: 30px;
    }

    .main-bnr-sec {
        padding: 4rem 0 3rem;
        position: relative;
        height: 54vh;
        isolation: isolate;
    }

    .main-bnr-sec .main-bnr-lt .bnr-fea-box {
        gap: 1.5rem;
        height: 46px;
    }

    .bnr-float-box .bnr-content span {
        font-size: 20px;
    }

    .bnr-float-box .bnr-content p {
        font-size: 13px;
    }

    .bnr-float-box .bnr-icon {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }

    .bnr-float-box .bnr-icon i {
        font-size: 16px;
    }


    .why-chse-sec .card-title {
        margin-bottom: 8px;
        min-height: auto;
        margin-top: 1rem;
    }

    .why-chse-sec .feature-card {
        padding: 15px;
    }

    .abt-lt-area .exp-floating-badge {
        top: 60px;
        left: -23px;
        padding: 15px;
    }

    .abt-lt-area .video-play-overlay {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .sol-calclu-area .metric-value {
        font-size: 17px;
    }

    .sol-calclu-area .calculator-intro .subtitle {
        margin-bottom: 7px;
        font-size: 13px;
    }

    .sol-calclu-area .benefit-value {
        font-size: 14px;
        padding-right: .5rem;
        line-height: 1.5;
    }

    .projec-sec #projectTabs li {
        width: auto;
    }

    .projec-sec #projectTabs {
        justify-content: start !important;
    }

    .ptb,
    .sec-pb,
    .sec-pt {
        padding: 5rem 0;
    }

    .sol-calclu-area {
        padding: 0 0 2.2rem;
    }


    .main-bnr-sec:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, #daf0d9d1 68%, transparent);
        z-index: -1;
    }

    /* about-pg */

    .abt-pg-bnr .main-heading {
        font-size: 3.5rem;
        margin-bottom: .8rem;
    }

    .abt-pg-bnr .sub-heading {
        font-size: 16px;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }

    .abt-pg-bnr .banner-content-wrap {
        padding: 5rem 1rem 5rem 8%;
    }

    .abt-pg-bnr .abt-bnr-btn {
        flex-direction: column;
    }

    .abt-pg-bnr .abt-bnr-btn .btn-appointment,
    .abt-pg-bnr .abt-bnr-btn .btn-calculator {
        height: 4.8rem;
    }

    .abt-pg-bnr .stat-icon-wrap i {
        font-size: 2rem;
    }

    .abt-detail-sec .stat-inner-card {
        padding: 2rem 1rem;
        gap: 1rem;
    }

    .abt-detail-sec .stat-number {
        font-size: 1.7rem;
    }

    .abt-aproach-sec .process-step-item {
        width: auto;
        padding: 1.5rem;
        background: #fff;
        box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.02);
        border: 0.1rem solid #e2e8f0;
        border-radius: 1.2rem;
    }

    .abt-aproach-sec .step-card {
        border: none;
        border-radius: 0;
        padding: 1.4rem;
        text-align: center;
        width: 100%;
        min-height: auto;
        box-shadow: none;
    }

    .abt-aproach-sec .process-track::before {
        display: none;
    }

    .abt-aproach-sec .process-flow-wrapper {
        padding: 2rem 0rem 3rem;
        margin: 0 !important;
    }

    .abt-aproach-sec .step-number-node {
        width: 3.6rem;
        height: 3.6rem;
        font-size: 16px;
        margin-bottom: 0;
    }

    .abt-faq .faq-content h3 {
        font-size: 2.5rem;

    }

    .abt-faq .faq-content p {
        margin-bottom: 1rem;
    }

    /* about-pg */

    /* dealer-pg */

    .abt-pg-bnr .desc-text {
        margin-bottom: 2rem;
        max-width: 42rem;
    }

    .dealer-main-sec-2 .title-1 {
        font-size: 24px;
    }

    .dealer-main-sec-2 .docs-title {
        font-size: 1.8rem;
    }

    /* dealer-pg */

    /* project-dtls-pg */

    .projec-cta-sec .cta-heading {
        font-size: 26px;
    }

    .projec-cta-sec-2 .section-card {
        padding: 30px;
    }

    .projec-cta-sec-2 .feature-icon-box {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .projec-cta-sec-2 .feature-title {
        font-size: 16px;
        margin-bottom: 6px;
        line-height: 1.5;
    }

    .projec-cta-sec-2 .row>[class*="col-"]:not(:last-child) .feature-item::after {
        display: none;
    }

    .projec-cta-sec-2 .feature-item {
        padding: 1rem;
        border: 1px solid #c7c7c7;
        border-radius: 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    /* project-dtls-pg */

    /* warranty-pg */

    .wrntry-prmise-sec .content-box h3 {
        font-size: 17px;
        margin-bottom: .8rem;
    }

    .wrntry-prmise-sec .promise-card {
        padding: 0 12px;
        gap: 14px;
    }

    .wrntry-prmise-sec .content-box p {
        font-size: 14px;
    }

    .wrntry-prmise-sec .description {
        margin-bottom: 44px;
    }

    .wrntry-cvrge-card .coverage-list li,
    .wrntry-trms-sec .terms-list li {
        gap: 10px;
        font-size: 14px;
        text-align: start;
    }

    .wrntry-cta-sec .cta-desc {
        max-width: 90%;
    }

    .wrntry-cta-sec .info-icon {
        width: 40px;
        height: 40px;
    }

    .wrntry-cta-sec .info-icon i {
        font-size: 17px;
    }

    .wrntry-cta-sec .cta-title {
        font-size: 23px;
        margin-bottom: 13px;
    }

    .wrntry-cta-sec .cta-card-wrapper {
        padding: 25px;
    }

    /* warranty-pg */



}

@media(max-width:991px) {
    .bnr-float-box .bnr-float-wrap {
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: center !important;
    }

    .bnr-float-box .bnr-float-itm {
        flex: 0 0 30%;
        gap: 15px;
        padding: 10px;
        border-right: none;
        background: #159e47;
        height: 85px;
        border-radius: 1.2rem;
    }

    .main-bnr-sec {
        padding: 3rem 0 2rem;
    }

    .sol-calclu-area .btn-appointment {
        justify-content: center;
        margin: 1rem auto;
    }

    .sol-calclu-area .benefit-icon {
        width: 39px;
        height: 39px;
    }

    .sol-calclu-area .benefit-icon i {
        font-size: 20px !important;
    }

    .sol-calclu-area .divider-left::before {
        height: 35px;
    }

    .sol-calclu-area .benefit-label {
        font-size: 13px;
        color: var(--text-light);
        margin-bottom: 3px;
    }

    .projec-sec .project-card-item .content-box {
        height: 19rem;
    }

    .cta-sec {
        padding: 50px 10px 10px;
    }

    .cta-sec .cta-txt-wrpr {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .cta-sec .cta-btn-wrpr {
        justify-content: center;
    }

    .footer .border-left-divider {
        border-left: none;
    }

    .footer .footer-item .footer-contact-form {
        padding: 1.5rem;
        border: 0.1rem solid rgba(255, 255, 255, 0.12);
        border-radius: 1rem;
    }

    .ptb,
    .sec-pb,
    .sec-pt {
        padding: 4rem 0;
    }

    .abt-lt-area .exp-floating-badge {
        top: 60px;
        left: -14px;
        padding: 10px;
    }

    .abt-lt-area .exp-floating-badge h3 {
        font-size: 24px;
    }

    .abt-lt-area .exp-floating-badge p {
        font-size: 13px;
    }

    /* about-pg */

    .abt-pg-bnr .banner-content-wrap {
        padding: 2rem 1rem 2rem 8%;
    }

    .abt-pg-bnr .main-heading {
        font-size: 34px;
        margin-bottom: .8rem;
    }

    .abt-detail-sec .stat-inner-card {
        padding: 2rem;
        gap: 2rem;
        justify-content: start;
    }

    .abt-aproach-sec .step-desc {
        font-size: 14px;
    }

    .abt-aproach-sec .feature-checklist li {
        font-size: 1.36rem;
    }

    .why-install-sec .container-fluid {
        max-width: 100%;
        padding: 0 5rem !important;
    }

    .abt-aproach-sec .detaiFl-heading {
        font-size: 2.2rem;
    }

    .abt-team-sec .expert-carousel .owl-nav {
        display: none;
    }

    .abt-faq .abt-cta-rt {
        height: auto;
        background-position: right center !important;
    }

    p {
        font-size: 1.4rem;
    }


    /* about-pg */

    /* dealer-pg */

    .dealer-innr-bnr .floating-feature-wrap {
        display: none;
    }

    .dealer-innr-bnr {
        padding: 4rem 0;
        isolation: isolate;
    }

    .dealer-innr-bnr .desc-text {
        max-width: 100%;
        max-width: 100%;
        font-weight: 600;
        color: #210000;
        letter-spacing: 0.02rem;
    }

    .dealer-innr-bnr:before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #f4f4f4c2;
        z-index: -1;
    }

    .dealer-main-sec-2 .why-partner-wrap {
        background: #fafbfc !important;
    }

    .dealer-main-sec-2 .benefit-text h3 {
        font-size: 1.6rem;
    }

    .dealer-main-sec-2 .benefit-item .benefit-icon i {
        font-size: 1.6rem;
    }

    .dealer-cta-wrpr .cta-sec {
        padding: 3rem 1.5rem !important;
    }

    .cta-sec .cta-txt-wrpr strong {
        font-size: 24px;
    }


    /* dealer-pg */

    /* project-dtls-pg */

    .projec-cta-sec .cta-heading {
        font-size: 23px;
    }


    .projec-cta-sec .cta-desc {
        margin-bottom: 0;
    }

    .projec-cta-sec-2 .feature-item {
        gap: 5px;
    }

    /* project-dtls-pg */

    /* warranty-pg */

    .wrntry-cvrge-card .header-icon {
        font-size: 24px;
    }

    .wrntry-trms-sec .terms-list {
        gap: 18px;
    }

    .wrntry-innr-bnr .banner-text {
        font-size: 1.4rem;
        max-width: 100%;
    }

    .wrntry-innr-bnr .breadcrumb-item {
        font-size: 15px !important;
    }

    .wrntry-innr-bnr .banner-content {
        padding: 2rem 0 2rem 5%;
    }


    /* warranty-pg */

    /* faq-pg */

    .faq-cont-wrpr .accordion-button {
        padding: 1.25rem 1.4rem;
        font-size: 1.64rem;
    }

    .wrntry-prmise-sec .faq-lt-wrpr {
        display: flex;
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .faq-cont-wrpr .faq-contact-card .contact-info {
        flex-direction: row !important;
        gap: 2rem !important;
    }

    .faq-cont-wrpr .faq-contact-card .contact-info div:not(:last-child) {
        border-right: 1px solid #414141;
        padding-right: 1.2rem;
    }

    .faq-main-sec {
        padding-bottom: 0 !important;
    }

    /* faq-pg */



}

@media(max-width:575px) {

    .serv-sec .serv-grid {
        gap: 19px;
        grid-template-columns: repeat(1, 1fr);
        margin: 0 .8rem;
    }

    .main-bnr-sec .container-fluid {
        padding: 0 2rem;
    }

    .main-bnr-sec .main-bnr-lt {
        max-width: 100%;
    }

    .main-bnr-sec h1 {
        font-size: 25px;
    }

    p {
        font-size: 1.4rem;
    }

    .main-bnr-sec:before {
        background: linear-gradient(to right, #daf0d9b0 100%, transparent);
    }

    /* modal */

    .apply-modal .modal-main-title {
        font-size: 1.9rem;
    }

    /* modal */


    .main-bnr-sec .bnr-btn-grid .btn-appointment,
    .main-bnr-sec .bnr-btn-grid .btn-calculator {
        height: 47px;
    }

    .main-bnr-sec {
        height: 100% !important;
    }

    .main-bnr-sec .bnr-btn-grid {
        flex-direction: column !important;
    }

    .bnr-float-box {
        margin-top: 30px;
    }

    .bnr-float-box .bnr-float-itm {
        flex: 0 0 45%;
        gap: 12px;
        height: 100%;
    }

    .bnr-float-box .bnr-content p {
        font-size: 13px;
        line-height: 1.37;
    }

    .subtitle {
        font-size: 13px;
    }

    .sec-title {
        font-size: 24px;
    }

    .ptb,
    .sec-pb,
    .sec-pt {
        padding: 3rem 0;
    }

    .bnr-float-box .bnr-content span {
        font-size: 19px;
    }

    .abt-lt-area .video-media-box {
        height: auto;
    }

    .exp-floating-badge {
        display: none;
    }

    .why-chse-sec .feature-card {
        padding: 10px;
        margin: 0 .8rem;
    }

    .testi-sec .owl-theme .owl-nav [class*='owl-'] {
        display: none !important;
    }

    .abt-sec {
        padding-left: 1.2rem;
    }

    .sol-calclu-area .form-group-row label {
        font-size: 13px;
    }

    .sol-calclu-area .divider-left::before,
    .sol-calclu-area .divider-left-light::before {
        display: none;
    }

    .sol-calclu-area .calculator-intro .sec-title {
        font-size: 22px;
    }

    .sol-calclu-area .results-display-card {
        padding: 20px;
    }

    .sol-calclu-area .calculator-intro .subtitle {
        margin-bottom: 6px;
        font-size: 12px;
    }

    .projec-sec .nav-pills .nav-link {
        padding: 0.8rem 2rem;
        font-size: 1.3rem;
    }

    section.sol-calclu-area {
        padding: 1.5rem .5rem;
    }

    .projec-sec .container>.row {
        padding-left: 1.2rem;
    }

    .cta-sec .cta-btn-wrpr {
        flex-direction: column;
    }

    html,
    body {
        overflow-x: clip;
    }

    /* about-pg */

    .abt-pg-bnr .banner-img-column {
        min-height: 37rem;
    }

    .abt-pg-bnr .floating-stats-card {
        top: 0;
        right: 13px;
        transform: none;
        padding: 3rem 3.5rem;
        width: 92%;
        margin: auto;
    }

    .abt-pg-bnr .main-heading {
        font-size: 27px;
        margin-bottom: .5rem;
    }

    .abt-pg-bnr .abt-bnr-btn {
        padding-top: 0 !important;
    }

    .abt-pg-bnr {
        isolation: isolate;
    }

    .abt-pg-bnr:before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #f4f4f4b5;
        z-index: -1;
    }

    .abt-pg-bnr .counter-num {
        font-size: 1.6rem;
        margin-bottom: 0.2rem;
    }

    .abt-detail-sec .desc-para {
        font-size: 1.4rem;
    }

    .abt-detail-sec .stat-inner-card {
        padding: 1.6rem;
        gap: 1rem;
        margin: 0 .5rem;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .abt-detail-sec .stat-icon {
        margin-bottom: .5rem;
    }

    .abt-detail-sec .abt-content-box {
        padding-left: .8rem;
    }

    section.abt-aproach-sec .container,
    .abt-wrk-sec .container,
    .abt-comp-mv .container {
        padding: 0 2rem;
    }

    .abt-aproach-sec .process-step-item {
        width: 100% !important;
    }

    .abt-aproach-sec .process-step-item:not(:last-child) .step-number-node::after {
        display: none;
    }

    .abt-aproach-sec .process-track {
        padding-top: 1rem;
    }

    .abt-aproach-sec .detail-heading {
        font-size: 2rem;
    }

    .abt-comp-mv .values-checklist {
        padding-left: 77px !important;
    }

    .abt-comp-mv .values-checklist {
        padding-left: 0 !important;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
        padding-top: 1rem !important;
        text-align: center;
        justify-content: center;
    }

    .abt-pg-bnr .banner-content-wrap {
        text-align: center;
    }

    .why-install-sec .container-fluid {
        padding: 0 3rem !important;
    }

    .abt-faq .faq-content h3 {
        font-size: 23px;
    }

    .abt-faq .faq-btn-group {
        flex-direction: column;
    }

    .abt-faq .faq-cta-card {
        text-align: center;
    }

    .abt-faq .faq-feature-list {
        text-align: center;
        justify-content: center;
    }

    .abt-faq .abt-cta-rt {
        background-position: left center !important;
    }

    .abt-comp-mv .feature-title {
        font-size: 1.36rem;
        line-height: 1.4;
    }

    .abt-wrk-sec .stat-counter {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: .3rem;
    }

    .abt-wrk-sec .district-list {
        flex-direction: row;
        column-gap: 1.5rem;
        row-gap: 2rem;
        flex-wrap: wrap;
    }

    .abt-team-sec .expert-name {
        font-size: 19px;
        margin-bottom: .4rem;
    }

    .abt-comp-mv .side-heading,
    .why-install-sec .sec-sub-tle-2,
    .abt-wrk-sec .tle-1,
    .work-header .tle-1,
    .brnad-cont-lt .tle-1,
    .abt-testi-rt .tle-1,
    .abt-faq .abt-faq-cont-lt .tle-1 {
        font-size: 2rem;
    }

    /* about-pg */

    /* dealer-pg */

    .dealer-innr-bnr {
        padding: 0 .5rem;
    }

    .abt-pg-bnr .main-heading {
        font-size: 26px;
        margin-bottom: .8rem;
    }

    .dealer-main-sec-2 .sec-desc {
        font-size: 1.4rem;
    }

    .dealer-main-sec-2 .docs-checklist li {
        font-size: 1.4rem;
    }

    .dealer-main-sec-2 .form-label-custom,
    .dealer-main-sec-2 .custom-input,
    .dealer-main-sec-2 .custom-select {
        font-size: 1.4rem;
    }

    .cta-sec .cta-txt-wrpr strong,
    .dealer-main-sec-2 .title-1 {
        font-size: 22px;
    }

    /* dealer-pg */

    /* project-dtls-pg */

    .projec-cta-sec .cta-content-wrapper {
        padding: 15px;
        text-align: center;
        display: flex;
        align-items: center;
        margin: auto;
        flex-direction: column;
    }

    .projec-cta-sec {
        background-position: left center !important;
        padding: 0 1rem;
    }

    .projec-cta-sec .cta-desc {
        max-width: 100%;
        font-size: 1.6rem;
    }


    .projec-cta-sec .cta-btn-group>div {
        flex-direction: column;
        text-align: center;
    }

    .projec-cta-sec-2 {
        padding-top: 0 !important;
    }

    /* project-dtls-pg */

    /* warranty-pg */

    .wrntry-innr-bnr:before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #00000085;
        z-index: -1;
    }

    .wrntry-innr-bnr {
        padding: 3rem 0 !important;
    }

    .wrntry-innr-bnr .banner-title {
        font-size: 30px;
    }

    .wrntry-prmise-sec .icon-box i {
        font-size: 25px;
    }

    .wrntry-prmise-sec .container,
    .wrntry-cvrge-sec .container {
        padding: 0 1.5rem;
    }

    .wrntry-prmise-sec .content-box h3 {
        font-size: 16px;
        margin-bottom: .5rem;
    }

    .wrntry-prmise-sec .description {
        margin-bottom: 35px;
    }

    .wrntry-cvrge-sec .wrntry-cvrge-main-cont {
        margin-top: 2rem !important;
    }

    .wrntry-cvrge-main-cont .coverage-card {
        border: 1px solid #d5d5d5;
        padding: 20px 15px;
    }

    .wrntry-prmise-sec .promise-card-col:not(:last-child)::after {
        display: none;
    }

    .wrntry-prmise-sec .promise-card {
        padding: 11px;
        background: #f1f1f1;
        border-radius: 1rem;
        flex-direction: column;
        text-align: center;
        margin: auto;
        align-items: center;
        height: 100%;
    }

    .wrntry-prmise-sec .promise-cards-row {
        row-gap: 18px;
    }

    .wrntry-prmise-sec .promise-card-col {
        flex: 1 0 48%;
    }

    .wrntry-prmise-sec .content-box h3 {
        font-size: 15px;
    }

    .wrntry-cvrge-main-cont .icon-circle {
        width: 55px;
        height: 55px;
    }

    /* warranty-pg */

    /* return-pg */

    .wrntry-innr-bnr .banner-content {
        text-align: center;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    .rtrn-plcy-main-cont .policy-card {
        flex-direction: column;
    }


    .rtrn-plcy-main-cont .card-title {
        font-size: 19px;
        margin-bottom: 14px;
    }

    .rtrn-plcy-main-cont .policy-list li {
        gap: 12px;
        font-size: 14px;
    }

    .rtrn-plcy-main-cont .icon-circle {
        width: 45px;
        height: 45px;
    }

    .rtrn-plcy-main-cont .icon-circle i {
        font-size: 18px;
    }

    .rtrn-cta .cta-card-wrapper {
        background-position: left center !important;
    }

    /* return-pg */

    /* faq-pg */

    .faq-cont-wrpr .faq-contact-card .contact-info {
        flex-direction: column !important;
        gap: 0;
    }

    .faq-cont-wrpr .faq-contact-card .contact-info div:not(:last-child) {
        border-right: 0;
        padding-right: 0;
    }

    .faq-cont-wrpr .accordion-button {
        font-size: 1.5rem;
    }

    .faq-main-sec .faq-cont-wrpr {
        margin-top: 0 !important;
    }

    .wrntry-cta-sec .cta-title {
        font-size: 21px;
    }

    .rtrn-cta .cta-left-content {
        text-align: center;
    }

    /* faq-pg */

}

/* responsive */