* {
  margin: 0;
  padding: 0;
}

body {
  box-sizing: border-box;
}

/* topbar  */

.top-bar {
  padding: 10px;
}

.inside-top-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}


/* hero sec */

.main-hero {
  padding: 0px 70px 99px 45px;
  background-image: url('/images/hero-grid.svg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #0A3B38;
  margin-top: -4px;
}

.hero {
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin-top: 50px;
}

.left {
  width: 60%;
  zoom: .9;
}

.right {
  width: 60%;
}

.right img {
  width: 70%;
}

.right {
  justify-content: end;
  display: flex;
}

.left h1 {
  line-height: 90%;
  letter-spacing: -1px;
  margin-top: 20px;
  word-spacing: -5px;
  font-size: 74px !important;
}


.save-p {
  width: 65%;
}

.line {
  height: 2px;
  width: 80px;
  background-color: white;
  margin: 32px 0px 38px 0px;
}

.features {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  /* space between icon and text */
}

.feature-item img {
  width: 20px;
  height: 20px;
}

.search-section {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 40px;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 40px;
  overflow: hidden;
  width: 100%;
  padding: 10px;
  max-width: 500px;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.search-bar button {
  border: none;
  padding: 12px 30px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

/* Rating Row */
.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}


/* CTA Button */
.cta-btn {
  border: none;
  cursor: pointer;
  padding: 20px 50px;
  text-transform: uppercase;
  box-shadow: 0px 15px 34px 0px rgba(54, 225, 178, 0.2);
  letter-spacing: 0.8px;
  transition: all 0.3s ease-in-out;
  border-radius: 9999px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  white-space: normal;
  word-break: break-word;
}

.cta-btn-outline {
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: rgba(54, 225, 178, 0.35) 0px 10px 20px 0px;
  background-color: rgb(255, 255, 255);
}

.outline-btn:hover {
  background: #033B38;
  color: #fff;
  /* invert text for contrast */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(3, 59, 56, 0.25);
}

/* Rating Row */
.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}


.anim-btn {
  animation: blink 2s linear 0s infinite normal none running;
}

@keyframes blink {
  0% {
    box-shadow: 0 0 0 0 rgba(54, 225, 178, 0.8);
    /* your color */
  }

  70% {
    box-shadow: 0 0 0 15px rgba(54, 225, 178, 0);
    /* fades out */
  }

  100% {
    box-shadow: 0 0 0 15px rgba(54, 225, 178, 0);
    /* transparent end */
  }
}


/* logos section  */

.logo-section {
  padding: 100px 0;
}

.logo-container {
  max-width: 1240px;
  width: 90%;

  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  padding: 0px 20px;
}

.logo-text {
  font-size: 24px;
  font-weight: 600;
  width: 45%;
  text-align: left;
}

.logo-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  width: 70%;
}

.logo-flex img {
  flex: 1 1 calc(20% - 30px);
  max-width: 115px;
  height: auto;
}

/* section 2 conter  */

.counter-bg-img {
  background-image: url(images/counter-bg-img.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.counters {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 75px 0px 75px 45px;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

.counter-box {
  flex: 1 1 200px;
}

.counter-line {
  width: 80px;
  height: 2px;
  background: #ffffff;
  margin-bottom: 20px;
}

.counters h2 {
  margin-bottom: 20px;
  font-weight: 400;
}

.counter-box p {
  width: 80%;
  line-height: 100%;
  font-weight: 500;
  letter-spacing: -1.2px;
  color: white;
}


/* Myth and truth section Desktop*/

.vs {
  background: #022c22;
  color: #36E1B2;
  padding: 20px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.vs h3 {
  font-size: 46px !important;
}

.myth-fact-section {
  display: flex;
  justify-content: center;
  padding: 20px 20px 100px 20px;
}

.myth-fact-container {
  max-width: 885px;
  width: 100%;
}

.myth-fact-head-desk h2 {
  word-spacing: -10px;
  line-height: 110%;
}

.myth-fact-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 24px 84px rgba(0, 0, 0, 0.08);
  padding: 20px 20px;
}

/* Headings */
.myth-fact-headings {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #02312F;
}

.myth-fact-headings h3 {
  font-size: 46px !important;
  font-weight: 100 !important;

}

/* Grid layout */
.myth-fact-grid {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: stretch;
}

.learn-more-heading-myth {
  padding-bottom: 10px !important;
}

/* Myth + Fact columns */
.myth-column,
.fact-column {
  display: grid;
  grid-auto-rows: 1fr;
}

.myth-item,
.fact-item {
  padding: 18px 30px;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  color: #02312F;
}

.myth-item {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  font-style: italic;
  margin-right: -15px !important;
  padding: 18px 50px 18px 30px;
}

.fact-item {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  margin-left: -15px !important;
  padding: 18px 30px 18px 50px;
}

.myth-fact-head-desk h2 {
  font-size: 52px;
}

/* Alternate row backgrounds */
.myth-item:nth-child(odd),
.fact-item:nth-child(odd) {
  background: #F4F4F6;
}

.myth-item:nth-child(even),
.fact-item:nth-child(even) {
  background: #fff;
}

/* Rounded corners only outer */
/* .myth-item:first-child {
  margin-top: 20px;
}


.fact-item:first-child {
  margin-top: 20px;
} */


/* VS column */
.vs-column {
  background: #022c22;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
  color: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: relative;
  z-index: 9;

}

.vs-column span {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 20px;
}

.vs-icons {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  gap: 20px;
  flex-grow: 1;
  width: 100%;
}

.vs-icons img {
  margin: auto;
  width: 60px;
  height: 60px;
}


/* Myth and truth section Mobile */


.myth-fact-head {
  margin-top: 70px;
  display: none;
}

.myth-fact-section-mobile {
  display: none;
  background-color: white;
  border-radius: 20px;
  padding: 10px;
  flex-direction: column;
  box-shadow: 0px 24px 84px rgb(0 0 0 / 20%);
  max-width: 85%;
  margin: 0 auto;
  margin-bottom: 35px;
}

.white-myth img {
  margin-bottom: 20px;
  width: 40px;
}

.white-myth p {
  line-height: 120%;
}

.white-myth h4 {
  margin-bottom: 8px;
  font-weight: 100;
}

.font-italic {
  font-style: italic;
}

.white-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  padding: 15px 15px 30px 15px;
  border-radius: 20px;
}

.green-main {
  background: #033B38;
  box-shadow: 0px 24px 84px rgba(54, 225, 178, 0.2);
}

/* section 3 home saving  */

.home-savings {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

section.home-savings h3 span {
  font-family: 'Nagoda', sans-serif;
  font-weight: 100 !important;
}

.home-savings h3 {
  margin-bottom: 15px;
  letter-spacing: -3.12px;
  width: 70%;
}

.home-savings p {
  width: 80%;
  color: #2C2C2C;
}


.home-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.home-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #033B38;
  background-color: white;
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home-btn.bg-green {
  color: #fff;
}

.home-btn:hover {
  transform: translateY(-2px);
}

.btn-icon {
  width: 20px;
  height: 20px;
}


/* range section  */

.range-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 20px 110px 20px;
  flex-direction: column;
}

.range-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 40px;
  border-radius: 20px;
  width: 1030px;
  max-width: 1030px;
  margin-top: 30px;
  gap: 60px;
  position: relative;
}

.range-box::before {
  content: "";
  border-radius: 20px;
  position: absolute;
  left: 50%;
  bottom: -20px;
  /* moves it down */
  width: 95%;
  /* thickness of line */
  height: 50px;
  /* line height */
  background: #ffffffb8;
  /* white color */
  transform: translateX(-50%);
  /* center align */
}

.range-left,
.range-right {
  width: 50%;
}

.range-right {
  width: 45%;
}

.range-right img {
  width: 100%;
}

.range-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}

.circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.circle img {
  width: 50%;
}


.range-container {
  width: 400px;
}

.range-container p {
  margin-bottom: 20px;
}

.slider {
  position: relative;
  width: 400px;
  height: 60px;
}

.slider-track {
  position: absolute;
  height: 12px;
  border-radius: 10px;
  background: #e8f6f5;
  width: 100%;
  top: 20px;
  z-index: 1;
}

.slider-range {
  position: absolute;
  height: 12px;
  border-radius: 10px;
  background: #1de9b6;
  top: 20px;
  z-index: 2;
}

input[type=range] {
  position: absolute;
  width: 100%;
  pointer-events: none;
  -webkit-appearance: none;
  background: none;
  z-index: 3;
  height: 12px;
  top: 20px;
  margin: 0;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #1de9b6;
  cursor: pointer;
  pointer-events: auto;
  border: none;
}

input[type=range]::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #1de9b6;
  cursor: pointer;
  pointer-events: auto;
  border: none;
}

.range-label {
  position: absolute;
  top: 0;
  /* above slider bar */
  font-size: 14px;
  color: #333;
  transform: translate(-50%, 40px);
  white-space: nowrap;
}

.range-box-1,
.range-box-2,
.range-box-3 {
  display: none;
  /* hide all by default */
}

.range-box-3 {
  position: relative;
}


.bg-green-active {
  background-color: #033B38 !important;
  color: white !important;
}


.range-bottom-text {
  color: #2C2C2C;
  margin-top: 40px;
  width: 70%;
  text-align: center;
  max-width: 947px;
}


.home-btn:hover {
  transform: translateY(-4px);
  background-color: #033B38;
  color: white;
  border-color: #033B38;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.home-btn:hover .btn-icon {
  filter: brightness(0) invert(1);
  /* makes tick icon white */
}


/* how it works section  */


.big-font {
  color: white;
  font-size: clamp(2rem, 16vw, 20rem) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: -50px;
}

.how-btn {
  margin-bottom: -100px;
  margin-top: 200px;
}

.how-it-works {
  padding: 0px 0px 220px 0px;
  background-image: url('images/how-it-works-main-bg.webp');
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.how-it-works-head {
  width: 55%;
  text-align: center;
  padding-top: 100px;
}

.how-it-works-p {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 150px;
  font-weight: 200;
}

.step {
  text-align: center;
  display: flex;
  max-width: 1160px;
  width: 90%;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 100px;
}

.inner-step {
  width: 33%;
}

.inner-step img {
  width: 135px;
  zoom: 1.5 !important;
}

.step-title {
  margin-bottom: 15px;
}


/* here we go  */

.step-1 {
  padding-bottom: 50px;
  padding-right: 30px;
  padding-bottom: 50px;
  padding-right: 30px;
  background-image: linear-gradient(to right, transparent 0%, #36E1B2 65%);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: bottom left;
  border-right: 1px solid #36E1B2;
  border-bottom-right-radius: 20px;
  position: relative;
}


.step-1::before {
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  background: url("images/step-1-icon.svg") no-repeat center center;
  background-size: contain;
  bottom: -30px;
  left: 38%;
}


.step-1-inner {
  margin-top: -100px;
}

.step-2 {
  border-top: 1px solid #36E1B2;
  padding-top: 127px;
  padding-left: 14px;
  padding-right: 20px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  position: relative;
}

.step-2::before {
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  background: url("images/step-2-icon.svg") no-repeat center center;
  background-size: contain;
  top: -30px;
  left: 40%;
}

.step-2-inner {
  margin-bottom: -123px;
}

.step-3.inner-step {
  padding-bottom: 50px;
  padding-left: 30px;
  border-left: 1px solid #36E1B2;
  border-bottom-left-radius: 20px;
  background-image: linear-gradient(to left, transparent 0%, #36E1B2 65%);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: bottom left;
  position: relative;
}

.step-3-inner {
  margin-top: -100px;
}


.step-3::before {
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  background: url(images/step-3-icon.svg) no-repeat center center;
  background-size: contain;
  bottom: -30px;
  left: 48%;
}


.step-p-light {
  font-weight: 300;
}

.step-1-inner img,
.step-2-inner img,
.step-3-inner img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.step-1-inner img:hover,
.step-2-inner img:hover,
.step-3-inner img:hover {
  transform: translateY(-10px);
}


/* girl leaf container  */


.inner-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  width: 100%;
  background: url("images/girl-with-leaf-parent.png") no-repeat right center;
  background-size: cover;
  padding-top: 230px;
}

.girl-leaf-container {
  /* background-color: #F4F4F6; */
  background-image: url(images/grey-grid.svg);
  background-repeat: no-repeat;
  background-size: cover;

}

.girl-leaf-content {
  max-width: 45%;
  padding: 0px 40px 60px 40px;
  margin-top: -120px;
}

.girl-leaf-content h3 {
  word-spacing: -5px;
}

.girl-leaf-buttons {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 22px;
}

.girl-leaf-buttons .outline-btn {
  padding: 20px 50px;
}

.outline-btn {
  border: 1px solid #033B38;
  background: transparent;
  padding: 12px 24px;
  cursor: pointer;
}

.girl-p-last {
  padding-bottom: 20px;
}

.right-girl-container {
  display: none;
}

/* why solar boxes code  */

.why-solar-container {
  background-image: url("images/grid-why.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.why-solar-container {
  width: 100%;
  padding: 100px 0px;
}

.why-solar-inner {
  max-width: 1070px;
  margin: 0 auto;
  text-align: center;
  padding: 0px 20px;
}

h2.why-title span {
  font-family: 'Nagoda', sans-serif;
  font-weight: 100;
}

.why-title {
  margin-bottom: 60px;
  word-spacing: -5px;
  font-size: 52px;
  font-weight: 500 !important;
}

.why-solar-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 70px 40px;
}

.why-solar-box {
  flex: 1 1 calc(33.333% - 40px);
  max-width: calc(33.333% - 40px);
  padding: 30px 20px;
  transition: all 0.3s ease;
  border-radius: 12px;
  box-sizing: border-box;
  height: min-content;
}

.why-solar-box:hover {
  background: #fff;
  box-shadow: 0px 24px 84px 0px rgba(0, 0, 0, 0.1);
}

.why-solar-box h3 {
  margin-bottom: 15px;
  line-height: 1.3em;
  color: #02312F;
  font-weight: 100 !important;
}

.why-solar-box p {
  color: #2C2C2C;
  line-height: 163%;
}

.solar-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #36E1B2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.solar-icon img {
  width: 60px;
  height: 60px;
}


/* which solar best situation section  */

.best-situation {
  background-image: url(images/vertical-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 0px;
  position: relative;
}

h2.best-situation-heading span {
  font-family: Nagoda, sans-serif;
  font-weight: 100;
}

.best-situation-heading {
  text-align: center;
  width: 45%;
  margin: 0 auto;
  padding-bottom: 60px;
  font-size: 52px;
  word-spacing: -5px;
  font-weight: 100 !important;
}

.situations {
  max-width: 1030px;
  width: 95%;
  margin: 0 auto;
}

.situation {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 80px;
  border-radius: 20px;
  margin-bottom: 25px;
}

.situation-1 {
  background-image: url("images/situation-1.webp");
}

.situation-2 {
  background-image: url("images/situation-2.webp");
}

.situation-3 {
  background-image: url("images/situation-3.webp");
}

.situation-4 {
  background-image: url("images/situation-4.webp");
}

.situation-content {
  width: 50%;
}

h4.situation-title {
  font-size: 32px;
  line-height: 110%;
  margin-bottom: 10px;
  word-spacing: -2px;
  font-weight: 100 !important;
}

.situation-des {
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 30px;
  line-height: 163%;
}

.situation-content a {
  font-weight: bold;
}

/* learn more section  */


.learn-more-heading {
  text-align: center;
  margin: 0 auto;
  font-weight: 500 !important;
}

.learn-more-heading-green {
  padding-bottom: 60px;
}

.learn-more-grey {
  background-color: #F4F4F6;
  padding: 100px 0px;
}

.learn-more-grey h2 {
  line-height: 110%;
  font-weight: 100;
  font-size: 52px;
  letter-spacing: -3px;
  line-height: 110%;
}


.learn-more-grey-2 {
  background-color: #F4F4F6;
  padding: 100px 0px 0px 0px;
}

.solar-energy-cards-main {
  width: 1240px;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.solar-energy {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 220px 40px 40px 40px;
  border-radius: 20px;
  width: 50%;
}

.solar-content {
  width: 100%;
}

.solar-des {
  font-size: 18px;
  font-weight: 200;
  line-height: 163%;
}

.solar-energy-card-1 {
  background-image: url("images/solar-energy-card-1.webp");
}

.solar-energy-card-2 {
  background-image: url("images/solar-energy-card-2.webp");
}

.solar-energy-card-3 {
  background-image: url("images/solar-energy-card-3.webp");
}

.solar-energy-card-4 {
  background-image: url("images/solar-energy-card-4.webp");
}

/* tetsiomoniasl rated  */

.rated {
  width: 40%;
  text-align: center;
  margin: auto;
  padding-bottom: 60px;
  font-size: 52px;
  letter-spacing: -2px;
  word-spacing: -5px;
  font-weight: 500;
}

.rated-mob {
  padding-bottom: 0px;
  text-align: center;
  margin: auto;
}

.rated,
.rated-mob,
.rated span,
.rated-mob span {
  line-height: 1;
  /* adjust as needed */
}

.rated span {
  font-weight: 600;
}


.slider-wrap {
  width: 100%;
  overflow: hidden;
  height: 450px;
  position: relative;
  padding: 18px 6px;
}

.slider-track-testimonials {
  display: flex;
  align-items: stretch;
  height: 300px;
  will-change: transform;
  gap: 20px;
  background-color: transparent;
}

.card {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  width: 340px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

.quote {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  display: block;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.45;
  color: #374151;
  margin: 0 0 12px 0;
  flex: 1 1 auto;
}

.user-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 12px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-info img.profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #e5e7eb;
  display: block;
}

.username {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.trustpilot {
  height: 16px;
  display: block;
  object-fit: contain;
}

/* Keyframes for track; we animate translateX from 0 -> -50% of the track width */
@keyframes slide {
  0% {
    transform: translateX(0);
  }

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

/* Pause on hover (JS handles play/pause more robustly) */
.slider-wrap:hover .slider-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 640px) {
  :root {
    --card-w: 280px;
  }

  .testimonial-text {
    font-size: 16px;
  }
}


/* family solar section css  */

.family-solar {
  padding: 60px 0px;
  position: relative;
}

.family-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.family-left {
  flex: 0 0 40%;
}

.family-left img {
  width: 100%;
  height: auto;
  display: block;
}

.family-right {
  flex: 0 0 45%;
}

.family-right h3 {
  position: relative;
  z-index: 2;
  font-weight: unset;
  letter-spacing: -3px;
  width: 88%;
}

.family-right h3 span {
  font-family: Nagoda, sans-serif;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-45 {
  margin-bottom: 45px;
}

.right-leaf {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  transition: width 1s ease-out;
  overflow: hidden;
}

/* When active */
.right-leaf.active {
  width: 150px;
}

.right-leaf-2 {
  position: absolute;
  right: 0;
  top: 0;
  width: 150px;
}

/* faq section  */

.faq-section {
  max-width: 840px;
  margin: 0 auto;
  padding: 60px 20px 20px 20px;
}

.faq-heading {
  text-align: center;
  margin-bottom: 40px;
}

.faq-heading h3 {
  margin: auto;
  width: 86%;
  font-weight: 500;
  letter-spacing: -2px;
  padding-bottom: 20px;
}


.faq-heading span.color-green {
  font-weight: 600;
}

.faq-container {
  max-width: 1250px;
  margin: 0px auto 140px auto;
  padding: 0px 20px;
  display: flex;
  gap: 15px;
}

.faq-item {
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-question {
  padding: 18px 20px;
  color: #02312F;
  display: flex;
  justify-content: space-between;
  font-family: 'Nagoda', sans-serif;
  font-size: 22px;
  line-height: 1.5em;
}

.faq-question span {
  font-size: 22px;
  color: #36E1B2;
  transition: transform 0.3s;
  font-weight: bold;
}

.faq-item.active .faq-question span {
  font-size: 25px !important;
  /* bigger only when active (-) */
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.6;
  transition: max-height 0.8s ease, padding 0.6s ease;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  color: #2C2C2C;
}

.faq-item.active .faq-answer {
  max-height: fit-content;
  padding: 0px 20px 15px 20px;

}

.faq-left,
.faq-right {
  gap: 18px;
  display: flex;
  flex-direction: column;
  width: 50%;
}

.compare-text {
  text-transform: uppercase;
  word-spacing: 5px;
  letter-spacing: 2px;
}

.mobile-testimonials {
  display: none;
}

/* media queries  */

@media screen and (min-width:1439px) {
  .inner-container {
    background-size: contain;
  }

  .best-situation-heading {
    width: 40%;
  }

}

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

  .left {
    width: 58%;
  }

  .right {
    width: 75%;
    margin-right: -25px;
  }

  .left h1 {
    font-size: 60px !important;
  }

  .save-p {
    width: 76%;
  }

  .compare-text {
    margin-bottom: 20px;
  }

  .feature-item {
    align-items: flex-start;
  }

  .hero {
    gap: 20px;
    padding-top: 0px;
  }

  .girl-leaf-content {
    max-width: 45%;
  }

  .rated {
    width: 50%;
  }


  .inner-container {
    background-size: 50% !important;
  }
}

@media screen and (max-width:1400px) {
  .logo-flex img {
    max-width: 100px;
  }

  .range-bottom-text {
    width: 100%;
  }

}

@media screen and (max-width: 1380px) {
  .girl-leaf-content {
    max-width: 40%;
  }

  .left h1 {
    font-size: 50px !important;
  }

}

@media screen and (max-width:1439px) {
  .inner-container {
    background-size: contain;
  }

  .right {
    width: 60%;
  }

}

@media screen and (max-width:1366px) {
  .why-solar-container {
    margin-top: -50px;
  }
}

@media screen and (max-width:1270px) {
  .how-it-works-head {
    width: 100%;
  }

  .hero {
    flex-direction: column;
    gap: 50px;
    padding-top: 70px;
  }

  .right,
  .left {
    width: 100%;
  }

  .right {
    margin-right: 0px;
  }

  .save-p {
    width: 100%;
  }

  .best-situation-heading {
    width: 90%;
  }


  .right img {
    width: 100%;
  }


}

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

  .rating {
    justify-content: unset;
  }

  .features {
    flex-wrap: wrap;
  }


  .range-box {
    width: 90%;
    flex-direction: column;
  }

  .range-bottom-text {
    width: 90%;
  }

  .range-left,
  .range-right {
    width: 100%;
  }

  .circle {
    width: 40px;
    height: 40px;
  }

  .step {
    flex-direction: column;
  }

  .step-2 {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: 0px;
  }

  .inner-step {
    width: 100%;
  }

  .step-1-inner,
  .step-2-inner,
  .step-3-inner {
    margin: 0px;
  }

  .step-3.inner-step {
    padding-bottom: 50px;
    padding-left: 30px;
    border-left: 0px;
    border-bottom: 1px solid #36E1B2;
    border-right: 1px solid #36E1B2;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 0px;
  }

  .step-1 {
    padding-bottom: 50px;
    padding-right: 30px;
    padding-left: 0px;
    padding-bottom: 50px;
    padding-right: 0px;
    background-image: none;
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: bottom left;
    border-right: 0px;
    border-bottom-right-radius: 0px;
    position: relative;
  }

  .step-1::before {
    bottom: -30px;
    left: 46%;
    z-index: 1;
  }

  .step-2 {
    padding-top: 20px;
    padding-bottom: 50px;
    border-left: 0px;
    border-right: 1px solid #36E1B2;
    border-top: 1px solid #36E1B2;
    border-bottom: 1px solid #36E1B2;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    padding-left: 0px;
  }

  .step-2::before {
    top: 92%;
    left: 46%;
    z-index: 1;
  }


  .step-2-inner {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }


  .step-3.inner-step {
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
    border-left: 0px;
    border-bottom: 1px solid #36E1B2;
    border-right: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    border-left: 1px solid #36E1B2;
  }

  .step-3::before {
    left: 46%;
  }


  .inner-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
  }

  .girl-leaf-content {
    width: 90%;
    max-width: 100%;
  }

  .right-girl-container {
    width: 100%;
    display: block;
  }

  .right-girl-container img {
    width: 100%;
  }

  .girl-p-last {
    padding-bottom: 40px;
  }

  .why-solar-container {
    padding: 0px;
  }

  .why-solar-container {
    padding: 65px 0px 100px 0px;
  }

  .big-font {
    margin-top: -20px;

  }

  .logo-container {
    flex-direction: column;
    gap: 30px;
  }

  .logo-flex {
    width: 100%;
  }

  .logo-text {
    width: 100%;
    text-align: center;
  }

  .rated {
    width: 95%;
  }

  .why-solar-container {
    margin-top: 0px;
  }

  .left {
    zoom: 1;
  }

}

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

  .faq-right,
  .faq-left {
    width: 100%;
  }


  .how-it-works-p {
    margin-bottom: 0px;
  }

  .why-solar-box {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
    /* 2 per row */
  }

  .family-container {
    flex-direction: column-reverse;
    gap: 100px;
  }

  .family-solar {
    padding: 110px 20px 60px 20px;
    overflow: hidden;
  }

  .right-leaf {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 80px !important;
  }

  .family-left {
    margin-bottom: 150px;
  }

  .faq-container {
    flex-direction: column;
  }

  .faq-question {
    font-size: 18px;
  }

  .logo-flex img {
    flex: 1 1 calc(33.33% - 30px);
  }

  .solar-grid {
    grid-template-columns: auto;
  }

  .solar-box {
    padding: 20px;
  }

  .solar-box ul li {
    font-size: 18px;
  }

  .solar-container {
    width: 100%;
  }

  .section-heading-1 {
    margin-top: 80px;
  }

  .situation-content {
    width: 65%;
  }

  .right-leaf-2 {
    width: 100px;
  }

  .why-solar-container {
    background-repeat: repeat;
    background-size: auto;

  }
}

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

  .main-hero {
    padding: 0px 20px;
  }

  .hero {
    margin-top: 0px;
  }

  .counters {
    padding: 70px 20px;
    margin: 0px;
  }

  .home-savings p {
    width: 100%;
  }

  .how-it-works {
    padding: 0px 20px 260px 20px;
  }

  .why-solar-box {
    flex: 1 1 100%;
    max-width: 100%;
    box-shadow: 0px 24px 84px 0px rgba(0, 0, 0, 0.1);
    background: white;
  }

  .why-solar-grid {
    gap: 20px;
  }

  .solar-icon {
    width: 70px;
    height: 70px;
  }

  .solar-icon img {
    width: 45px;
    height: 45px;
  }

  .faq-item {
    flex: 1 1 100%;
    /* full width on mobile */
  }

  .how-it-works-head {
    padding-top: 50px;
  }

  .girl-leaf-content h3 {
    line-height: 1.3em;
  }

  .big-font {
    margin-top: -25px;
    font-size: clamp(2rem, 15vw, 20rem) !important;
  }

  .inner-step img {
    margin-bottom: -20px;
  }

  .step-1::before {
    left: 44%;
  }

  .step-2-inner {
    flex-direction: column-reverse;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .range-section button {
    padding: 18px 40px;
  }

  .how-it-works-p {
    margin-bottom: 40px;
  }

  .home-savings h3 {
    width: 65%;
  }

  .situation-content {
    width: 100%;
  }

  .situation {
    padding: 150px 20px 40px 20px;
  }

  .best-situation-heading,
  .learn-more-heading {
    font-size: 40px;
    line-height: 1.3em;
  }

  .situation-1 {
    background-image: url("images/situation-1-mob.webp");
  }

  .situation-2 {
    background-image: url("images/situation-2-mob.svg");
  }

  .situation-3 {
    background-image: url("images/situation-3-mob.webp");
  }

  .situation-4 {
    background-image: url("images/situation-4-mob.webp");
  }

  .right-leaf-2 {
    width: 70px;
  }


  h4.situation-title {
    font-size: 20px;
  }

  .solar-des,
  .situation-des {
    font-size: 16px;
  }

  .solar-energy-cards-main {
    flex-direction: column;
  }

  .solar-energy {
    width: auto;
  }

  .solar-energy {
    padding: 220px 20px 20px 20px;
  }

  .rated,
  .rated-mob {
    font-size: 40px;
  }

  /* myth and fact mobile none */

  .myth-fact-section {
    display: none;
  }

  .myth-fact-section-mobile {
    display: flex;
  }

  .myth-fact-head-desk {
    display: none;
  }

  .myth-fact-head {
    display: block;
  }

  /* desk tesimonials none  */

  .learn-more-grey-2 {
    display: none;
  }

  /* mob testimonails  */

  .mobile-testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 70px 20px 70px 20px;
    max-width: 768px;
    margin: 0 auto;
    background: #F4F4F6;
  }

  .mobile-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .myth-fact-section-mobile {
    box-shadow: 0px 11px 30px rgb(0 0 0 / 20%);
  }

  .mobile-quote {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    display: block;
  }

  .mobile-testimonial-text {
    font-size: 16px;
    line-height: 1.45;
    color: #374151;
    margin: 0;
    flex: 1 1 auto;
  }

  .mobile-user-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-user-info {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-profile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: #e5e7eb;
    display: block;
  }

  .mobile-username {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
  }

  .mobile-trustpilot {
    height: 16px;
    object-fit: contain;
  }

  .home-savings h3 {
    letter-spacing: -1px;
  }

  .counter-box:nth-child(1) {
    margin-bottom: 35px;
  }

}

@media screen and (max-width:663px) {
  .home-savings h3 {
    width: 84%;
  }

  .inside-top-bar p {
    font-size: 12px;
  }

}

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

  .main-hero {
    margin-top: -2px;
  }

  .hero {
    gap: 80px;
    padding-top: 70px;
    padding-bottom: 50px;
  }


  .search-bar input {
    padding: 0px 0px 0px 10px;
    width: 30%;
  }

  .search-bar {
    width: -webkit-fill-available;
  }

  .inside-top-bar {
    align-items: flex-start;
  }

  .cta-btn,
  .cta-btn-outline {
    padding: 18px 30px;
    font-size: 12px;

  }

  .line {
    margin: 20px 0px;
  }

  .features {
    margin-bottom: 30px;
  }

  .counter-box {
    width: 45% !important;
    flex: none;
  }

  .counter-box h2 {
    font-size: 40px !important;
  }

  .counter-box p {
    width: 100%;
    font-weight: 600 !important;
  }

  .counters {
    gap: 10px;
  }

  .range-box {
    padding: 20px;
    margin-top: 50px;
  }

  .step-1::before,
  .step-2::before,
  .step-3::before {
    left: 43%;
  }

  .step-3.inner-step {
    padding-left: 21px;
    padding-right: 16px;
  }

  .slider-track {
    width: 95%;
  }

  .range-row img {
    height: 45px;
    width: 45px;
  }

  button.ctb-btn-girl,
  .cta-btn-outline,
  .family-cta,
  .cta-btn {
    margin-top: 0px !important;
  }

  .cta-btn-hero {
    margin-top: 20px;
  }

  .why-title {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .girl-leaf-content h3,
  .family-right h3 {
    font-size: 40px !important;
  }

  .faq-heading h3 {
    font-size: 40px !important;
  }

  .girl-leaf-content h3 {
    word-spacing: -2px;
    letter-spacing: -2.4px;
    font-weight: 100;
    line-height: 110%;
  }

  .home-savings {
    background: #F4F4F6;
    padding-top: 80px;
  }

  .cta-footer {
    padding: 18px 30px;
  }

  .counter-box p {
    font-weight: 700;
    font-size: 14px;
  }

  .range-section button {
    font-size: 12px;
  }

  .range-row p {
    font-weight: 600;
  }

  p.font-eighteen.yearly {
    font-weight: 500;
  }

  .slider {
    width: 80%;
  }

  .compare-btn {
    margin-top: 100px !important;
    padding: 18px 35px;
    font-size: 12px;
  }

  .faq-container {
    margin: 0px auto 100px auto;
  }

  .big-font {
    margin-top: -10px;
  }

  .contact-item p {
    font-size: 18px;
  }

  .home-savings h3 {
    width: 100%;
  }

  .inner-container {
    padding-top: 150px;
  }

  .range-bottom-text {
    margin-top: 70px;
  }

  .range-box.range-box-3::after {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 70px;
    background: #ffffff;
    border-radius: 20px;
    opacity: .6;
  }


  .logo-flex img {
    flex: 1 1 calc(20% - 30px);
    max-width: 75px;
    height: auto;
  }

  .solar-box ul li {
    font-size: 16px;
  }

  .logo-section {
    padding: 50px 0;
  }

  .logo-text {
    font-size: 18px;
  }

  .myth-fact-head h2 {
    word-spacing: -2px;
    letter-spacing: -1px;
    width: 250px;
  }

  .step {
    margin-top: 50px;
  }


  .how-it-works {
    padding: 0px 20px 160px 20px;
  }

  .family-left {
    margin-bottom: 50px;
  }


  .learn-more-grey h2 {
    width: 97%;
    line-height: 1em;
    font-size: 35px;
  }

  .learn-more-grey {
    padding: 50px 0px;
  }

  .family-solar {
    padding: 50px 20px 60px 20px;
  }

  .family-right h3 {
    word-spacing: -5px;
    width: 313px;
    letter-spacing: -2px;
  }

  .btn-take {
    font-size: 10px;
  }

  .best-situation-heading {
    width: 300px;
  }

  .girl-leaf-content h3 span.color-green {
    font-weight: 600;
  }


}

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

  .step-1::before,
  .step-2::before,
  .step-3::before {
    left: 40%;
  }

  .home-savings h3 {
    width: 86%;
  }

}