/* *----------Google Fonts ---------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* *----------Global Styles ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}
a,
input {
  display: inline-block;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
}
ul {
  list-style: none;
}
html{
  scroll-behavior: smooth;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
:root {
  --main-color: #0b9586;
  --secondary-color: #ffc727;
}
.btn {
  padding: 10px 20px;
  background-color: transparent;
  border-radius: 100vh;
}
.mainColor {
  background-color: var(--main-color);
}
.secondaryColor {
  background-color: var(--secondary-color);
}
.sectionPadding {
  padding: 70px 0;
}
/* *----------NavBar  ---------- */
.navbar {
  background-color: var(--main-color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--secondary-color);
}

.navbar-links {
  display: flex;
  gap: 30px;
}

.navbar-links a {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: var(--secondary-color);
}

.pnoneNumber {
  font-size: 17px;
  color: white;
}

.hamburger {
  display: none;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
}

.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
}



/* *----------Home Section ---------- */
.home {
  background-image: url("../imgs/solar-panels-meadow 1.png");
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
}

.home h1 {
  font-size: 3.25rem;
}
.home p {
  line-height: 30px;
  margin-block: 20px;
  font-weight: 600;
}
.home .home-btns {
  display: flex;
  gap: 20px;
}
.home .home-shape {
  display: flex;
  margin-bottom: 50px;
  padding: 10px 10px;
  gap: 20px;
  align-items: center;
}

.home .home-shape .line {
  width: 20%;
  height: 5px;
  background-color: #5c5555;
  position: relative;
}
.home .home-shape .line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  width: 60%;
  height: 100%;
}
/* *-----------Friendliest Section ------------ */

.friendliest .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}
.friendliest .friendliest-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-end;
  padding: 20px;
}
.friendliest .friendliest-text h2 {
  font-size: 2.625rem;
  font-weight: 600;
}
.friendliest .friendliest-text p {
  color: #475467;
  line-height: 24px;
  font-weight: 400;
}
.friendliest .friendliest-text ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 1.25rem;
}
.friendliest .friendliest-text ul li span {
  color: #84bd3a;
}
.friendliest .friendliest-text ul li p {
  font-weight: 600;
  line-height: 30px;
}

.friendliest .friendliest-img {
  width: 35%;

  position: relative;
}
.friendliest .friendliest-img img {
  width: 100%;
  border-radius: 10px;
}
.friendliest .friendliest-img div {
  background-color: var(--secondary-color);
  position: absolute;
  bottom: 20px;
  left: -40px;
  width: 45%;
  padding: 10px;
  border-radius: 10px;
}
/* *----------Power Section ---------- */
.power {
  background-image: url("../imgs/8116\ 1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.power .container {
  padding: 40px 20px;
  color: #fff;
}
.power .powerText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  align-items: flex-start;
}
.power .powerText h2 {
  font-size: 2.625rem;
  font-weight: 600;
}
.power .powerText p {
  line-height: 24px;
  font-weight: 500;
  font-size: 20px;
}
.power .powerText a {
  color: #000;
}
/* *----------kits Section ---------- */
.kits {
  background-color: #f8f9fa;
}
.kits .container {
  padding: 15px;
}
.kits .container .title {
  text-align: center;
}
.kits .container .title h2 {
  font-size: 2.625rem;
  font-weight: 600;
}
.kits .container .title p {
  color: #475467;
  line-height: 24px;
  font-weight: 400;
  margin-top: 20px;
}
.kits .kitsCards {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.kits .kitsCards .card {
  width: 33.33%;
  padding-inline: 20px;
}
.kits .kitsCards .inner {
  background-color: #fff;
  padding: 15px 20px;
}

.kits .kitsCards .inner p {
  line-height: 24px;
  font-weight: 500;
  font-size: 15px;
  color: #475467;
  margin-block: 20px;
}
.kits .kitsCards .card a {
  color: var(--main-color);
  transition: color 0.3s ease;
  font-weight: 500;
}
.kits .kitsCards .card a:hover {
  color: purple;
}
.kits .kitsCards .card img {
  width: 100%;
}
/* *----------Repairs Section ---------- */
.repairs {
  background-image: url("../imgs/repairs.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.repairs .repairText {
  padding: 20px;
  color: #fff;
  text-align: center;
  background-color: rgba(13, 13, 13, 0.573);
  width: 60%;
  margin: auto;
  border-radius: 10px;
}
.repairs .repairText h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}
.repairs .repairText p {
  line-height: 24px;
  font-weight: 500;
}
/* *----------Energy Section ---------- */
.energy {
  background-color: antiquewhite;
}
.energy .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px;
}
.energy .left {
  width: 30%;
  padding: 20px;
}
.energy .left h2 {
  font-size: 1.875rem;
  font-weight: 600;
}
.energy .left p {
  line-height: 24px;
  font-weight: 500;
  color: #475467;
  margin-top: 10px;
}
.energy .right {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.energy .right .card {
  width: 47%;
  border-radius: 10px;
  border: 1px solid #d9ece1;
  background-color: #f5f8ef;
  padding: 20px;
}
.energy .right .card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 10px;
}
.energy .right .card p {
  line-height: 24px;
  font-weight: 500;
  color: #475467;
  margin-top: 10px;
}
.energy .right .card a {
  color: var(--main-color);
  transition: color 0.3s ease;
  font-weight: 500;
  margin-top: 10px;
}
.energy .right .card a:hover {
  color: purple;
}
.energy .right .card img {
  width: 100%;
  border-radius: 10px;
}
.energy .right .special {
  margin-top: 20px;
  margin-bottom: 10px;
}
/* *----------Values Section ---------- */
.values {
  background-color: #fff;
}
.kits .kitsCards .card .inner i {
  font-size: 2.5rem;
  color: var(--main-color);
  margin-bottom: 15px;
}
.kits .kitsCards .card.valueCard .inner {
  border: 1px solid var(--main-color);
  border-radius: 10px;
  background-color: #f5f8ef;
}
/* *----------What Section ---------- */
.what .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}
.what .textt {
  padding: 10px;

  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.what .textt h2 {
  font-size: 2.625rem;
  font-weight: 600;
}
.what .textt p {
  line-height: 24px;
  font-weight: 500;
  color: #475467;
}
.what .textt i {
  font-size: 2.625rem;
  color: var(--main-color);
}
.what .cardd {
  gap: 20px;
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  background-color: aliceblue;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
}
.what .cardd h5 {
  color: var(--main-color);
}
.what .cardd p {
  line-height: 24px;
  font-weight: 500;
}
.what .cardd .resky {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.what .cardd .resky .left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.what .cardd .resky .left img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
}
.what .cardd .resky .left h5 {
  font-size: 1rem;
  font-weight: 600;
}
.what .cardd .resky .left p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #475467;
}
.what .cardd .resky .right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.what .cardd .resky .right a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.what .cardd .resky .right i {
  font-size: 1.5rem;
  color: var(--main-color);
}
/* *----------Contact Section ---------- */
.contact {
  background-color: #283646;
  color: #fff;
}
.contact .container .one {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.contact .container .one .image img {
  width: 150px;
}
.contact .container .one .image ul {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
.contact .one .subscribe p {
  margin-bottom: 15px;
}
.contact .one .subscribe input {
  padding: 10px 20px;
  border-radius: 20px;
  color: #92989f;
  background-color: transparent;
  border: 1px solid #92989f;
}
.contact .one .subscribe input:focus {
  outline: none;
  border-color: var(--main-color);
}
.contact .one .subscribe {
  position: relative;
}
.contact .one .subscribe a {
  background-color: var(--secondary-color);
  padding: 10px 10px;
  border-radius: 20px;
  position: absolute;
  right: 0;
  top: 33px;
}
.contact .one {
  border-bottom: 1px solid #92989f;
  padding-bottom: 30px;
}
.contact .two {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact .two {
  color: #92989f;
}
.contact .two ul {
  display: flex;
  gap: 20px;
}
.contact .two ul li {
  border-right: 1px solid #92989f;
  padding-right: 10px;
}
/* !--------------Media Queries -------------- */
/* @media (max-width: 1199.98px) {  }
@media (max-width: 991.98px) {  }
@media (max-width: 767.98px) { } */
/* &----------Home Section ---------- */
@media (max-width: 575.98px) {
  .home h1 {
    font-size: 25px;
  }
  .home p {
    line-height: 20px;
    font-weight: 400;
    font-size: 15px;
  }
  .home .home-shape .line {
    width: 40%;
  }
  .btn {
    padding: 10px;
  }
  .home .home-btns {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* &----------Friendliest Section ---------- */
@media (max-width: 991.98px) {
  .friendliest .friendliest-text {
    margin: auto;
    width: 80%;
  }
  .friendliest .friendliest-img {
    margin: auto;
    width: 80%;
    margin-top: 50px;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .friendliest .friendliest-text {
    width: 100%;
  }
  .friendliest .friendliest-text h2 {
    font-size: 1.5625rem;
  }
  .friendliest .friendliest-text p {
    line-height: 20px;
    font-size: 12px;
  }
  .friendliest .friendliest-text ul li {
    font-size: 15px;
  }
  .friendliest .friendliest-text ul li p {
    font-weight: 500;
    line-height: 20px;
  }
  .friendliest .friendliest-img {
    margin: auto;
    width: 80%;
    margin-top: 50px;
    text-align: center;
  }
}

/* &----------power Section ---------- */
@media (max-width: 575.98px) {
  .power .powerText h2 {
    font-size: 1.875rem;
  }
  .power .powerText p {
    font-size: 15px;
  }
  .power .powerText a {
    font-size: 12px;
  }
}
/* &----------Kits Section ---------- */
@media (max-width: 991.98px) {
  .kits .kitsCards .card {
    width: 50%;

    margin-top: 30px;
  }
}

@media (max-width: 575.98px) {
  .kits .container .title h2 {
    font-size: 1.875rem;
  }
  .kits .container .title p {
    font-size: 12px;
    line-height: 20px;
    text-align: justify;
  }
  .kits .kitsCards .card {
    width: 100%;
    padding-inline: 20px;
    margin-top: 20px;
  }
  .kits .kitsCards .inner p {
    font-size: 12px;
  }
}
/* &----------Repairs Section ---------- */
@media (max-width: 767.98px) {
  .repairs .repairText {
    width: 100%;
  }
  .repairs .repairText h2 {
    font-size: 1.25rem;
  }
  .repairs .repairText p {
    font-size: 1rem;
  }
}
/* &----------Energy Section ---------- */
@media (max-width: 991.98px) {
  .energy .container {
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
  }
  .energy .left {
    width: 100%;
    margin-bottom: 30px;
  }
  .energy .right {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .energy .right {
    flex-direction: column;
  }
  .energy .right .card {
    width: 100%;
  }
}
/* &----------What  Section ---------- */
@media (max-width: 991.98px) {
  .what .textt {
    width: 100%;
  }
  .what .cardd {
    width: 100%;
    margin-top: 30px;
  }
  .what .cardd .resky .right {
    margin-top: 30px;
  }
  .what .textt h2 {
    font-size: 1.875rem;
    font-weight: 600;
  }
  .what .textt p {
    font-size: 1rem;
  }
  .what .cardd p {
    font-size: 0.875rem;
  }
}
/* &----------Contact  Section ---------- */

@media (max-width: 991.98px) {
  .contact .container .one {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .contact .container .one .image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact .container .one .image ul {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .contact .container .one .subscribe {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact .container .one .subscribe input {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .contact .container .two {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .contact .container .two ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }

  .contact .container .two p {
    text-align: center;
    margin-top: 10px;
  }
}

@media (max-width: 575.98px) {
  .contact .container .one .image ul {
    flex-direction: column;
    gap: 10px;
  }

  .contact .container .one .subscribe {
    padding: 0 15px;
  }

  .contact .container .two ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* &----------Nav bar ---------- */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .phoneNumber {
    display: none;
  }

  .navbar-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--main-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: left 0.3s ease;
  }

  .nav-toggle:checked ~ .navbar-links {
    left: 0;
  }
}

@media (max-width: 480px) {
  .navbar-logo {
    font-size: 1.2rem;
  }

  .hamburger {
    font-size: 1.2rem;
  }
}
