* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f0fdf6;
    font-family: "Poppins", sans-serif;
}

.stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2rem;
}

.step {
    position: relative;
    text-align: center;
    z-index: 1;
    width: 50%;
    margin: auto;
}

.step::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -31.5%;
    width: 100%;
    height: 2px;
    background-color: #dee2e6;
    z-index: -1;
    transform: translateY(-50%);
}

.step:first-child::before {
    content: none;
}

.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: bold;
}

.completed .circle {
    background-color: #28a745;
    color: #fff;
}

.active .circle {
    background-color: #0d6efd;
    color: #fff;
}

.upcoming .circle {
    border: 2px solid #dee2e6;
    color: #6c757d;
    background-color: #fff;
}

.completed::before {
    background-color: #28a745;
}

.step label {
    margin-top: 0.5rem;
    display: block;
    color: #6c757d;
}

.completed label,
.active label {
    color: #000;
}


.option {
    display: inline-block;
    margin: 10px;
    width: 41%;
}

.radio-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 2px solid #dee2e6;
    border-radius: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
    position: relative;
    height: 100% !important;
}

.radio-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.radio-card .name_checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.radio-card span {
    font-weight: 600;
    color: #212529;
    transition: color 0.3s ease;
}

.radio-card .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #adb5bd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.radio-card .checkmark svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Hover effect */
.radio-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}


/* Alternatively, if the input is inside .radio-card, use :has() (modern browsers) */
.radio-card:has(input[type="radio"]:checked) {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

/* Checkmark and text color when checked */
.radio-card input[type="radio"]:checked+img+.name_checkbox .checkmark {
    background-color: #007c01;
    border-color: #007c01;
}

.radio-card input[type="radio"]:checked+img+.name_checkbox .checkmark svg {
    opacity: 1;
}

.radio-card input[type="radio"]:checked+img+.name_checkbox span {
    color: #0d6efd;
}


.form {
    width: 65%;
    margin: auto;
    background: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
    border-radius: 24px;
    padding: 35px;
}

.options {
    display: flex;
    justify-content: center;
}

.cmnimg img {
    width: 90%;
    text-align: center;
}

.cmnimg {
    text-align: center;
}


.markspan span {
    background: #dbeafe;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 57px;
}

h2.cmn_h2 {
    font-size: 23px;
    font-weight: bold;
    text-align: center;
    padding-top: 13px;
    padding-bottom: 8px;
}

.markspan {
    text-align: center;
    padding: 16px 0px;
}

p.cmnp {
    text-align: center;
    margin-top: 15px;
    font-weight: 500;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 30px;
}

.text_content h2 {
    font-size: 21px;
    color: #007c01;
    font-weight: bold;
}

.txt {
    width: 61%;
    font-size: 14px;
    text-align: center;
    margin: auto;
    padding: 20px 0px;
}

.text_content ul li {
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-bottom: 7px;
    justify-content: center;
}

.text_content ul li svg {
    width: 18px;
    height: 18px;
    margin-top: 0 !important;
    margin-right: 5px;
    color: #007c01;
}

.text_content {
    text-align: center;
    margin: auto;
    margin-top: 55px;
}

.top_content {
    background: white;
    width: 65%;
    margin: auto;
    border: 1px solid #0000002b;
    padding: 11px 0px;
    border-radius: 11px;
}

img.electricityimg {
    width: 40px !important;
    height: 45px !important;
}


/* .step_1{
    display: none;
} */

.supplier-option {
    /* light blue */
    border: 2px solid #d7dde4;
    /* green border */
    cursor: pointer;
    transition: all 0.3s ease;
}

.supplier-option:hover {
    cursor: pointer;
    border-color: #007bff;
    /* blue border on hover */
}

.step_2 label {
    font-weight: 600;
    cursor: pointer;
}

.supplier-option:has(input[type="radio"]:checked) {
    border-color: #0d6efd;
    background-color: #0d6efd;
    color: white;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.step_2 label {
    padding: 16px;
}

.step_2 .supplier-option {
    padding-left: 0;
}

.step_3 label {
    padding: 16px;
    font-weight: 600;
}

.step_3 .supplier-option {
    padding-left: 0;
}


span.input-group-text.bg-white.border-end-0.rounded-start-pill {
    background: #fbf9f7 !important;
}


.step_4 .form-label {
    font-weight: 500;
    color: #333;
}

.step_4 .input-group-text {
    border-radius: 50px 0 0 50px !important;
    border-color: #dee2e6;
}

.step_4 .form-control {
    border-radius: 0 50px 50px 0 !important;
    border-color: #dee2e6;
    padding: 10px 14px;
}

.step_4 .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.next_frombtn {
    width: 100%;
    margin-top: 10px;
}

button.nxt_formbtn {
    outline: none;
    border: none;
    width: 100%;
    background: #007c01;
    color: white;
    font-family: 'Poppins';
    font-weight: bold;
    font-size: 23px;
    padding: 4px 0px;
    border-radius: 100px;
    margin: 10px 0px;
}

label.radio-card.homeownercard img {
    width: 40px;
}


.step_4.cmncssforstepdiv input {
    font-size: 14px;
}


:root {
    --bs-primary: #007bff;
    /* Blue */
    --bs-success: #28a745;
    /* Green */
}

.card {
    background-color: #fff;
    border-radius: 1rem;
    margin: auto;
}

.btn-success {
    background-color: var(--bs-success);
    border: none;
}

.btn-success:hover {
    background-color: #218838;
}


ul.list-unstyled.ps-3.mb-0 {
    margin: 0;
    padding: 0 !important;
    margin-top: 22px;
}

span.text-secondary.small.d-block.mb-2.fw-semibold {
    margin-top: 50px !important;
}

img.imggase {
    width: 75%;
}

span.fw-bold.me-2.text-success.fs-5 {
    background: white;
    width: 25px;
    height: 25px;
    font-size: 17px !important;
    border-radius: 100px;
}

ul.list-unstyled.ps-3.mb-0 li {
    font-size: 14px;
}

.formfields input {
    font-size: 15px;
}

.input-group.input-group-lg input {
    font-size: 15px;
}

span.input-group-text.bg-white.border-end-0 {
    background: #FBF9F7 !important;
}

.step_2,
.step_3,
.step_4,
.step_5,
.step_6 {
    display: none;
}

.stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2rem;
}

.stepper .step {
    position: relative;
    text-align: center;
    flex: 1;
}





/* remove line for first step */
.stepper .step:first-child::before {
    display: none;
}

/* active/fill step */
.stepper .step.active .circle {
    background-color: #28a745;
    /* green */
    color: white;
}

.stepper .step.active::before {
    background-color: #28a745;
    /* green line to previous step */
}



.spinner {
    margin: 0 auto;
    width: 60px;
    height: 60px;
    border: 6px solid #dee2e6;
    border-top-color: #28a745;
    /* green spinning */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#searchingOverlay p::after {
    content: "";
    display: inline-block;
    width: 1em;
    text-align: left;
    animation: dots 1s steps(3, end) infinite;
}

@keyframes dots {

    0%,
    20% {
        content: "";
    }

    40% {
        content: ".";
    }

    60% {
        content: "..";
    }

    80%,
    100% {
        content: "...";
    }
}

.spinner {
    margin: 0 auto;
    width: 60px;
    height: 60px;
    border: 6px solid #dee2e6;
    border-top-color: #28a745;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Spinner */
.spinner {
    margin: 0 auto;
    width: 60px;
    height: 60px;
    border: 6px solid #dee2e6;
    border-top-color: #0d6efd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Spinner keyframes */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Progress bar container */
.searchProgressContainer {
    width: 60%;
    margin: 20px auto;
    background: #dee2e6;
    border-radius: 20px;
    height: 10px;
}

/* Progress bar fill */
.searchProgressBar {
    width: 0%;
    height: 100%;
    background: #28a745;
    border-radius: 20px;
    transition: width 0.4s ease;
}

/* Messages */
#searchingMessage {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Spinner */
.spinner {
    margin: 0 auto;
    width: 60px;
    height: 60px;
    border: 6px solid #dee2e6;
    border-top-color: #0d6efd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Spinner keyframes */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Progress bar container */
.searchProgressContainer {
    width: 60%;
    margin: 20px auto;
    background: #dee2e6;
    border-radius: 20px;
    height: 10px;
}

/* Progress bar fill */
.searchProgressBar {
    width: 0%;
    height: 100%;
    background: #28a745;
    border-radius: 20px;
    transition: width 0.1s ease;
    /* smoother transition */
}

/* Messages */
#searchingMessage {
    font-weight: 600;
    font-size: 1.1rem;
}

ul.list-disc.list-inside.text-left.max-w-md.mx-auto.mt-6.text-gray-600.space-y-2 {
    padding: 0;
}

.error {
    font-size: 14px;
    color: red;
}

.thankyou {
    display: none;
}

.thankyou {
    width: 65%;
    margin: auto;
    background: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
    border-radius: 24px;
    padding: 35px;
}

li.flex.items-start p {
    margin-bottom: 0;
    margin-top: -14px;
    color: #007c01;
    font-weight: 500;
    margin-right: 2px;
}

/* home page design start */
ul.dropdown-menu.dropdown-menu-end.p-3.show li a {
    font-weight: 400 !important;
}

.hero-section {
    padding: 4rem 1rem;
    text-align: center;
}

.hero-section h1 {
    font-weight: 800;
    line-height: 1.4;
    font-size: 56px;
}

.deal-card {
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.deal-card:hover {
    box-shadow: 0 0 20px #007c0124;
    transform: translateY(-3px);
}

.deal-btn {
    background-color: #ff8c00;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s;
    font-size: 14px;
}

.deal-btn:hover {
    background-color: #e67800;
    color: #fff;
}

.trust-row img {
    height: 20px;
}

.deal-card span {
    color: black;
}


.cardsectionwhy {
    background-color: #F5EEFF;
    padding-left: 100px !important;
    padding-right: 100px !important;
}

.d-flex.bg-white.rounded.p-4.p-lg-5.h-100 {
    border-radius: 20px !important;
    padding: 35px !important;
}

.feature-img {
    width: 80px;
    height: 80px;
}

@media (min-width: 576px) {
    .feature-img {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 992px) {
    .feature-img {
        width: 150px;
        height: 150px;
    }
}

.imgdiv {
    position: relative;
    display: inline-block;

    /* optional */
    overflow: hidden;
    max-width: 50%;
    width: 30%;
    border-radius: 15px;
    transition: 0.3s;
}

.imgdiv img {
    width: 100%;
    display: block;
}

.imgdiv .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* black overlay */
    z-index: 1;
}

.imgoverlaytext {
    position: absolute;
    left: 20px;
    bottom: 0;
    color: #fff;
    z-index: 2;
    width: 258px;
    padding: 12px;
}

.imgoverlaytext h2 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: 7px;
}

.imgoverlaytext p {
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.imgoverlaytext p img {
    margin-left: 8px;
    width: 16px;
    height: 16px;
}

.imgdiv:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}


.imgs {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 30px 0px;
}

h2.d-inline-block.text-center.fw-bold.pt-2.pb-3.mb-3 {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

section.imgsection {
    padding: 40px 0px;
}

.starsection {
    background-color: #0D6EFD;
}


/* Custom colors & effects */
.bg-orange {
    background-color: #28A745;
    /* Bootstrap orange shade */
}

.shadow-orange {
    box-shadow: 0 0 10px #28A745(253, 126, 20, 0.6);
}



/* Gradient card styling */
.card-deal {
    background: #F0FDF6;
    color: #000;
    min-height: 270px;
    transition: transform 0.3s ease;
    background-blend-mode: overlay;
    border: 1px solid #0000000d;
}

.col-12.col-md-6.col-lg-5.d-flex.energycol {
    justify-content: end;
}

.col-12.col-md-6.col-lg-5.d-flex.boardbandcol {
    justify-content: start;
}

.d-flex.justify-content-between.align-items-start.w-100.mb-3 {
    flex-direction: column;
}

span.fw-bold.text-start.fs-3.lh-sm {
    color: black;
}

span.d-inline-flex.align-items-center.justify-content-end.gap-2.fw-semibold {
    color: black;
    font-size: 13px;
    font-weight: 400 !important;
}

@media (min-width: 768px) {
    .card-deal {
        min-height: 382px;
        max-width: 300px;
    }
}

.card-deal:hover {
    transform: scale(1.05);
}

.deal-img {
    max-width: 150px;
    height: auto;
}

@media (min-width: 576px) {
    .deal-img {
        max-width: 180px;
    }
}









.background-gradient {
    background: #F0FDF6;
}

.faq-avatar {
    height: 190px;
    width: 190px;
}

@media (min-width: 768px) {
    .faq-avatar {
        height: 250px;
        width: 100%;
    }
}




.faq-icon {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}


div#faqflexdiv {
    gap: 10px !important;
}

div#imagedivava {
    width: 40%;
}

.d-flex.justify-content-between.align-items-center.faq-header p {
    font-size: 17px !important;
}

div#faq2 {
    font-size: 15px !important;
}

div#faq1 {
    font-size: 15px !important;
}

div#faq3 {
    font-size: 15px !important;
}

.faq-item.mb-4.bg-white.rounded-3.px-4.py-4.shadow-faq {
    padding: 20px 25px !important;
    border: 1px solid #0000001f;
}

img.footerlogo.img-fluid {
    width: 308px;
}

a {
    text-decoration: none;
}

ul.navbar-nav.mx-auto li a {
    font-weight: bold;
    color: black !important;
}

button.navbar-toggler {
    padding: 4px 6px;
}

.logo-slider {
    background-color: #f8f9fa;
    overflow: hidden;
    padding: 40px 0;
  }

  .logo-track {
    display: flex;
    gap: 20px;
    animation: scroll 20s linear infinite;
  }

  .logo-track:hover {
    animation-play-state: paused; /* pause on hover */
  }

  .logo-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 10px 20px;
    height: 100px;
  }

  .logo-card img {
    max-height: 70px;
    width: auto;
  }

  /* Smooth scrolling keyframes */
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* move half of total width */
  }

   .swiper-slide {
    height: 100px; /* adjust this as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    padding: 10px;
  }

  .swiper-slide img {
    max-height: 70px; /* logos fit inside the card */
    width: auto;
  }

  /* Card hover lift effect */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1px 4px rgb(0 0 0 / 8%);
}

/* Icon circle */
.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .icon-circle {
        width: 48px;
        height: 48px;
    }
}
.icon-circle.mb-3 svg {
    margin-left: 6px;
    margin-top: 5px;
}
.icon-circle.mb-3 svg {
    color: white;
}
.card.h-100.text-start.p-4.border-0.rounded-3.feature-card p {
    margin-top: 10px !important;
    font-size: 15px;
}
.feature-card {
    border: 1px solid #00000026 !important;
}
.cmnsectioncls {
    padding: 60px 0px !important;
}
h3.display-5.fw-bold.mb-3 {
    font-size: 43px !important;
}