@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@font-face {
  font-family: "Akazan";
  src: url(../Fonts/Akazan.ttf);
}

/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
  font-family: "Inter", serif;
}

img {
  display: block;
  max-width: 100%;
}

/* Base Styles */
.body nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 3rem; /* 12px */
  background-color: #0b9586;
}

.body nav .logo {
  background-color: rgba(4, 85, 76, 0.541);
  padding: 0.625rem 0; /* 10px */
}

.body nav .logo img {
  mix-blend-mode: multiply;
  width: 9.8125rem; /* 157px */
  height: 2.1875rem; /* 35px */
}

.body nav .links {
  width: auto;
}

.body nav .links ul {
  display: flex;
  list-style: none;
  justify-content: space-around;
  padding: 0.75rem 0; /* 12px */
}

.body nav .links ul li a {
  text-decoration: none;
  color: #fff;
  padding: 0.3125rem 0.9375rem; /* 5px 15px */
  font-weight: 400;
  font-size: 1rem; /* 16px */
}

.body nav .links ul li a:hover {
  font-weight: 600;
  background-color: rgba(4, 85, 76, 0.541);
  border-bottom: solid 0.1875rem rgba(4, 85, 76, 0.541); /* 3px */
  border-radius: 0.3125rem; /* 5px */
}

.body nav .contact {
  color: #fff;
}

.body nav .contact span {
  display: flex;
  flex-direction: row-reverse;
}

/* Hamburger Menu (Hidden by Default) */
.menu-icon {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .body nav {
    flex-wrap: wrap;
    padding: 0.75rem;
  }

  .menu-icon {
    display: block;
  }

  .body nav .links {
    width: 100%;
    display: none;
  }

  .body nav .links ul {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .body nav .links ul li {
    margin: 0.5rem 0;
  }

  .body nav .contact {
    display: none;
  }

  /* Show Menu When Checkbox is Checked */
  #menu-toggle:checked ~ .links {
    display: block;
  }
}

@media (max-width: 480px) {
  .body nav .logo img {
    width: 7rem; /* Adjust logo size for smaller screens */
    height: auto;
  }
}

/* Base Styles */
.body .home {
  background-image: url(../images/solar-panels-meadow\ 1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* Ensure the background image covers the entire section */
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 5rem; /* 80px */
  justify-content: center;
  min-height: 100vh; /* Ensure the section takes at least the full viewport height */
}

.body .home .main {
  width: 50%;
  padding: 5.375rem 0; /* 86px */
}

.body .home .main h1 {
  font-size: 3.25rem; /* 52px */
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem; /* Add spacing below the heading */
}

.body .home .main p {
  color: #fff;
  font-size: 1.25rem; /* 20px */
  line-height: 1.875rem; /* 30px */
  margin-bottom: 2rem; /* Add spacing below the paragraph */
}

.body .home .slider {
  width: 22%;
  display: flex;
  justify-content: space-between;
  margin-top: 2rem; /* Add spacing above the slider */
}

.home .slider span {
  color: #fff;
  position: relative;
}

.slider .progress {
  position: relative;
  display: block;
}

.slider .progress::after {
  content: "";
  position: absolute;
  width: 13.125rem; /* 210px */
  height: 0.3125rem; /* 5px */
  background-color: #575757;
  left: 125%; /* 25px */
  top: 0.625rem; /* 10px */
}

.slider .progress::before {
  content: "";
  position: absolute;
  width: 6.5625rem; /* 105px */
  height: 0.3125rem; /* 5px */
  background-color: #fff;
  left: 120%; /* 25px */
  top: 0.625rem; /* 10px */
  z-index: 1;
}

.home .btns {
  margin-top: 1.875rem; /* 30px */
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  gap: 1rem; /* Add spacing between buttons */
}

.btn {
  padding: 0.75rem 2.125rem; /* 12px 34px */
  border-radius: 6.8125rem; /* 109px */
  border: none;
  cursor: pointer;
}

.btn a {
  text-decoration: none;
  font-size: 1rem; /* 16px */
}

.green {
  background-color: #3CAB90;
  color: #fff;
}

.orange {
  background-color: #FFBB1C;
  color: #000;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .body .home {
    padding: 3rem; /* Reduce padding for smaller screens */
  }

  .body .home .main {
    width: 70%; /* Increase width for better readability */
  }

  .body .home .main h1 {
    font-size: 2.5rem; /* 40px */
  }

  .body .home .main p {
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
  }

  .body .home .slider {
    width: 30%; /* Adjust slider width */
  }
}

@media (max-width: 768px) {
  .body .home {
    padding: 2rem; 
  }

  .body .home .main {
    width: 90%; /* Increase width for better readability */
    padding: 3rem 0; 
  }

  .body .home .main h1 {
    font-size: 2rem; /* 32px */
  }

  .body .home .main p {
    font-size: 1rem; /* 16px */
    line-height: 1.5rem; /* 24px */
  }

  .body .home .slider {
    width: 40%; /* Adjust slider width */
  }

  .slider .progress::after {
    width: 10rem; /* 160px */
  }

  .slider .progress::before {
    width: 5rem; /* 80px */
  }
}

@media (max-width: 480px) {
  .body .home {
    padding: 1.5rem; 
  }

  .body .home .main {
    width: 100%; /* Full width for small screens */
    padding: 2rem 0; 
  }

  .body .home .main h1 {
    font-size: 1.75rem; /* 28px */
  }

  .body .home .main p {
    font-size: 0.875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
  }

  .body .home .slider {
    width: 60%; /* Adjust slider width */
  }

  .slider .progress::after {
    width: 8rem; /* 128px */
  }

  .slider .progress::before {
    width: 4rem; /* 64px */
  }

  .home .btns {
    flex-direction: column; /* Stack buttons vertically */
    gap: 0.5rem; /* Reduce spacing between buttons */
  }

  .btn {
    width: 100%; /* Full-width buttons */
    text-align: center;
  }
}
/* Base Styles */
.body .info {
  display: flex;
  padding: 5rem; /* 80px */
  justify-content: space-between;
  flex-wrap: wrap; /* Allow elements to wrap on smaller screens */
}

.info .caption {
  width: 50%;
}

.h3 {
  font-size: 2.625rem; /* 42px */
  margin-bottom: 1.5rem; /* Add spacing below the heading */
}

.black {
  color: #101828;
}

.TXTgreen {
  color: #3CAB90;
}

.white {
  color: #fff;
}

.info .caption p {
  color: #475467;
  font-size: 1rem; /* 16px */
  line-height: 1.5rem; /* 24px */
  font-weight: 400;
  margin-bottom: 1.5rem; /* Add spacing below the paragraph */
}

.info .caption .pros {
  display: flex;
  margin: 0.625rem 0; /* 10px */
  align-items: center; /* Align items vertically */
}

.info .caption .pros span {
  color: #84BD3A;
  margin-right: 0.625rem; /* 10px */
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
}

.info .caption .pros h4 {
  font-size: 1rem; /* 16px */
  color: #475467;
  margin: 0;
}

.info .photo {
  position: relative;
  width: 45%; /* Adjust width for better alignment */
}

.info .photo img {
  width: 100%;
  border-radius: 0.625rem; /* 10px */
}

.info .photo .overlay {
  background-color: #FFBB1C;
  width: 50%;
  padding: 1.25rem; /* 20px */
  border-radius: 0.625rem; /* 10px */
  position: absolute;
  bottom: 1.25rem; /* 20px */
  left: -2.5rem; /* -40px */
}

.info .photo .overlay img {
  width: 6.25rem; /* 100px */
  margin-bottom: 0.625rem; /* 10px */
}

.info .photo .overlay p {
  font-family: "Akazan";
  font-size: 1.125rem; /* 18px */
  font-weight: 400;
  color: #000;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .body .info {
    padding: 3rem; /* Reduce padding for smaller screens */
  }

  .info .caption {
    width: 60%; /* Adjust width for better readability */
  }

  .info .photo {
    width: 35%; /* Adjust width for better alignment */
  }

  .h3 {
    font-size: 2rem; /* 32px */
  }

  .info .caption p {
    font-size: 0.875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
  }

  .info .caption .pros span {
    font-size: 1rem; /* 16px */
  }

  .info .caption .pros h4 {
    font-size: 0.875rem; /* 14px */
  }

  .info .photo .overlay {
    width: 60%;
    left: -1.5rem; /* Adjust position */
  }
}

@media (max-width: 768px) {
  .body .info {
    padding: 2rem; 
    flex-direction: column; /* Stack elements vertically */
  }

  .info .caption {
    width: 100%; /* Full width for smaller screens */
    margin-bottom: 2rem; /* Add spacing below the caption */
  }

  .info .photo {
    width: 100%; }

  .h3 {
    font-size: 1.75rem; /* 28px */
  }

  .info .caption p {
    font-size: 0.875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
  }

  .info .caption .pros span {
    font-size: 0.875rem; /* 14px */
  }

  .info .caption .pros h4 {
    font-size: 0.875rem; /* 14px */
  }

  .info .photo .overlay {
    width: 50%;
    left: 0; /* Reset position */
    bottom: 0.625rem; /* 10px */
  }
}

@media (max-width: 480px) {
  .body .info {
    padding: 1.5rem; 
  }

  .h3 {
    font-size: 1.5rem; /* 24px */
  }

  .info .caption p {
    font-size: 0.75rem; /* 12px */
    line-height: 1.125rem; /* 18px */
  }

  .info .caption .pros span {
    font-size: 0.75rem; /* 12px */
  }

  .info .caption .pros h4 {
    font-size: 0.75rem; /* 12px */
  }

  .info .photo .overlay {
    width: 70%;
    padding: 1rem; /* 16px */
    bottom: 0.625rem; /* 10px */
  }

  .info .photo .overlay img {
    width: 5rem; /* 80px */
  }

  .info .photo .overlay p {
    font-size: 0.875rem; /* 14px */
  }
}

.body .callus {
  background-image: url(../images/8116\ 1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 1.25rem 5rem;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: left;
  text-align: left;
}

.body .callus .details {
  max-width: 600px;
}

.body .callus .details p {
  margin: 1.25rem auto;
  width: 100%;
}

.body .solar {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 5rem 2rem;
}

.solar .kits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.solar .kits .kit {
  width: 32%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}

.solar p {
  text-align: center;
  width: 100%;
  font-weight: 400;
  font-size: 1rem;
  margin: 0.9375rem 0;
}

.view button {
  border: none;
  background-color: #fff;
  cursor: pointer;
}

.view button i {
  margin-left: 0.3125rem;
}

/* Responsive Design */

@media (max-width: 1024px) {
  .body .callus {
    padding: 1.25rem 3rem;
  }
  
  .solar .kits .kit {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .body .callus {
    flex-direction: column;
    padding: 2rem;
    height: auto;

  }

  .body .callus .details {
    text-align: center;
    width: 100%;
  }

  .solar {
    padding: 3rem 1.5rem;
  }

  .solar .kits {
    flex-direction: column;
    align-items: center;
  }

  .solar .kits .kit {
    width: 80%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .body .callus {
    padding: 1.5rem;
  }

  .body .callus .details h3 {
    font-size: 1.5rem;
  }

  .body .callus .details p {
    font-size: 0.875rem;
  }

  .solar {
    padding: 2rem 1rem;
  }

  .solar .kits .kit {
    width: 100%;
  }

  .view button {
    font-size: 0.875rem;
  }
}


.body .repairs {
  padding: 6.875rem 5rem; /* 110px 80px */
  background: url(../images/8116\ 1\ \(1\).png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.repairs .content {
  padding: 3.125rem; /* 50px */
  width: 60%;
  max-width: 800px;
  border-radius: 0.625rem; /* 10px */
  color: #fff;
  background-color: rgba(0, 0, 0, 0.57);
  backdrop-filter: blur(15px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .body .repairs {
    padding: 5rem 3rem; 
  }

  .repairs .content {
    width: 75%;
  }
}

@media (max-width: 768px) {
  .body .repairs {
    padding: 4rem 2rem;
  }

  .repairs .content {
    width: 90%;
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .body .repairs {
    padding: 3rem 1.5rem;
  }

  .repairs .content {
    width: 100%;
    padding: 1.5rem;
  }

  .repairs .content h3 {
    font-size: 1.5rem;
  }

  .repairs .content p {
    font-size: 0.875rem;
  }
}
/* Base styles for all screen sizes */
.body .energy,
.body .sayAbout {
  display: flex;
  padding: 5rem; /* 80px */
  justify-content: space-around;
  flex-wrap: wrap; 
}

.energy .main,
.sayAbout .main {
  width: 30%;
  padding: 1.25rem 0; /* 20px */
}

.energy .main .icon {
  width: 3.75rem; /* 60px */
  border-radius: 0.9375rem; /* 15px */
  box-shadow: 0 0 0.3125rem 0.625rem rgba(60, 171, 143, 0.15); /* 0px 0px 5px 10px */
  padding: 0.625rem; /* 10px */
  margin-bottom: 0.625rem; /* 10px */
}

.energy .main .icon img {
  width: 100%;
}

.body .gallery {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.gallery .item {
  width: 48%;
  padding: 1.5rem; /* 24px */
  border: 0.0625rem solid #3CAB90; /* 1px */
  background-color: #3CAB900D;
  border-radius: 0.75rem; /* 12px */
  margin-bottom: 1.25rem; /* 20px */
}

.item .logo {
  background-color: #3CAB9026;
  padding: 0.625rem 0; /* 10px */
  display: flex;
  justify-content: center;
  border-radius: 0.75rem; /* 12px */
}

.gallery .item img {
  mix-blend-mode: multiply;
}

.gallery .item h4 {
  font-size: 1.25rem; /* 20px */
  margin-top: 1.25rem; /* 20px */
}

.body .Ourvalues {
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 5rem; /* 80px */
}

.Ourvalues .values {
  display: flex;
  justify-content: space-around;
  margin-top: 1.875rem; /* 30px */
  flex-wrap: wrap;
}

.Ourvalues .values .value {
  width: 30%;
  text-align: left;
  padding: 1.25rem; /* 20px */
  border: 0.0625rem solid #3CAB90; /* 1px */
  background-color: #3CAB900D;
  border-radius: 0.75rem; /* 12px */
}

.Ourvalues .values .value h3 {
  margin-top: 0.625rem; /* 10px */
}


@media (max-width: 1024px) {
  .body .energy,
  .body .sayAbout {
    padding: 3rem; 
  }
  .energy .main .icon{
    display: flex;
    margin-left: 40%;
  }

  .energy .main,
  .sayAbout .main {
    width: 45%; 
    text-align: left;
  
  }
 
  .body .gallery {
    width: 100%; 
  }

  .gallery .item {
    width:48%; }

  .Ourvalues .values .value {
    width: 40%; 
    margin-bottom: 1.25rem; 
  }
}

/* For mobile devices */
@media (max-width: 768px) {
  .body .energy,
  .body .sayAbout {
    padding: 2rem; 
    flex-direction: column;
  }

  .energy .main,
  .sayAbout .main {
    width: 100%; 
    text-align: center; 
  }

  .energy .main .icon {
    margin: 0 auto 0.625rem;  
  }

  .body .gallery {
    width: 100%; 
  }

  .gallery .item {
    width: 100%; 
  }


  .body .Ourvalues{
    padding:1.5rem;
  }
  .Ourvalues .values {
    flex-direction: column; 
    padding: 0;
  }

  .Ourvalues .values .value {
    width: 100%; 
    margin-bottom: 1.25rem; 
  }
}

/* Base styles for all screen sizes */
.sayAbout .main .icon {
  background-color: #fff;
}

.sayAbout .main h3 {
  margin: 0.9375rem 0; /* 15px */
}

.sayAbout .say {
  width: 50%;
  padding: 1.875rem; /* 30px */
  background-color: #3CAB900F;
  border-radius: 1.5rem; /* 24px */
}

.sayAbout .say .title {
  display: flex;
  justify-content: space-between;
}

.sayAbout .say .title {
  font-size: 1rem; /* 16px */
  font-weight: 700;
}

.sayAbout .say p {
  font-size: 1.5rem; /* 24px */
  line-height: 2.25rem; /* 36px */
  font-weight: 400;
  margin-top: 1.25rem; /* 20px */
}

.sayAbout .dots {
  display: flex;
}

.sayAbout .dots .dot {
  width: 0.5rem; /* 8px */
  height: 0.5rem; /* 8px */
  margin-right: 0.3125rem; /* 5px */
  border-radius: 50%;
  background-color: #D9D9D9;
}

.sayAbout .dots .black {
  background-color: #000;
}

.sayAbout .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3.125rem; /* 50px */
}

.sayAbout .footer .left {
  display: flex;
  align-items: center;
}

.sayAbout .footer .left img {
  margin-right: 0.9375rem; /* 15px */
}

.sayAbout .footer .right {
  display: flex;
}

.sayAbout .footer .right .arrow {
  margin-right: 1.25rem; /* 20px */
  border: 0.0625rem solid #000; /* 1px */
  width: 2rem; /* 32px */
  height: 2rem; /* 32px */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer .right .arrow span {
  font-size: 1.5rem; /* 24px */
  font-weight: 500;
}

footer {
  background-color: #283646;
  padding: 5rem; /* 80px */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: left;
}

.footer-right p {
  color: #fff;
  margin-bottom: 0.625rem; /* 10px */
}

.footer-logo {
  width: 11.5625rem; /* 185px */
  height: auto;
  display: inline-block;
}

.footer-container .links ul {
  list-style: none;
  padding: 0;
  display: flex;
  margin-top: 1.25rem; /* 20px */
}

.links ul li {
  display: inline;
  margin-right: 0.9375rem; /* 15px */
}

.links ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
}

.footer-center ul li a:hover {
  text-decoration: underline;
}

.subscribe-form {
  display: flex;
  align-items: center;
  background: rgba(179, 189, 199, 0.4);
  border-radius: 1.25rem; /* 20px */
  border: 0.0625rem solid #B3BDC7; /* 1px */
}

.subscribe-form input {
  border: none;
  padding: 0.625rem; /* 10px */
  flex-grow: 1;
  font-size: 0.875rem; /* 14px */
  background-color: transparent;
  color: #fff;
}

.subscribe-form input::placeholder {
  color: #92989F;
}

.subscribe-form button {
  background-color: #fdb913;
  border: none;
  padding: 0.9375rem 1.5625rem; /* 15px 25px */
  color: #ffffff;
  font-weight: 400;
  cursor: pointer;
  border-radius: 1.25rem; /* 20px */
  height: 100%;
}

.subscribe-form button:hover {
  background-color: #e0a400;
}

hr {
  border: 0.0625rem solid #afb1b421; /* 1px */
  margin: 1.25rem 0; /* 20px */
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem; /* 14px */
}

.footer-links a {
  color: #92989F;
  text-decoration: none;
  margin-right: 0.9375rem; /* 15px */
}

.footer-bottom p {
  color: #92989F;
}

.footer-links a:hover {
  text-decoration: underline;
}


/* For tablets and smaller desktops */
@media (max-width: 1024px) {
  .sayAbout .main{
    text-align: center; 
    width: 60%;
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 10px;
    border:#3CAB90 solid 1px;
  }
  .sayAbout .say {
    width: 70%; /
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    margin-bottom: 1.875rem; /* 30px */
  }

  .footer-container .links ul {
    flex-wrap: wrap;
  }

  .links ul li {
    margin-bottom: 0.625rem; /* 10px */
  }
}

/* For mobile devices */
@media (max-width: 768px) {
  .sayAbout .main {
    text-align: center; 
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 10px;
    border:#3CAB90 solid 1px;
    width: 100%;

  }

  .sayAbout .say {
    width: 100%; 
   
    
  }

  .sayAbout .say p {
    font-size: 1.25rem; /* 20px */
    line-height: 1.875rem; /* 30px */
  }

  .sayAbout .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }

  .sayAbout .footer .left {
    margin-bottom: 1.25rem;
    width: 100%; /* 20px */
  }

  .footer {
    padding: 2.5rem; /* 40px */
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;

  }

  .footer-bottom p {
    margin-top: 1.25rem; /* 20px */
  }
  .subscribe-form input{
    width: 100px;
  }
  .subscribe-form button{
    padding: 10px 5px;
  
  }
}