@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

body {
  font-family: "Instrument Sans", sans-serif;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0;
}

ul li {
  list-style: none;
}

p {
  text-align: justify;
  margin-bottom: 0px;
}

h1 {
  margin-bottom: 0px;
}

h2,
h3,
h4 {
  margin-bottom: 0px;
}

:root {
  --dark-orange: #d96d00;
  --light-orange: #ffa94d;

  --black: #000;
  --white: #fff;
  --red: #ba0001;
  --green: #70a430;
  --orange: #FF9500;
  --blue: #0F2351;
  --yellow: #F7A413;
  --dark-orange: #F65917;
  --light-blue: #2b689f;
}


/* section css */
section {
  padding: 50px 0px;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head .heading {
  text-align: center;
  font-size: 20px;
  color: var(--black);
  margin-bottom: 25px;
  font-weight: 500;
}

.section-head .sub-head {
  color: var(--dark-orange);
  margin-bottom: 20px;
}

.section-head .head-para {
  text-align: center;
  font-size: 18px;
}


@media screen and (max-width: 767px) {
  p {
    font-size: 12px;
  }

  section {
    padding: 20px 0px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .section-head .heading {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .section-head .sub-head {
    font-size: 20px;
  }

  .section-head .head-para {
    font-size: 14px;
  }
}

@media screen and (max-width: 575px) {
  .section-head .heading {
    font-size: 14px;
  }
}

/* section css */

/* footer css */
.footer {
  padding: 50px 0px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0px;
  }
}

/* footer css */


/* custom css start   -------------------------------------------------------- */

/* ----------- navbar css start here ----------- */

.navbar {
  padding: 15px 0px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.navbar .logo {
  width: 180px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: var(--blue);
  font-size: 20px;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--orange);
}

.navbar .navbar-nav .nav-item {
  position: relative;
}

.navbar .navbar-nav .nav-item::after {
  content: "";
  position: absolute;
  width: 0%;
  left: 0;
  bottom: 0%;
  height: 2px;
  background: var(--orange);
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.navbar .navbar-nav .nav-item:hover::after {
  opacity: 1;
  width: 100%;
  transition: 0.5s ease-in-out;
}

.navbar-light .navbar-toggler {
  font-size: 1rem;
  border-color: black;
}

.navbar-light .navbar-toggler:focus {
  border: 1px solid var(--green);
  box-shadow: none;
}



.nav-btn a {
  display: inline-block;
  background: var(--orange);
  border: 1px solid var(--orange);
  padding: 10px 15px;
  border-radius: 5px;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  transition: .4s ease-in-out;
}

.nav-btn a:hover {
  background: none;
  color: var(--blue);
  border: 1px solid var(--blue);
}

/* responsive navbar */

@media screen and (max-width: 1400px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 14px;
  }

  .nav-btn a {
    padding: 5px 10px;
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }

  .nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }

  .nav-btn a {
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 14px;
  }


}

@media screen and (max-width: 767px) {
  .navbar .logo {
    width: 150px;
  }

  .navbar .navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-top: 20px;
  }


  .nav-btn a {
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 14px;
  }

}


/* --------------- end of navbar css here ------------- */



/* --------------- banner css start here ---------------- */

.carousel-indicators {
  margin-bottom: 5px;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border: none;
  background: var(--blue) !important;
}

.carousel-indicators button {
  border-radius: 50px;
}

@media screen and (max-width: 767px) {
  .carousel-indicators [data-bs-target] {
    width: 5px;
    height: 5px;
  }
}

/* --------------------- end of banner css here --------------------- */


/* about us css start here */

/* =========================
   ABOUT SECTION
========================= */




/* =========================
   SECTION HEADING
========================= */

.section-heading {
    margin-bottom: 55px;
}

.section-heading span {
    display: inline-block;
    color: #f58220;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-heading h2 {
    margin: 0;
    color: #123c20;
    font-size: 38px;
    font-weight: 800;
}

.heading-line {
    width: 70px;
    height: 3px;
    background: #f58220;
    margin: 15px auto 0;
    position: relative;
}

.heading-line::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #4c9b2e;
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
}


/* =========================
   LEFT CONTENT
========================= */

.about-small-title {
    display: inline-block;
    color: #f58220;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.about-content h3 {
    color: #102f4d;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 22px;
}

.about-content h3 span {
    display: block;
    color: #24751f;
}

.about-content > p {
    color: #606b63;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* =========================
   FEATURES
========================= */

.about-feature {
    display: flex;
    gap: 16px;
    margin-top: 22px;
    align-items: flex-start;
}

.feature-icon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    background: #27821f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 21px;
    box-shadow: 0 5px 15px rgba(39, 130, 31, 0.20);
}

.about-feature h5 {
    color: #193b23;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 5px;
}

.about-feature p {
    color: #68736c;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}


/* =========================
   IMAGE
========================= */

.about-image-wrapper {
    position: relative;
    padding: 0 0 35px 30px;
}

.about-image {
    width: 100%;
    height: 590px;
    object-fit: cover;
    border-radius: 100px 15px 100px 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}


/* =========================
   FLOATING BADGE
========================= */

.solar-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #ffffff;
    padding: 18px 25px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    min-width: 280px;
}

.badge-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #f58220;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

.solar-badge strong,
.solar-badge span,
.solar-badge b {
    display: block;
    font-size: 17px;
}

.solar-badge strong {
    color: #24751f;
}

.solar-badge span {
    color: #102f4d;
}

.solar-badge b {
    color: #f58220;
}


/* =========================
   STATS
========================= */

.about-stats {
    background: #f5faef;
    border-radius: 20px;
    margin-top: 50px;
    overflow: hidden;
    border: 1px solid #e5efdf;
}

.stat-box {
    min-height: 130px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-right: 1px solid #dce8d7;
}

.stat-box:last-child {
    border-right: none;
}

.stat-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: #287d21;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.stat-box h4 {
    margin: 0;
    color: #24751f;
    font-size: 30px;
    font-weight: 800;
}

.stat-box p {
    margin: 3px 0 0;
    color: #536054;
    font-size: 14px;
    font-weight: 600;
}


/* =========================
   COMMITMENT
========================= */

.commitment-box {
    margin-top: 30px;
    padding: 25px 35px;
    background: #0d5c19;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ffffff;
}

.commitment-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    color: #27821f;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

.commitment-content {
    flex: 1;
}

.commitment-content small {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.commitment-content h4 {
    margin: 0;
    font-size: 21px;
    font-weight: 700;
}

.commitment-content h4 span {
    color: #ffd400;
}

.commitment-right {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 30px;
    border-left: 1px solid rgba(255,255,255,0.35);
}

.commitment-right > i {
    color: #ffd400;
    font-size: 38px;
}

.commitment-right strong,
.commitment-right span {
    display: block;
}

.commitment-right strong {
    font-size: 17px;
}

.commitment-right span {
    color: #ffd400;
    font-size: 17px;
    font-weight: 700;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .about-section {
        padding: 70px 0;
    }

    .about-content h3 {
        font-size: 38px;
    }

    .about-image-wrapper {
        padding-left: 0;
        margin-top: 20px;
    }

    .about-image {
        height: 500px;
    }

    .stat-box {
        border-bottom: 1px solid #dce8d7;
    }

    .stat-box:nth-child(2) {
        border-right: none;
    }

    .commitment-box {
        flex-wrap: wrap;
    }

    .commitment-right {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.35);
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 575px) {


    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .about-content h3 {
        font-size: 22px;
    }

    .about-content > p {
        font-size: 15px;
    }

    .about-feature {
        gap: 12px;
    }

    .feature-icon {
        min-width: 42px;
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .about-feature h5 {
        font-size: 16px;
    }

    .about-feature p {
        font-size: 13px;
    }

    .about-image-wrapper {
        padding: 0 0 25px;
    }

    .about-image {
        height: 350px;
        border-radius: 50px 10px 50px 10px;
    }

    .solar-badge {
        left: 10px;
        padding: 12px 15px;
        min-width: auto;
        width: calc(100% - 20px);
    }

    .badge-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .solar-badge strong,
    .solar-badge span,
    .solar-badge b {
        font-size: 14px;
    }

    .about-stats {
        margin-top: 35px;
    }

    .stat-box {
        justify-content: flex-start;
        padding: 20px;
        border-right: none;
    }

    .stat-box h4 {
        font-size: 25px;
    }

    .commitment-box {
        padding: 22px;
        gap: 15px;
    }

    .commitment-content h4 {
        font-size: 17px;
    }

    .commitment-right {
        gap: 10px;
    }

    .commitment-right > i {
        font-size: 30px;
    }

    .commitment-right strong,
    .commitment-right span {
        font-size: 14px;
    }
}

/* end of about us css here */



/* mission vision css start here */

/* =========================================
   MISSION & VISION SECTION
========================================= */

.mission-vision-section {
    position: relative;
    padding: 100px 0;
    background: #f7faf5;
    overflow: hidden;
}


/* Decorative circles */

.mission-vision-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(42, 132, 31, 0.05);
    top: -150px;
    left: -150px;
}

.mission-vision-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(245, 130, 32, 0.05);
    bottom: -150px;
    right: -100px;
}


/* =========================================
   HEADING
========================================= */

.mv-heading {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.mv-heading > span {
    display: inline-block;
    color: #f58220;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.mv-heading h2 {
    color: #123c20;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 15px;
}

.mv-heading h2 strong {
    color: #27821f;
}

.mv-heading p {
    color: #68736c;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}


/* =========================================
   MAIN CARDS
========================================= */

.mv-card {
    height: 100%;
    padding: 35px;
    background: #ffffff;
    border-radius: 25px;
    border: 1px solid #e4ebe1;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 45px rgba(26, 65, 31, 0.08);
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(26, 65, 31, 0.13);
}


/* Vision top border */

.vision-card {
    border-top: 5px solid #27821f;
}


/* Mission top border */

.mission-card {
    border-top: 5px solid #f58220;
}


/* =========================================
   CARD TOP
========================================= */

.mv-card-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.mv-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    color: #ffffff;
}

.vision-card .mv-icon {
    background: #27821f;
    box-shadow: 0 10px 20px rgba(39, 130, 31, 0.22);
}

.mission-card .mv-icon {
    background: #f58220;
    box-shadow: 0 10px 20px rgba(245, 130, 32, 0.22);
}


/* =========================================
   LABEL
========================================= */

.mv-label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.vision-card .mv-label {
    color: #27821f;
}

.mission-card .mv-label {
    color: #f58220;
}


/* =========================================
   CARD TITLE
========================================= */

.mv-card h3 {
    color: #123c20;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 800;
    margin: 0;
}

.mv-card h3 span {
    display: block;
}

.vision-card h3 span {
    color: #27821f;
}

.mission-card h3 span {
    color: #f58220;
}


/* =========================================
   DESCRIPTION
========================================= */

.mv-description {
    color: #626d66;
    font-size: 15px;
    line-height: 1.8;
    padding-bottom: 22px;
    margin: 0;
    border-bottom: 1px solid #edf1eb;
}


/* =========================================
   SUB HEADING
========================================= */

.future-title {
    color: #173c23;
    font-size: 16px;
    font-weight: 800;
    margin: 22px 0 15px;
}


/* =========================================
   POINTS
========================================= */

.mv-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mv-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.point-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-top: 2px;
}

.vision-card .point-icon {
    color: #27821f;
    background: #edf7ea;
}

.mission-card .point-icon {
    color: #f58220;
    background: #fff3e8;
}

.mv-point p {
    color: #59645d;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}


/* =========================================
   BOTTOM CARD
========================================= */

.mv-bottom {
    margin-top: 25px;
    padding: 17px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.vision-bottom {
    background: #edf8e9;
}

.mission-bottom {
    background: #fff4e8;
}

.mv-bottom > i {
    font-size: 25px;
}

.vision-bottom > i {
    color: #27821f;
}

.mission-bottom > i {
    color: #f58220;
}

.mv-bottom small {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #727b74;
    margin-bottom: 3px;
}

.mv-bottom strong {
    display: block;
    font-size: 15px;
    color: #173c23;
}


/* =========================================
   CTA
========================================= */

.mv-cta {
    position: relative;
    z-index: 2;
    margin-top: 35px;
    padding: 25px 30px;
    background: #0d5c19;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 40px rgba(13, 92, 25, 0.18);
}

.cta-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f58220;
    font-size: 27px;
}

.cta-content {
    flex: 1;
}

.cta-content span {
    display: block;
    color: #ffd400;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.cta-content h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}


/* =========================================
   CTA BUTTON
========================================= */

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 23px;
    background: #f58220;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: #ffffff;
    color: #0d5c19;
    transform: translateX(3px);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .mission-vision-section {
        padding: 75px 0;
    }

    .mv-heading h2 {
        font-size: 35px;
    }

    .mv-card {
        padding: 30px;
    }

    .mv-cta {
        flex-wrap: wrap;
    }

    .cta-content {
        flex: 1;
    }

    .cta-btn {
        margin-left: 80px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .mission-vision-section {
        padding: 55px 0;
    }

    .mv-heading {
        margin-bottom: 35px;
    }

    .mv-heading h2 {
        font-size: 29px;
    }

    .mv-heading p {
        font-size: 14px;
    }

    .mv-card {
        padding: 23px;
        border-radius: 20px;
    }

    .mv-card-top {
        gap: 12px;
    }

    .mv-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 14px;
        font-size: 22px;
    }

    .mv-card h3 {
        font-size: 21px;
    }

    .mv-description {
        font-size: 14px;
    }

    .mv-point p {
        font-size: 13px;
    }

    .mv-cta {
        padding: 22px;
        gap: 15px;
    }

    .cta-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 22px;
    }

    .cta-content {
        width: calc(100% - 65px);
    }

    .cta-content h4 {
        font-size: 16px;
    }

    .cta-btn {
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }
}


/* end of mission vision css here */


/* why choose us section css start here */

/* =========================================
   WHY CHOOSE US
========================================= */

.why-choose-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.why-heading {
    max-width: 800px;
    margin: 0 auto 60px;
}

.why-heading > span {
    display: inline-block;
    color: #f58220;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.why-heading h2 {
    color: #123c20;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 15px;
}

.why-heading h2 strong {
    color: #27821f;
}

.why-heading p {
    color: #68736c;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}


/* =========================================
   IMAGE AREA
========================================= */

.why-image-wrapper {
    position: relative;
    padding: 0 30px 45px 0;
}

.why-image {
    width: 100%;
    height: 650px;
    object-fit: cover;

    border-radius: 25px 100px 25px 100px;

    box-shadow:
        0 25px 60px rgba(21, 74, 27, 0.15);
}


/* =========================================
   SOLAR CIRCLE
========================================= */

.solar-circle {
    position: absolute;

    width: 135px;
    height: 135px;

    right: 0;
    top: 45px;

    background: #f58220;
    color: #ffffff;

    border-radius: 50%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    border: 7px solid #ffffff;

    box-shadow:
        0 15px 35px rgba(245, 130, 32, 0.30);
}

.solar-circle i {
    font-size: 30px;
    margin-bottom: 5px;
}

.solar-circle strong {
    font-size: 18px;
}

.solar-circle span {
    font-size: 12px;
}


/* =========================================
   SAVING CARD
========================================= */

.saving-card {
    position: absolute;

    bottom: 0;
    left: 0;

    background: #ffffff;

    padding: 18px 25px;

    border-radius: 18px;

    display: flex;
    align-items: center;

    gap: 14px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.14);
}

.saving-icon {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: #edf8e9;
    color: #27821f;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.saving-card span {
    display: block;
    color: #777;
    font-size: 12px;
}

.saving-card strong {
    display: block;
    color: #27821f;
    font-size: 18px;
}


/* =========================================
   WHY CONTENT
========================================= */

.why-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/* =========================================
   WHY CARD
========================================= */

.why-card {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding: 20px 45px 20px 20px;

    background: #f8fbf6;

    border: 1px solid #e6eee3;

    border-radius: 16px;

    transition: all 0.35s ease;

    overflow: hidden;
}

.why-card:hover {
    background: #ffffff;

    transform: translateX(7px);

    border-color: #cfe4c8;

    box-shadow:
        0 12px 35px rgba(39, 130, 31, 0.10);
}


/* =========================================
   ICON
========================================= */

.why-icon {
    width: 50px;
    height: 50px;

    min-width: 50px;

    background: #edf8e9;

    color: #27821f;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 21px;

    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: #27821f;
    color: #ffffff;
}


/* =========================================
   CARD CONTENT
========================================= */

.why-card-content {
    flex: 1;
}

.why-card h4 {
    color: #173c23;

    font-size: 17px;

    font-weight: 800;

    margin: 0 0 6px;
}

.why-card p {
    color: #69736c;

    font-size: 13px;

    line-height: 1.65;

    margin: 0;
}


/* =========================================
   NUMBER
========================================= */

.why-number {
    position: absolute;

    right: 12px;
    top: 12px;

    font-size: 12px;

    font-weight: 800;

    color: #dce8d8;
}


/* =========================================
   SAVING TEXT
========================================= */

.saving-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 9px;

    color: #27821f;

    font-size: 11px;

    font-weight: 800;
}

.saving-text i {
    color: #f58220;
    font-size: 10px;
}


/* =========================================
   BOTTOM PROMISE
========================================= */

.why-bottom {
    margin-top: 50px;

    padding: 25px 30px;

    background: #0d5c19;

    border-radius: 20px;

    display: flex;
    align-items: center;

    gap: 20px;

    box-shadow:
        0 15px 40px rgba(13, 92, 25, 0.18);
}

.why-bottom-icon {
    width: 60px;
    height: 60px;

    min-width: 60px;

    border-radius: 50%;

    background: #ffffff;

    color: #f58220;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
}

.why-bottom-content {
    flex: 1;
}

.why-bottom-content span {
    display: block;

    color: #ffd400;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 4px;
}

.why-bottom-content h3 {
    color: #ffffff;

    font-size: 21px;

    font-weight: 700;

    margin: 0;
}

.why-bottom-content h3 strong {
    color: #ffd400;
}


/* =========================================
   BUTTON
========================================= */

.why-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 24px;

    background: #f58220;

    color: #ffffff;

    border-radius: 50px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.why-btn:hover {
    background: #ffffff;
    color: #0d5c19;
}

.why-btn i {
    transition: transform 0.3s ease;
}

.why-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .why-choose-section {
        padding: 75px 0;
    }

    .why-heading h2 {
        font-size: 35px;
    }

    .why-image-wrapper {
        margin-bottom: 25px;
    }

    .why-image {
        height: 500px;
    }

    .why-bottom {
        flex-wrap: wrap;
    }

    .why-btn {
        margin-left: 80px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .why-choose-section {
        padding: 55px 0;
    }

    .why-heading {
        margin-bottom: 35px;
    }

    .why-heading h2 {
        font-size: 29px;
    }

    .why-heading p {
        font-size: 14px;
    }

    .why-image-wrapper {
        padding: 0 0 30px;
    }

    .why-image {
        height: 370px;

        border-radius: 20px 60px 20px 60px;
    }

    .solar-circle {
        width: 100px;
        height: 100px;

        right: 5px;
        top: 25px;

        border-width: 5px;
    }

    .solar-circle i {
        font-size: 22px;
    }

    .solar-circle strong {
        font-size: 15px;
    }

    .solar-circle span {
        font-size: 10px;
    }

    .saving-card {
        padding: 12px 15px;
        left: 5px;
    }

    .saving-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 18px;
    }

    .saving-card strong {
        font-size: 15px;
    }

    .why-card {
        padding: 17px 35px 17px 15px;
        gap: 12px;
    }

    .why-icon {
        width: 43px;
        height: 43px;
        min-width: 43px;
        font-size: 17px;
        border-radius: 11px;
    }

    .why-card h4 {
        font-size: 15px;
    }

    .why-card p {
        font-size: 12px;
    }

    .saving-text {
        font-size: 10px;
    }

    .why-bottom {
        padding: 20px;
    }

    .why-bottom-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 21px;
    }

    .why-bottom-content {
        width: calc(100% - 70px);
    }

    .why-bottom-content h3 {
        font-size: 17px;
    }

    .why-btn {
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }
}

/* end of why choose section us css here */

/* footer css start */
/* =========================================
   SOLAR FOOTER
========================================= */

.solar-footer {
    position: relative;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 102, 204, 0.25),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 25%,
            rgba(36, 169, 0, 0.18),
            transparent 30%
        ),
        #031b36;

    color: #ffffff;
    overflow: hidden;
}


/* =========================================
   TOP COLOR LINE
========================================= */

.footer-top-line {
    height: 5px;

    background: linear-gradient(
        90deg,
        #0066cc 0%,
        #0066cc 35%,
        #24a900 50%,
        #ff7a00 75%,
        #0066cc 100%
    );
}


/* =========================================
   FOOTER MAIN
========================================= */

.solar-footer > .container {
    padding-top: 70px;
    padding-bottom: 50px;
}


/* =========================================
   LOGO
========================================= */

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 220px;
    max-width: 100%;
    height: auto;

    filter: drop-shadow(
        0 5px 12px rgba(0, 0, 0, 0.35)
    );
}


/* =========================================
   ABOUT
========================================= */

.footer-about p {
    color: #c7d5e3;

    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 12px;

    max-width: 390px;
}


/* =========================================
   TAGLINE
========================================= */

.footer-tagline {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 8px;

    padding: 10px 16px;

    background: rgba(36, 169, 0, 0.12);

    border-left: 3px solid #ff7a00;

    border-radius: 5px;
}

.footer-tagline i {
    color: #ffb300;
    font-size: 20px;
}

.footer-tagline span {
    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


/* =========================================
   WIDGET
========================================= */

.footer-widget h4 {
    position: relative;

    color: #ffffff;

    font-size: 20px;

    font-weight: 700;

    margin: 5px 0 8px;
}


/* =========================================
   TITLE LINE
========================================= */

.footer-title-line {
    width: 45px;
    height: 3px;

    background: #ff7a00;

    margin-bottom: 22px;

    position: relative;
}

.footer-title-line::after {
    content: "";

    position: absolute;

    left: 15px;
    top: 0;

    width: 25px;
    height: 3px;

    background: #24a900;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #c7d5e3;

    text-decoration: none;

    font-size: 14px;

    transition: all 0.3s ease;
}

.footer-links a i {
    color: #24a900;

    font-size: 11px;

    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;

    transform: translateX(5px);
}

.footer-links a:hover i {
    color: #ff7a00;
}

.footer-links a .fa-solar-panel,
.footer-links a .fa-location-dot,
.footer-links a .fa-file-circle-check,
.footer-links a .fa-building,
.footer-links a .fa-plug-circle-check,
.footer-links a .fa-handshake {
    font-size: 13px;
}


/* =========================================
   CONTACT
========================================= */

.footer-contact {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 18px;
}

.contact-icon {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(0, 102, 204, 0.20);

    color: #4da3ff;

    font-size: 14px;
}

.footer-contact span {
    display: block;

    color: #ff7a00;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    margin-bottom: 2px;
}

.footer-contact p {
    color: #c7d5e3;

    font-size: 13px;

    line-height: 1.6;

    margin: 0;
}

.footer-contact a {
    color: #c7d5e3;

    font-size: 13px;

    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social {
    display: flex;

    gap: 9px;

    margin-top: 22px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);

    text-decoration: none;

    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #24a900;

    border-color: #24a900;

    transform: translateY(-4px);
}


/* =========================================
   FOOTER CTA
========================================= */

.footer-cta {
    margin-top: 45px;

    padding: 22px 28px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    gap: 18px;

    background:
        linear-gradient(
            100deg,
            rgba(0, 102, 204, 0.30),
            rgba(36, 169, 0, 0.18)
        );

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.20);
}

.footer-cta-icon {
    width: 58px;
    height: 58px;

    min-width: 58px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #0066cc;

    font-size: 25px;
}

.footer-cta-content {
    flex: 1;
}

.footer-cta-content span {
    display: block;

    color: #ff9d32;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 4px;
}

.footer-cta-content h3 {
    color: #ffffff;

    font-size: 20px;

    font-weight: 700;

    margin: 0;
}

.footer-cta-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 22px;

    border-radius: 50px;

    background: #ff7a00;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background: #ffffff;

    color: #0d5c19;

    transform: translateX(4px);
}

.footer-cta-btn i {
    transition: transform 0.3s ease;
}

.footer-cta-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   BOTTOM
========================================= */

.footer-bottom {
    padding: 20px 0;

    background: rgba(0, 0, 0, 0.25);

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
    color: #9fb1c2;

    font-size: 13px;

    margin: 0;
}

.footer-bottom p strong {
    color: #ffffff;
}

.footer-bottom-links {
    display: flex;

    justify-content: flex-end;

    align-items: center;

    gap: 12px;
}

.footer-bottom-links a {
    color: #9fb1c2;

    font-size: 13px;

    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff7a00;
}

.footer-bottom-links span {
    color: #52697f;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .solar-footer > .container {
        padding-top: 55px;
        padding-bottom: 40px;
    }

    .footer-cta {
        flex-wrap: wrap;
    }

    .footer-cta-content {
        flex: 1;
    }

    .footer-cta-btn {
        margin-left: 78px;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 8px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .solar-footer > .container {
        padding-top: 45px;
        padding-bottom: 35px;
    }

    .footer-logo img {
        width: 200px;
    }

    .footer-widget {
        margin-top: 10px;
    }

    .footer-about p {
        font-size: 13px;
    }

    .footer-cta {
        padding: 20px;

        gap: 13px;
    }

    .footer-cta-icon {
        width: 48px;
        height: 48px;

        min-width: 48px;

        font-size: 20px;
    }

    .footer-cta-content {
        width: calc(100% - 65px);
    }

    .footer-cta-content h3 {
        font-size: 16px;
    }

    .footer-cta-btn {
        width: 100%;

        margin-left: 0;

        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
/* footer css end */