
.section-statistics .row-1 {
    overflow: hidden;    
    border: var(--border-light-area);
    padding: 30px 0;
    background-color: var(--global-color-primary-lightest-gray);
}

/*.section-statistics .stat-vibrant {
    background: var(--background-linear-card-blue);
}
.section-statistics .stat-vibrant .stat-count, 
.section-statistics .stat-vibrant .stat-desc{
    color: var(--white);
}*/
.section-statistics .stat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    padding: 30px 20px;
    padding: 0 20px;
}
.section-statistics .stat-card.card-2 {
    border-left: var(--border-light-area);
    border-right: var(--border-light-area);
}
.section-statistics .stat-icon .icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--global-color-primary-light-orange);
    border-radius: var(--br-p50);
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-statistics .stat-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}
/*.section-statistics .stat-vibrant .stat-icon .icon-circle {
    background-color: var(--global-color-primary-light-orange);
}
.section-statistics .stat-vibrant .stat-icon svg path {
    fill: var(--white);
}*/
.section-statistics .stat-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.section-statistics .stat-count {
    font-family: var(--font-family-heading);
    font-size: var(--fs-28);
    font-weight: var(--fw-500);
    color: var(--black);
    line-height: var(--lh-xs);
}

@media (min-width: 768px) {
    .section-statistics .row-1 {
        padding: 40px 0;
    }
    .section-statistics .stat-card {
        flex-direction: row;
        text-align: left;
        padding: 0 30px;
        align-items: flex-start;
    }
    .section-statistics .stat-count {
        font-size: var(--fs-34);
    }
}
@media (min-width: 1024px) {
    .section-statistics .stat-count {
        font-size: var(--fs-40);
    }
    .section-statistics .stat-icon .icon-circle {
        width: 70px;
        height: 70px;
    }
    .section-statistics .stat-icon svg {
        width: 35px;
        height: 35px;
    }
}.section-services .slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 0 70px;
    --gap: 25px;
}
.section-services .services-slider {
    display: flex;
    align-items: stretch;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: max-content;
    gap: var(--gap);
}
.section-services .services-slider .slide {
    box-sizing: border-box;
    height: auto; 
    display: flex; 
}
.section-services .service-card {
    background: var(--white);
    border-radius: var(--br-30);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    width: 100%;
}
.section-services .service-card .card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    flex-shrink: 0;
    z-index: 1;
    overflow: hidden;
}
.section-services .service-card .card-img::before,
.section-services .service-card .card-img::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 55%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.55s ease;
}
.section-services .service-card .card-img::before {
    right: 50%;
    transform: translateX(80%);
}
.section-services .service-card .card-img::after {
    left: 50%;
    transform: translateX(-80%);
}
.section-services .service-card:hover .card-img::before {
    opacity: 1;
    transform: translateX(-20%);
}
.section-services .service-card:hover .card-img::after {
    opacity: 1;
    transform: translateX(20%);
}
.section-services .service-card .card-img picture,
.section-services .service-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.section-services .service-card:hover .card-img img {
    transform: scale(1.1);
}
.section-services .service-card .card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--global-color-primary-light-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 12px;
}
.section-services .service-card .card-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--white);
}
.section-services .service-card .card-body {
    position: relative;
    inset: unset;
    background: var(--white);
    padding: 22px;
    border-radius: 0;
    z-index: 2;
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1; /* bacha hua space le, content ke hisaab se grow karega */
}
.section-services .service-card:hover .card-body {
    transform: translateY(-5px);
}
.section-services .service-card .card-body .card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.section-services .pagination-lines {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    line-height: 1;
}
.section-services .pagination-lines .line {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: var(--br-p50);
    background: var(--white);
    border: 1px solid var(--global-color-primary-border);
    cursor: pointer;
    transition: all 0.3s ease;
}
.section-services .pagination-lines .line.active {
    background: var(--global-color-primary-light-orange);
    border-color: var(--global-color-primary-light-orange);
    transform: scale(0.9);
}
@media (min-width: 768px) {
    .section-services .services-slider .slide {
        height: unset;
    }
    .section-services .service-card {
        aspect-ratio: 4 / 5;
        height: 100%;
    }
    .section-services .service-card .card-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        aspect-ratio: unset;
        flex-shrink: unset;
    }
    .section-services .service-card .card-body {
        position: absolute;
        bottom: 15px;
        left: 15px;
        right: 15px;
        top: 48%;        
        border-radius: 20px;
        flex: unset;
        max-height: unset;
        overflow: hidden;
    }
}
@media (min-width: 992px) {
        .section-services .service-card .card-body {
        position: absolute;
        bottom: 15px;
        left: 15px;
        right: 15px;
        top: 65%; 
        border-radius: 20px;
        flex: unset;
        max-height: unset;
        overflow: hidden;      
    }
}
@media (min-width: 1024px) {
    .section-services .service-card {
        aspect-ratio: 4 / 4.8;
    }
    .section-services .service-card .card-body {
        top: 62%;
    }
    .section-services .service-card .card-body .card-desc {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
}.section-services {
    overflow: hidden;
    position: relative;
    background-color: var(--global-color-primary-lightest-gray);
}
.section-services .bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.section-services .bg picture {
    width: 100%;
    height: 100%;
}
.section-services .bg picture img {
    height: 100%;
}
.section-services .row-1 {
    position: relative;
    z-index: 1;
}
.section-why-renewable .col-right {
    margin-bottom: 40px;
}
.section-why-renewable .image-row{
    gap:25px;
    padding-bottom: 30px;
}
.section-why-renewable .image-wrapper {
    position: relative;
    border-radius: var(--br-10);
}
.section-why-renewable .image-wrapper picture,
.section-why-renewable .image-wrapper img {
    border-radius: var(--br-10);
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.section-why-renewable .image-wrapper:hover img {
    transform: scale(1.05);
}
.section-why-renewable .image-label {
    position: absolute;
    padding: 6px 12px; 
    border-radius: var(--br-10);
    font-size: var(--fs-16); 
    font-weight: var(--fw-600);
    white-space: nowrap;
    z-index: 10;
    animation: slideLeftRight 1s ease-in-out infinite alternate;
}
.section-why-renewable .image-label.top {
    top: -45px; 
    right: 5px;
    background: var(--background-linear-card-blue);
    color: var(--white);
}
.section-why-renewable .image-label.bottom {
    bottom: -45px; 
    left: 5px;
    background-color: var(--global-color-primary-light-orange);
    color: var(--white);
}

@keyframes slideLeftRight {
    0% { transform: translateX(-15px); }
    100% { transform: translateX(15px); }
}

.section-why-renewable .img-1 {
    margin-bottom: 20px;
}
.section-why-renewable .img-2 {
    margin-top: 60px;
}
.section-why-renewable .image-side {
    margin: 0 auto;
    max-width: 500px;
}
.section-why-renewable .list-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.section-why-renewable .reason-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.section-why-renewable .reason-item .number-box {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--global-color-primary-light-orange);
    color: var(--white);
    border-radius: var(--br-p50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-18);
    font-weight: var(--fw-600);
}
.section-why-renewable .reason-item .content-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
@media (min-width: 576px) {
    .section-why-renewable .reason-item .number-box{
        width: 50px;
        height: 50px;
        font-size: var(--fs-22);
    }
    .section-why-renewable .image-label {
        font-size: var(--fs-18); 
    }
    .section-why-renewable .image-label.top {
        top: -45px; 
        right: 70px;
    }
    .section-why-renewable .image-label.bottom {
        bottom: -45px;
        left: 45px;
    }
}
@media (min-width: 992px) {
    .section-why-renewable .row-1 {
        align-items: center;
    }
    .section-why-renewable .img-2 {
        margin-top: 100px;
    }
    .section-why-renewable .image-wrapper,
    .section-why-renewable .image-wrapper picture,
    .section-why-renewable .image-wrapper img {
        border-radius: var(--br-30);
    }
    .section-why-renewable .image-label {
        padding: 10px 20px;
    }
    .section-why-renewable .image-label.top {
        top: -70px;
        right: 90px;
    }
    .section-why-renewable .image-label.bottom {
        bottom: -70px;
        left: 70px;
    }
}
@media (min-width: 1024px) {
    .section-why-renewable .image-side{
        max-width: 1000px;
    }
    .section-why-renewable .image-label {
        font-size: var(--fs-22); 
    }
    .section-why-renewable .col-right {
        margin-bottom: 0;
    }
    .section-why-renewable .image-row {
        padding-bottom: 0;
    }
}
.section-howworks {
    overflow: hidden;
    padding-bottom: 30px;
    position: relative;
    background-color: var(--global-color-primary-lightest-gray);
}
.section-howworks .bg-full {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-howworks .bg-full img{
  width: 100%;
  height: 100%;
}
.section-howworks .bg-full picture {
    width: 100%;
    height: 100%;
}
.section-howworks .row-1 .col-b {
}
.section-howworks .col-b .wrapper {
  overflow: hidden;
  position: relative;
  top: -50px;
  width: 100%;
  z-index: 2;
}
.section-howworks .col-b svg {
  width: 100%;
  height: auto;
  display: block;
}
/* FLOW */
.section-howworks .col-b .flow-green {
  fill: none;
  stroke: var(--global-color-primary-light-green);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 16 14;
  animation: dashMove 1.4s linear infinite;
}
.section-howworks .col-b .flow-orange {
  fill: none;
  stroke-width: 6;
  stroke: var(--global-color-primary-light-orange);
  stroke-linecap: round;
  stroke-dasharray: 16 14;
  animation: dashMoveReverse 1.4s linear infinite;
}
/* ELEMENT ANIMATIONS */
.section-howworks .col-b .sun-group {
  animation: sunPulse 3s ease-in-out infinite;
  transform-origin: center;
}
.section-howworks .col-b .panel-group {
  animation: floatPanel 4s ease-in-out infinite;
  transform-origin: center;
}
.section-howworks .col-b .house-group {
  animation: houseGlow 3s ease-in-out infinite;
}
.section-howworks .col-b .meter-group {
  animation: meterPulse 2s ease-in-out infinite;
  transform-origin: center;
}
.section-howworks .col-b .dcac {
  animation: bubblePulse 2s ease-in-out infinite;
  transform-origin: center;
}
/* LABELS */
.section-howworks .col-b .info-card{
    cursor: pointer;
    fill: rgba(255,255,255,0.2);
    stroke: var(--global-color-divider);
    transition: .4s;
}
.section-howworks .col-b .info-card rect{
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.08));
    transition: .4s;
}
.section-howworks .col-b .info-card:hover rect{
    transform: translateY(-1px);
    filter: drop-shadow(0 14px 30px rgba(0,0,0,.15));
}
.section-howworks .col-b .label-title {
  fill: var(--global-color-primary-light-orange);
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  font-family: var(--font-family-inter);
}
.section-howworks .col-b .label-desc {
  fill: var(--global-color-primary-darkest-blue);
  font-size: var(--fs-16);
  font-weight: var(--fw-400);
  padding-top: 5px;
}
.section-howworks .row-2 .col-a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-howworks .benefits-card {
    background-color: var(--white);
    border-radius: var(--br-10);
    padding: 15px 0;
}
.section-howworks .col-a-a {
    padding: 12px 40px;
}
.section-howworks .col-a-a:last-child {
    border-bottom: none;
}
.section-howworks .benefit-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
.section-howworks .icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--br-10);
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-howworks .col-a-a:nth-child(1) .icon-box {
    background-color: var(--global-color-primary-light-green);
}
.section-howworks .col-a-a:nth-child(2) .icon-box {
    background-color: var(--global-color-primary-light-orange);
}
.section-howworks .col-a-a:nth-child(3) .icon-box {
    background-color: var(--global-color-primary-light-blue);
}
.section-howworks .icon-box svg,
.section-howworks .icon-box svg path,
.section-howworks .icon-box svg circle,
.section-howworks .icon-box svg rect,
.section-howworks .icon-box svg line,
.section-howworks .icon-box svg polyline,
.section-howworks .icon-box svg polygon {
    fill: var(--white);
    stroke: var(--white);
}
@media (min-width: 768px) {
    .section-howworks .col-b .wrapper {
      top: -100px;
    }
    .section-howworks .benefits-card {
        padding: 25px 0;
        border-radius: var(--br-20);
    }
    .section-howworks .benefits-card .row-2-1{
      gap: 0;
    }
    .section-howworks .benefit-inner {
        gap: 8px;
    }
    .section-howworks .col-a-a:last-child {
        border-right: none;
    }
}
@media (min-width: 992px) {
    .section-howworks .benefit-inner {
        justify-content: center;
    }
    .section-howworks .col-a-a {
        padding: 10px 40px;
        border-bottom: none;
        border-right: 1px solid var(--global-color-darkdivider);
    }
}

@keyframes dashMove {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -60;
  }
}
@keyframes dashMoveReverse {
  from {
    stroke-dashoffset: -60;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes sunPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes meterPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}
@keyframes bubblePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes houseGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0px rgba(255, 194, 40, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(255, 194, 40, 0.6));
  }
}.section-whyus .row-1 {
    align-items: center;
}

.section-whyus .row-1 .col-a .cards-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}
.section-whyus .row-1 .col-a .card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: var(--br-20);
    background-color: var(--global-color-primary-lightest-gray);
}
.section-whyus .row-1 .col-a .card .card-icon {
    background-color: var(--global-color-primary-light-orange);
    border-radius: var(--br-p50);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 54px;
    min-height: 54px;
}
.section-whyus .row-1 .col-a .button-area {
    margin-top: 30px;
}
.section-whyus .row-1 .col-b {
    max-width: 628px;
    margin: 0 auto;
}
.section-whyus .row-1 .col-b .right-content {
    position: relative;
}
.section-whyus .row-1 .col-b .image-container {
    max-height: 580px;
    overflow: hidden;
    border-radius: var(--br-20);
}
.section-whyus .row-1 .col-b .image-container img {
}
.section-whyus .row-1 .col-b .card-absolute {
    display: none;
}

.section-whyus.nocard-absolute .row-1 .col-b .card-absolute{
    display:none;
}
@media (min-width: 576px) {
    .section-whyus .row-1 .col-a .card {
        flex-direction: row;

    }
}
@media (min-width: 768px) {
    .section-whyus .row-1 .col-b .card-absolute {
        position: absolute;
        display: flex;
        flex-direction: column;
        gap: 15px;
        bottom: 0;
        right: 0;
        max-width: 280px;
        padding: 30px;
        outline: 10px solid var(--white);
        border-radius: var(--br-20);
        background: var(--background-linear-card-blue);
        z-index: 1;
    }
    .section-whyus .row-1 .col-b .card-absolute .card-img img {
        max-width: 110px;
    }
    .section-whyus .row-1 .col-b .card-absolute .card-body h3 {
        color: var(--white);
    }
    .section-whyus .row-1 .col-b .card-absolute .card-body p {
        margin-top: 15px;
        padding-top: 15px;
        color: var(--white);
        border-top: 1px solid var(--global-color-divider);
    }
}

@media (min-width: 1024px) {
    .section-whyus .row-1 .col-b {
        padding-top: 0;
    }
    .section-whyus .row-1 .col-b .card-absolute {
        bottom: 0px;
        right: 0px;
    }
}.section-contactbanner .banner-wrapper {
    background-color: var(--global-color-primary-lightest-gray);
    border-radius: var(--br-30);
    overflow: hidden;
}
.section-contactbanner .col-a {
    position: relative;
    order: 2;
}

.section-contactbanner .image-container {
    width: 100%;
}
.section-contactbanner .image-container picture,
.section-contactbanner .image-container img {
    height: 100%;
    max-height: 250px;
    object-fit: cover;
}
.section-contactbanner .icon-overlap {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.section-contactbanner .icon-circle {
    padding: 10px;
    background-color: var(--global-color-primary-light-orange);
    border-radius: var(--br-p50);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--white);
}
.section-contactbanner .icon-circle svg {
    width: 30px;
    height: 30px;
}
.section-contactbanner .col-b {
    padding: 30px;
    align-items: center;
}
.section-contactbanner .col-b .content-body .h2-default-heading {
    margin-bottom: 0;
    max-width: 100%;
}
@media (min-width: 768px) {

}
@media (min-width: 992px) {
    .section-contactbanner .col-b {
        order: 2;
    }
    .section-contactbanner .image-container {
        height: 100%;
    }
    .section-contactbanner .icon-overlap {
        bottom: auto;
        top: 50%;
        left: auto;
        right: -30px;
        transform: translateY(-50%);
    }
    .section-contactbanner .image-container picture, .section-contactbanner .image-container img{
        max-height: none;
    }
}
@media (min-width: 1024px) {
    .section-contactbanner .icon-circle {
        padding: 20px;
    }
    .section-contactbanner .icon-circle svg {
        width: 40px;
        height: 40px;
    }
    .section-contactbanner .icon-overlap {
        right: -50px;
    }
    .section-contactbanner .col-b {
        padding: 40px;
    }
}.section-projects .heading-area {
    margin-bottom: 40px;
}
.section-projects .h2-default-heading{
    margin-bottom: 0;
}
.section-projects .slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 0 70px;
    --gap: 25px;
}
.section-projects .projects-slider {
    display: flex;
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: var(--gap);
}
.section-projects .projects-slider .slide {
    flex-shrink: 0;
    transition: all 0.5s ease;
    transition: transform 1.5s ease, opacity 1.5s ease;
    opacity: 0.6;
    transform: scale(0.85);
    width: 100%;
}
.section-projects .projects-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}
.section-projects .project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--br-30);
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    aspect-ratio: 380 / 474;
}

.section-projects .project-card .image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 380 / 474;
    overflow: hidden;
}

.section-projects .project-card .image-wrapper picture,
.section-projects .project-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.section-projects .project-card:hover .image-wrapper img {

}
.section-projects .project-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: var(--background-linear-card-light);
    z-index: 2;
}
.section-projects .project-card .project-title {
    color: var(--white);
}
.section-projects .project-card .project-category,
.section-projects .project-card .project-city,
.section-projects .project-card .project-date {
    color: var(--white);
    font-size: var(--fs-12);
    line-height: var(--lh-md);
}
.section-projects .pagination-lines {
    display: none;
}
.section-projects .pagination-lines {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    line-height: 1;
}
.section-projects .pagination-lines .line {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: var(--br-p50);
    background: var(--white);
    border: 1px solid var(--global-color-primary-border);
    cursor: pointer;
    transition: all 0.3s ease;
}
.section-projects .pagination-lines .line.active {
    background: var(--global-color-primary-light-orange);
    border-color: var(--global-color-primary-light-orange);
    transform: scale(0.9);
}
.section-projects .row-3 .col-a {
    text-align: center;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .section-projects .pagination-lines {
        display: flex;
    }
}

@media (min-width: 992px) {
    .section-projects .heading-area {
        align-items: center;
    }
}
.section-solar-calculator .row-1.box-shadow {
    border-radius: var(--br-30);
    box-shadow: var(--box-shadow-light);
    align-items: center;
}
.section-solar-calculator .content-panel {
    display: none;
    height: 100%;
}
.section-solar-calculator .content-panel.active {
    display: flex;
    flex-direction: column;
    
    border-radius: var(--br-30) var(--br-30) 0 0;
}
.section-solar-calculator .col-a {
    background: var(--background-linear-card-blue);
    /* min-height: 150px; */
    position: relative;
    border-radius: var(--br-30) var(--br-30) 0 0 ;
}
.section-solar-calculator .image-area {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
    overflow: hidden;
}
.section-solar-calculator .left-title{
    height: 100%;
    padding: 32px 28px;
}
.section-solar-calculator .image-area img,
.section-solar-calculator .image-area picture {
    object-fit: cover;
    display: block;
    border-radius: var(--br-30) var(--br-30) 0 0 ;
}
.section-solar-calculator .image-area:before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--background-linear-blue-dark-mobile);
}
.section-solar-calculator .image-overlay {
    position: absolute;
    inset: 0;
    padding: 32px 28px;
}
    .section-solar-calculator .image-area{
        border-radius: var(--br-30) var(--br-30) 0 0;
    }
    .section-solar-calculator .image-area:before{
        border-radius: var(--br-30) var(--br-30) 0 0;
    }
.section-solar-calculator .overlay-title {
    position: relative;
    color: var(--white);
    font-size: var(--fs-28);
}
.section-solar-calculator .result-view {
    background: transparent;
    padding: 24px;
    overflow-y: auto;
}
.section-solar-calculator .result-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.section-solar-calculator .summary-card {
    background: var(--background-linear-text-orange);
    border-radius: var(--br-10);
    padding: 28px 24px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.section-solar-calculator .summary-left .summary-label {
    font-size: var(--fs-12);
    font-weight: var(--fw-600);
    opacity: 0.90;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--white);
}
.section-solar-calculator .summary-value-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 8px 0;
}
.section-solar-calculator .summary-value {
    font-size: var(--fs-40);
    font-weight: var(--fw-700);
    color: var(--white);
}
.section-solar-calculator .summary-unit {
    font-size: var(--fs-22);
    font-weight: var(--fw-600);
    color: var(--white);
}
.section-solar-calculator .summary-note {
    font-size: var(--fs-12);
    opacity: 0.90;
    color: var(--white);
}
.section-solar-calculator .summary-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.section-solar-calculator .info-mini-box {
    background: var(--background-linear-card-blue);
    padding: 10px 16px;
    border-radius: var(--br-10);
    min-width: 150px;
}
.section-solar-calculator .mini-label {
    display: block;
    font-size: var(--fs-12);
    font-weight: var(--fw-500);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.section-solar-calculator .mini-value {
    font-size: var(--fs-16);
    font-weight: var(--fw-600);
    color: var(--light-green);
}
.section-solar-calculator .result-card {
    background: var(--white);
    border-radius: var(--br-10);
    padding: 20px;
}
.section-solar-calculator .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.section-solar-calculator .card-icon {
    font-size: var(--fs-18);
}
.section-solar-calculator .card-title {
    font-size: var(--fs-16);
    font-weight: var(--fw-600);
    color: var(--global-color-primary-dark-blue);
}
.section-solar-calculator .card-stats-grid {
    gap: 20px;
}
.section-solar-calculator .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.section-solar-calculator .stat-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-bottom: 6px;
}
.section-solar-calculator .dot-monthly  { background: var(--global-color-primary-light-orange); }
.section-solar-calculator .dot-annual   { background: var(--global-color-primary-dark-orange); }
.section-solar-calculator .dot-30yr     { background: var(--global-color-primary-dark-blue); }
.section-solar-calculator .stat-label {
    font-size: var(--fs-12);
    font-weight: var(--fw-600);
    color: var(--global-color-primary-typography);
    margin-bottom: 4px;
    text-transform: uppercase;
}
.section-solar-calculator .stat-value {
    font-size: var(--fs-20);
    font-weight: var(--fw-700);
    color: var(--global-color-primary-darkest-blue);
}
.section-solar-calculator .stat-sub {
    font-size: var(--fs-12);
    color: var(--global-color-primary-light-overlay);
    margin-top: 3px;
}
.section-solar-calculator .savings-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-14);
    font-weight: var(--fw-600);
    color: var(--global-color-primary-dark-blue);
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--global-color-darkdivider);
}
.section-solar-calculator .cost-breakdown-box {
    background: var(--global-color-primary-lightest-gray);
    border-radius: var(--br-10);
    padding: 18px;
}
.section-solar-calculator .breakdown-header {
    font-size: var(--fs-14);
    font-weight: var(--fw-600);
    color: var(--sc-primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.section-solar-calculator .breakdown-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--global-color-darkdivider);
}
.section-solar-calculator .row-label {
    color: var(--global-color-primary-typography);
    font-size: var(--fs-12);
}
.section-solar-calculator .row-value {
    font-weight: var(--fw-600);
    color: var(--global-color-primary-darkest-blue)
}
.section-solar-calculator .investment-row {
    background: var(--white);
    border: 1px solid var(--global-color-darkdivider);
    padding: 14px 16px;
    border-radius: var(--br-10);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-solar-calculator .inv-label {
    font-weight: var(--fw-700);
    color: var(--global-color-primary-darkest-blue);
    font-size: var(--fs-14);
}
.section-solar-calculator .inv-value {
    font-size: var(--fs-20);
    font-weight: var(--fw-700);
    color: var(--global-color-primary-dark-orange);
}
.section-solar-calculator .disclaimer-text {
    font-size: var(--fs-12);
    color: var(--global-color-primary-light-border);
}
.section-solar-calculator .area-form,
.section-solar-calculator .contact-area {
    padding: 28px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}
.section-solar-calculator .calc-step {
    display: none;
    flex-direction: column;
    flex: 1;
}
.section-solar-calculator .calc-step.active {
    display: flex;
    overflow: visible; 
}
.section-solar-calculator .panel-title {
    font-size: var(--fs-30);
}
.section-solar-calculator .panel-subtitle {
    margin-bottom: 30px;
}
.section-solar-calculator .form-label {
    display: flex;
    color: var(--global-color-primary-darkest-blue);
    margin-bottom: 8px;
    font-size: var(--fs-14);
    align-items: center;
    gap: 10px;
}
.section-solar-calculator .bill-group {
    padding-bottom: 20px;
}
.section-solar-calculator .form-control {
    width: 100%;
    height: 50px;
    border: 1.5px solid var(--global-color-darkdivider);
    border-radius: var(--br-10);
    padding: 0 16px;
    font-size: var(--fs-16);
    color: var(--black);
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
}
.section-solar-calculator .form-control:focus {
    border-color: var(--global-color-primary-light-orange);
    outline: none;
}
.section-solar-calculator .textarea-control {
    height: auto;
    padding: 12px 16px;
    resize: vertical;
}
.section-solar-calculator .custom-select-container {
    position: relative;
    width: 100%;
}
.section-solar-calculator .custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
}
.section-solar-calculator .invalid-feedback {
    display: none;
    font-size: var(--fs-12);
    color: var(--red);
    margin-top: 5px;
}
.section-solar-calculator .form-group.has-error .form-control {
    border-color: var(--red);
}
.section-solar-calculator .form-group.has-error .invalid-feedback {
    display: block;
}
.section-solar-calculator .type-radio {
    cursor: pointer;
}
.section-solar-calculator .type-radio input[type="radio"] {
    display: none;
}
.section-solar-calculator .radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 12px 14px;
    border: 1px solid var(--global-color-darkdivider);
    border-radius: var(--br-10);
    background: var(--white);
    transition: all 0.3s ease;
}
.section-solar-calculator .type-radio input:checked + .radio-tile {
    border-color: var(--global-color-primary-light-orange);
}
.section-solar-calculator .tile-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-solar-calculator .tile-text {
    font-size: var(--fs-12);
    font-weight: var(--fw-500);
    color: var(--black);
}

.section-solar-calculator .radio-tile:hover .tile-icon svg path,
.section-solar-calculator .radio-tile:hover .tile-icon svg g,
.section-solar-calculator .type-radio input:checked + .radio-tile .tile-icon svg path,
.section-solar-calculator .type-radio input:checked + .radio-tile .tile-icon svg g {
    fill: var(--global-color-primary-light-orange);
}
.section-solar-calculator .type-radio input:checked + .radio-tile .tile-text,
.section-solar-calculator .radio-tile:hover .tile-text {
    color: var(--global-color-primary-light-orange);
}
.section-solar-calculator .input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
}
.section-solar-calculator .input-prefix {
    position: absolute;
    left: 16px;
    font-size: var(--fs-14);
    font-weight: var(--fw-500);
    color: var(--global-color-primary-darkest-blue);
    pointer-events: none;
    opacity: 0.6;
    z-index: 1;
}
.section-solar-calculator .input-suffix {
    position: absolute;
    right: 16px;
    font-size: var(--fs-12);
    font-weight: var(--fw-500);
    color: var(--global-color-primary-light-overlay);
    pointer-events: none;
}
.section-solar-calculator .input-group-custom .form-control {
    padding-left: 32px;
    padding-right: 80px;
}
.section-solar-calculator .unit-cost-group {
    margin-bottom: 20px;
}
.section-solar-calculator .unit-cost-box {
    background: var(--global-color-primary-lightest-gray);
    border: 1px solid var(--global-color-darkdivider);
    border-radius: var(--br-10);
    padding: 18px 18px 14px;
}
.section-solar-calculator .unit-cost-display-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.section-solar-calculator .unit-cost-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.section-solar-calculator .unit-big-val {
    font-size: var(--fs-30);
    font-weight: var(--fw-500);
    color: var(--global-color-primary-light-orange);
}
.section-solar-calculator .unit-big-sub {
    font-size: var(--fs-12);
    color: var(--global-color-primary-darkest-blue);
}
.section-solar-calculator .unit-cost-input-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--global-color-darkdivider);
    border-radius: var(--br-10);
    padding: 0 10px 0 12px;
    height: 44px;
}
.section-solar-calculator .unit-cost-input-wrap span {
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
    color: var(--global-color-primary-darkest-blue);
}
.section-solar-calculator .unit-direct-input {
    width: 60px;
    height: 100%;
    border: none;
    background: transparent;
    font-size: var(--fs-16);
    font-weight: var(--fw-600);
    color: var(--global-color-primary-darkest-blue);
    outline: none;
    text-align: right;
}
.section-solar-calculator .unit-cost-input-wrap:focus-within {
    border-color: var(--global-color-primary-light-orange);
}
.section-solar-calculator .slider-track-wrap {
    margin-bottom: 6px;
}
.section-solar-calculator .unit-slider {
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: var(--global-color-darkdivider);
    outline: none;
    cursor: pointer;
}
.section-solar-calculator .unit-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--global-color-primary-light-orange);
    cursor: pointer;
}
.section-solar-calculator .unit-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--global-color-primary-light-orange);
    cursor: pointer;
}
.section-solar-calculator .slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-12);
    color: var(--global-color-primary-typography);
    margin-top: 4px;
}
.section-solar-calculator .autofill-note {
    display: none;
    align-items: flex-start;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--global-color-primary-border);
    border-radius: var(--sc-radius-sm);
    padding: 10px 12px;
    font-size: var(--fs-12);
    color: var(--global-color-primary-darkest-blue);
    margin-top: 12px;
    line-height: var(--lh-nr);
}
.section-solar-calculator .autofill-note .info-icon {
    width:14px;height:14px;display:inline-block;vertical-align:middle;
}
.section-solar-calculator .note-content {
    flex: 1;
    display: block;
}
.section-solar-calculator .note-content strong {
    font-weight: var(--fw-600);
    margin: 0 2px;
}
.section-solar-calculator .autofill-note svg {
    stroke: var(--global-color-primary-darkest-blue);
}
.section-solar-calculator .form-actions {
    margin-top: auto;
    padding-top: 30px;
    display: flex;
    justify-content: end;
}
.section-solar-calculator .step-btn-row {
    justify-content: space-between;
}
.section-solar-calculator .unit-cost-group .zap-icon{
    vertical-align:-2px;
    margin-right:5px;
}
/* Loading state */
.section-solar-calculator .loader-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: sc-spin .75s linear infinite;
}
.section-solar-calculator .btn-calculate.loading .btn-text  { display: none; }
.section-solar-calculator .btn-calculate.loading .loader-spinner { display: inline-block; }
.section-solar-calculator .btn-calculate.loading { pointer-events: none; opacity: .85; }

@keyframes sc-spin {
    to { transform: rotate(360deg); }
}

/* ── Contact Area ── */
.section-solar-calculator .contact-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}
.section-solar-calculator .contact-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--global-color-primary-lightest-gray);
    border: 1.5px solid var(--global-color-darkdivider);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--global-color-primary-dark-orange);
    flex-shrink: 0;
}


@media (min-width: 576px) {
    .section-solar-calculator .col-a{
        /* min-height: 320px; */
    }
}
@media (min-width: 768px) {
    .section-solar-calculator .col-a {
        /* min-height: 350px */
    }
    .section-solar-calculator .left-title{
        padding-left: 100px;
        padding-top: 35px;
    }
    .section-solar-calculator .image-overlay {
        padding-left: 100px;
        padding-top: 75px;
        max-width: 370px;
    }
    .section-solar-calculator .panel-title {
        font-size: var(--fs-34);
    }
    .section-solar-calculator .summary-card {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    .section-solar-calculator .card-stats-grid {
        gap: 12px;
    }
    .section-solar-calculator .area-form,
    .section-solar-calculator .contact-area {
        padding: 44px 48px;
    }
}
@media (min-width: 992px) {
    .section-solar-calculator .col-a {
        min-height: 750px;
        border-radius: var(--br-30) 0 0 var(--br-30);
    }
    .section-solar-calculator .left-title{
        padding-left: 140px;
        padding-top: 100px;
        max-width: 370px;
    }
    .section-solar-calculator .content-panel.active {
        border-radius: var(--br-30) 0 0 var(--br-30);
    }
    .section-solar-calculator .image-area{
        border-radius: var(--br-30) 0 0 var(--br-30);
    }
    .section-solar-calculator .image-area:before{
        border-radius: var(--br-30) 0 0 var(--br-30);
    }
    .section-solar-calculator .image-area img, .section-solar-calculator .image-area picture{
        height: 100%;
        max-height: 100%;
        border-radius: var(--br-30) 0 0 var(--br-30);
    }
}
@media (min-width: 1024px) {
    .section-solar-calculator .col-a {
        min-height: 750px;
    }

    .section-solar-calculator .image-overlay {
        padding-left: 160px;
        padding-top: 100px;
    }
    .section-solar-calculator .panel-title {
        font-size: var(--fs-40);
    }
    .section-solar-calculator .area-form,
    .section-solar-calculator .contact-area {
        padding: 52px 60px;
    }
    .section-solar-calculator .row-special {
        gap: 5px;
    }
}
@media screen and (min-width: 1200px) {
    .section-solar-calculator .row-special {
        gap: 15px;
    }
    .section-solar-calculator .col-a {
        min-height: 633px;
    }
}.section-work-process {
    background: var(--global-color-primary-lightest-gray);
}
.section-work-process .row-1 .col-a{
    margin-bottom: 30px;
}
.section-work-process .step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    position: relative;
    padding: 20px;
}
.section-work-process .step-icon-wrap {
    position: relative;
    display: inline-flex;
}
.section-work-process .step-icon {
    width: 100px;
    height: 100px;
    background-color: var(--global-color-primary-light-orange);
    border-radius: var(--br-20);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}
.section-work-process .step-arrow svg path{
    fill: var(--global-color-primary-darkest-blue);
}
.section-work-process .step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--global-color-primary-dark-blue);
    color: var(--white);
    border-radius: var(--br-p50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-14);
    font-weight: var(--fw-700);
    border: 2px solid var(--white);
}
.section-work-process .step-arrow {
    display: none;
}
.section-work-process .step-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.section-work-process .step-content .step-desc {
    max-width: 380px;
}
.section-work-process .col-step {
    margin-bottom: 30px;
}
.section-work-process .col-step:last-child {
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .section-work-process .step-arrow {
        display: block;
        position: absolute;
        width: 100px;
        z-index: 1;
    }
    .section-work-process .step-arrow svg {
        width: 100%;
    }
    .section-work-process .step-arrow.arrow-right {
        top: 50%;
        left: 110%;
    }
    .section-work-process .step-arrow.arrow-left {
        top: 25%;
        left: 110%;
    }
    .section-work-process .col-step {
        margin-bottom: 0;
    }
    .section-work-process .step-icon {
        width: 120px;
        height: 120px;
    }
    .section-work-process .step-content .step-desc {
        max-width: fit-content;
    }
}

@media (min-width: 992px) {
    .section-work-process .step-arrow {
        width: 140px;
    }
}
@media (min-width: 1024px) {
    .section-work-process .step-arrow {
        width: 160px;
    }
    .section-work-process .step-arrow.arrow-right {
        top: 50%;
        left: 110%;
    }
    .section-work-process .step-arrow.arrow-left {
        top: 25%;
        left: 110%;
    }
}
@media (min-width: 1200px) {
    .section-work-process .step-arrow {
        width: 200px;
    }
    .section-work-process .step-arrow.arrow-right {
        left: 140%;
    }
    .section-work-process .step-arrow.arrow-left {
        left: 140%;
    }
}.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.faq-accordion .accordion-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--global-transition);
    border: 1px solid transparent;
}
.faq-accordion .accordion-item.active {
    border-color: var(--global-color-primary-blur);
}
.faq-accordion .accordion-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}
.faq-accordion .accordion-header .item-number {
    font-size: var(--fs-18);
    font-weight: var(--fw-700);
    color: var(--global-color-primary-darkest-blue);
}
.faq-accordion .accordion-header .item-question {
    font-family: var(--font-family-heading);
    color: var(--global-color-primary-darkest-blue);
    font-size: var(--fs-18);
}
.faq-accordion .accordion-header .toggle-icon {
    padding: 15px;
    background-color: var(--global-color-primary-light-orange);
    border-radius: var(--br-p50);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background-color 0.3s ease;
}
.faq-accordion .accordion-header .toggle-icon svg {
    stroke: var(--white);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.faq-accordion .accordion-header .icon-minus,
.faq-accordion .accordion-header .icon-plus {
    position: absolute;
    display: flex;
}
.faq-accordion .accordion-header .icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}
.faq-accordion .accordion-item.active .icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}
.faq-accordion .accordion-item.active .icon-minus {
    opacity: 1;
    transform: rotate(0);
}
.faq-accordion .accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out;
}
.faq-accordion .accordion-item.active .accordion-body {
    grid-template-rows: 1fr;
}
.faq-accordion .accordion-body .body-inner {
    padding: 0 30px 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, padding 0.4s ease;
}
.faq-accordion .accordion-item.active .body-inner {
    opacity: 1;
    transform: translateY(0);
    border-top: 1px solid var(--global-color-darkdivider);
    padding-top: 20px;
    padding-bottom: 20px;
}
.faq-accordion .accordion-body p {
    margin: 0;
    font-size: var(--fs-16);
    line-height: 1.6;
    color: var(--global-color-primary-typography);
}.section-faq .row-1{
    align-items: center;
}
.faq-cta-card {
    position: relative;
    background: var(--background-linear-card-blue);
    border-radius: var(--br-30);
    padding: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.faq-cta-card .bg-full {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.1;
}
.faq-cta-card .bg-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.faq-cta-card .card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.faq-cta-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}
.faq-cta-card .card-icon {
    padding: 10px;
    background-color: var(--global-color-primary-light-orange);
    border-radius: var(--br-p50);
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-cta-card .card-icon svg {
    fill: var(--white);
}
.faq-cta-card .card-title {
    color: var(--white);
}
.faq-cta-card .card-description {
    color: var(--white);
    max-width: 100%;
}
.faq-cta-card .card-button{
    max-width: 400px;
    padding-top: 30px;
    border-top: 1px solid var(--global-color-lightdivider);
}
.faq-cta-card .cta-phone {
    display: flex;
    align-items: center;
    gap: 15px;
}
.faq-cta-card .cta-phone .icon {
    width: 45px;
    height: 45px;
    background-color: var(--global-color-primary-light-orange);
    border-radius: var(--br-p50);
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-cta-card .cta-phone .btn-default {
    padding: 0;
}
.faq-cta-card .card-image {
    display: none;
    position: absolute;
    bottom: -15px;
    right: -70px;
    z-index: 1;
    max-width: 225px;
}
.faq-cta-card .card-image img {
    max-width: 250px;
}
@media (min-width: 576px) {
    .faq-cta-card .card-title {
        max-width: 250px;
    }
    .faq-cta-card .card-description {
        max-width: 350px;
    }
    .faq-cta-card .card-image {
        bottom: -20px;
        right: -20px;
        max-width: 250px;
    }
    .faq-cta-card .card-button {
        max-width: 300px;
    }
    .faq-cta-card .card-image{
        display: block;
    }
}
@media (min-width: 768px) {
    .faq-cta-card .card-title {
        max-width: 280px;
    }
    .faq-cta-card .card-description {
        max-width: 400px;
    }
    .faq-cta-card .card-button {
        max-width: 400px;
    }
}
@media (min-width: 1024px) {
    .section-faq .col-a {
        position: sticky;
        top: 20px;
        align-self: flex-start;
    }
}.contact-form {
    padding: 0;
}
.form-area {

}
.form-row{
    gap: 20px;
}

.form-label {

}
.form-input {
   
}
textarea.form-input {
    min-height: 70px;
    resize: none;
    padding: 10px 20px 0 50px;
}

.custom-select-trigger {
    width: 100%;
    padding: 0 20px 0 50px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid var(--global-color-primary-border);
    font-size: var(--fs-14);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.trigger-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
}
.custom-select-trigger:hover {
    border-color: var(--global-color-primary-light-orange);
}
.custom-select-container.open .custom-select-trigger {
    border-color: var(--global-color-primary-light-orange);
    box-shadow: var(--box-shadow);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.custom-select-trigger .arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    color: var(--black);
}
.custom-select-container.open .arrow-icon {
    transform: rotate(180deg);
}
.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--global-color-primary-light-orange);
    border-top: none;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: var(--box-shadow);
    z-index: 99;
    display: none;
    max-height: 250px;
    overflow-y: auto;
}
.custom-select-container.open .custom-select-options {
    display: block;
}
.custom-option {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--global-color-primary-darkest-blue);
    font-size: var(--fs-14);
}
.custom-option:hover {
    color: var(--global-color-primary-light-orange);
}
.custom-option.selected {
    color: var(--global-color-primary-light-orange);
}

/* Generic Custom Checkbox Styling */
.custom-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-checkbox-ui {
    width: 18px;
    height: 18px;
    border: 1px solid var(--global-color-primary-dark-orange);
    border-radius: 6px;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.custom-checkbox-wrapper.selected .custom-checkbox-ui {
    background: var(--global-color-primary-light-orange);
    border-color: var(--global-color-primary-light-orange);
}

.custom-checkbox-wrapper.selected .custom-checkbox-ui::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


