/* General Reset */
body, h1, h2, p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



 /* Promo Banner */
 .promo-banner {
  position: absolute;
  top: 10%;
  width: 100%;
  height: 7%;
  background-color: #4a6473;
  color: #fff;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  overflow: hidden; /* Ensures no scrollbar */
}

.promo-banner h2 {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 15s linear infinite;
  margin: 0; /* Remove any default margin to avoid shifting */
}

/* Scroll Left Animation */
@keyframes scroll-left {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}



/* service Section */
.service-section {
  background: url('../images/colse-up-solar-panels-sunset.jpg') no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.service-section h1 {
  font-size: 3rem;
  color: white;
  font-weight: bold;
  margin-top: 15%;
  margin-bottom: 5%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Content Section */
.content-section {
  background-color: #304e58;
  color: white;
  padding: 20px;
  text-align: center;
  width: 100%;
  opacity: 0.8;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #fdd835;
  margin-bottom: 15px;
}

.content-section p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;
  margin-left: 10%;
  margin-right: 10%;
}



/***** Section Styling *****/
.why-us-section {
  text-align: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 5%;
}

/***** Heading *****/
.why-us-section h1 {
  font-size: 2.7rem;
  color: #4a6473;
  margin-bottom: 35px;
}

/***** Features List *****/
.features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: justify;
  text-align: left; /* Left-align individual items */
  display: inline-block; /* Center the entire list block */
}

.features-list li {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.8;
  position: relative; /* Ensures pseudo-element works properly */
  padding-left: 25px; /* Adds space for the icon */
}

.features-list li strong {
  color: #d92527;
}

.features-list li span {
  color: #4da8da;
  font-size: 1.4rem;
  margin-right: 10px;
}

/***** Highlight Specific Word *****/
.features-list .highlight {
  display: inline-block;
  margin: 0 10px; /* Adds spacing around the word */
  text-align: center; /* Center-align the specific word */
  color: #d92527;
  font-weight: bold;
}

/***** Top and Bottom List Spacing *****/
.top-list {
  margin-bottom: 20px;
  margin-left: 15%;
  margin-right: 15%;
}

.bottom-list {
  margin-top: 20px;
}

/***** Image Container *****/
.image-container {
  position: relative;
  margin: 20px 0;
  text-align: center;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}


.why-choose-section {
    text-align: center;
    padding: 50px 20px;
  }
  
  .why-choose-section h2 {
    font-size: 2.5rem;
    color: #4a6473; /* Dark grey */
    margin-bottom: 20px;
  }
  
  .why-choose-section .intro-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #555555; /* Medium grey */
  }
  
  .why-choose-section .info-container {
    display: flex;
    justify-content: center;
    gap: 40px; /* Space between columns */
    flex-wrap: wrap; /* Wrap for small screens */
  }
  
  .why-choose-section .info-box {
    max-width: 600px;
    text-align: left; /* Align text to the left */
    font-size: 1.2rem;
    line-height: 1.8;
  }

  /*  */

  .experience-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    margin: 20px auto;
    position: relative;
}

.left-content {
    width: 60%; /* Takes up 60% of the container */
    padding-right: 20px;
    font-size: 1.1rem;
    word-spacing: 2px;
}

.left-content h2 {
    font-size: 1.8em;
    color: #2d7b8f; /* Dark teal */
    margin-bottom: 15px;
}

.left-content ul {
    list-style-type: none; /* Remove bullet points */
    padding-left: 0;
}

.left-content li {
    font-size: 1.2em;
    line-height: 1.6em;
    margin-bottom: 10px;
}

.left-content .highlight {
    color: #e53935; /* Red highlight */
    font-weight: bold;
}

.image-container{
    margin-left: 6%;
}


  /* solar needs starts */

  
  .solar-solutions {
    text-align: center;
    padding: 2rem;
  }
  
  .solar-solutions h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #4a6473;
  }
  
  .solutions-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .solution {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    max-width: 400px;
    flex: 1 1 30%;
  }
  
  .solution img {
    width: 100%;
    height: 400px;
    display: block;
  }
  
  .solution h2 {
    font-size: 2rem;
    margin: 1rem 0 0.5rem;
  }
  
  .solution p {
    padding: 0 1rem 1rem;
    font-size: 1.1rem;
    text-align: justify;
  }

  /* For 1000px and below */
@media (max-width: 1000px) {
  .solar-solutions h1 {
    font-size: 1.8rem;
  }

  .solutions-container {
    gap: 1.5rem;
  }

  .solution {
    flex: 1 1 45%; /* Two columns layout */
  }

  .solution img {
    height: 350px; /* Adjust height */
  }

  .solution p {
    font-size: 1rem;
  }
}

/* For 900px and below */
@media (max-width: 900px) {
  .solar-solutions h1 {
    font-size: 1.6rem;
  }

  .solution img {
    height: 300px;
  }

  .solution p {
    font-size: 0.9rem;
  }
}

/* For 800px and below */
@media (max-width: 800px) {
  .solutions-container {
    gap: 1rem;
  }

  .solution {
    flex: 1 1 100%; /* Switch to one column layout */
    max-width: 90%;
    margin: 0 auto;
  }

  .solution img {
    height: 250px;
  }
}

/* For 700px and below */
@media (max-width: 700px) {
  .solar-solutions h1 {
    font-size: 1.4rem;
  }

  .solution img {
    height: 220px;
  }

  .solution p {
    font-size: 0.8rem;
  }
}

/* For 600px and below */
@media (max-width: 600px) {
  .solutions-container {
    flex-direction: column; /* Stack vertically */
    gap: 1rem;
  }

  .solution {
    max-width: 95%; /* Reduce width slightly */
  }

  .solution img {
    height: 200px;
  }

  .solution h2 {
    font-size: 1.3rem;
  }

  .solution p {
    font-size: 0.8rem;
    padding: 0 0.5rem 0.5rem;
  }
}

/* For 500px and below */
@media (max-width: 500px) {
  .solar-solutions h1 {
    font-size: 1.2rem;
  }

  .solution img {
    height: 180px;
  }

  .solution h2 {
    font-size: 0.95rem;
  }

  .solution p {
    font-size: 0.75rem;
  }
}

/* For 400px and below */
@media (max-width: 400px) {
  .solar-solutions h1 {
    font-size: 1rem;
  }

  .solution img {
    height: 160px;
  }

  .solution h2 {
    font-size: 1rem;
  }

  .solution p {
    font-size: 0.7rem;
  }
}

/* For 300px and below */
@media (max-width: 300px) {
  .solar-solutions h1 {
    font-size: 0.9rem;
  }

  .solution img {
    height: 140px;
  }

  .solution h2 {
    font-size: 0.95rem;
  }

  .solution p {
    font-size: 0.65rem;
  }
}

/* For 200px and below */
@media (max-width: 200px) {
  .solar-solutions h1 {
    font-size: 0.8rem;
  }

  .solution img {
    height: 120px;
  }

  .solution h2 {
    font-size: 0.75rem;
  }

  .solution p {
    font-size: 0.55rem;
  }
}

/* For 100px and below */
@media (max-width: 100px) {
  .solar-solutions h1 {
    font-size: 0.7rem;
  }

  .solution img {
    height: 100px;
  }

  .solution h2 {
    font-size: 0.7rem;
  }

  .solution p {
    font-size: 0.5rem;
  }
}


  <!--  -->

  .six-reasons-section {
    padding: 50px 20px;
    font-family: Arial, sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .six-reasons-section h2 {
    font-size: 3rem;
    color: red;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #bbb6b6;
  }
  
  .intro-text {
    font-size: 1.2rem;
    color: #555;
    }
  
  .reasons-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .reason {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }
  
  .reason-number {
    background-color: #e0e7ff;
    color: #4a4a8c;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    flex-shrink: 0;
    width: 60px;
  }
  
  .reason-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .reason-content p {
    font-size: 1rem;
    color: #555;
    margin: 0;
  }
  
  @media (min-width: 768px) {
    .reasons-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
  }
  
  @media (min-width: 1024px) {
    .reasons-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }



.checklist1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.checklist1 img {
  width: 32%;
  height: auto;
  border: none;
}

/* Media query for smaller screens */
@media screen and (max-width: 1224px) {
  .checklist1 img {
    width: 40%; /* Adjust width to fit two items per row */
  }
}

@media screen and (max-width: 990px) {
  .checklist1 img {
    width: 45%; /* Adjust width to fit one item per row */
  }
}

@media screen and (max-width: 660px) {
  .checklist1 img {
    width: 60%; /* Further adjust for very small screens */
  }
}


@media screen and (max-width: 480px) {
  .checklist1 img {
    width: 80%; /* Further adjust for very small screens */
  }
}




 
  
  .content {
    text-align: center;
    max-width: 900px;
  }
  
  .content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white; /* Bright text color */
  }
  
  .content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    margin-left: 40px;
    color: white;
  }
  
  
  .cta-button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #6466f1; /* Button color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .cta-button:hover {
    background-color: #494acc; /* Hover effect */
  }
  

  /* partner section starts */

  
  .partners-section {
    text-align: center;
    padding: 40px 20px;
  }
  
  .partners-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #4a6473;
  }
  
  .slider {
    position: relative;
    overflow: hidden;
    max-width: 80%;
    margin: 0 auto;
  }
  
  .slide {
    display: none;
    text-align: center;
  }
  
  .slide.active {
    display: block;
  }
  
  .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .logos img {
    max-width: 200px;
    max-height: 160px;
    object-fit: contain;
    border-radius: 0; /* Remove rounded corners */
    box-shadow: none; /* Remove shadow */
    background: transparent; /* Ensure no background color */
  }

  .our img {
    max-width: 200px;
    max-height: 160px;
    object-fit: contain;
    border-radius: 0; /* Remove rounded corners */
    box-shadow: none; /* Remove shadow */
    background: transparent; /* Ensure no background color */
  }
  
  
  .controls {
    margin-top: 20px;
  }
  
  button {
    background: #6466f1;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px;
  }
  
  button:hover {
    background: #494acc;
  }

  @media (max-width: 1000px) {
    .logos img, .our img {
      max-width: 190px;
      max-height: 170px;
    }
    .logos, .our {
      gap: 16px;
    }
  }
  
  @media (max-width: 900px) {
    .logos img, .our img {
      max-width: 170px;
      max-height: 150px;
    }
    .logos, .our {
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 14px;
    }
  }
  
  @media (max-width: 800px) {
    .logos img, .our img {
      max-width: 150px;
      max-height: 130px;
    }
    .logos, .our {
      gap: 12px;
    }
  }
  
  @media (max-width: 700px) {
    .logos img, .our img {
      max-width: 130px;
      max-height: 120px;
    }
  }
  
  @media (max-width: 600px) {
    .logos img, .our img {
      max-width: 120px;
      max-height: 110px;
    }
  }
  
  @media (max-width: 500px) {
    .logos img, .our img {
      max-width: 120px;
      max-height: 100px;
    }
    .logos, .our {
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
  }
  
  @media (max-width: 400px) {
    .logos img, .our img {
      max-width: 100px;
      max-height: 90px;
    }
  }
  
  @media (max-width: 300px) {
    .logos img, .our img {
      max-width: 90px;
      max-height: 80px;
    }
  }
  
  @media (max-width: 200px) {
    .logos img, .our img {
      max-width: 80px;
      max-height: 70px;
    }
  }
  
  @media (max-width: 100px) {
    .logos img, .our img {
      max-width: 70px;
      max-height: 60px;
    }
  }
  


  /* partner section ends */


 /* what we provide starts */

 /* Main Container */
.sre-solar-package {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: #3b758d;
}

.sre-title {
  text-align: center;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
}

.sre-subtitle {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Tables */
.sre-pricing-table, 
.sre-capacity-table,
.sre-savings-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  table-layout: fixed; /* Prevents overflow */
  font-size: 19px;
}

.sre-pricing-table th,
.sre-pricing-table td{
  padding: 10px;
  text-align: center;
  background-color: #93c6a0;
  border: 1px solid black;
}

.sre-capacity-table th,
.sre-capacity-table td {
  padding: 10px;
  text-align: center;
  background-color: #93c6a0;
  border: 1px solid #ddd;
}

.sre-savings-table th,
.sre-savings-table td {
  padding: 10px;
  text-align: center;
  background-color: #93c6a0;
  border: 1px solid #ddd;
}


.sre-pricing-table th,
.sre-capacity-table th,
.sre-savings-table th {
  background-color: #f7c59a;
  color: white;
  text-align: center;
}

/* Media Queries */
@media (max-width: 1024px) {
  .sre-solar-package {
      width: 100%;
  }

  .sre-pricing-table,
  .sre-capacity-table,
  .sre-savings-table {
      width: 100%;
      overflow-x: auto;
      display: block;
  }

  .sre-pricing-table th,
  .sre-pricing-table td,
  .sre-capacity-table th,
  .sre-capacity-table td,
  .sre-savings-table th,
  .sre-savings-table td {
      font-size: 19px;
  }
}

@media (max-width: 768px) {
  .sre-solar-package {
      padding: 10px;
  }

  .sre-pricing-table th,
  .sre-pricing-table td,
  .sre-capacity-table th,
  .sre-capacity-table td,
  .sre-savings-table th,
  .sre-savings-table td {
      font-size: 17px;
  }
}

@media (max-width: 480px) {
  .sre-solar-package {
      padding: 5px;
  }

  .sre-pricing-table th,
  .sre-pricing-table td,
  .sre-capacity-table th,
  .sre-capacity-table td,
  .sre-savings-table th,
  .sre-savings-table td {
      font-size: 15px;
  }
}


/* Default styling */
.scroll-container {
  overflow-x: auto; /* Enables horizontal scrolling */
  white-space: nowrap; /* Prevents image wrapping */
  width: 100%;
  height: auto;
}

.scroll-container img {
  display: block;
  max-width: none; /* Prevents the image from shrinking */
  height: auto;
}

/* Media query for small screens */
@media screen and (max-width: 768px) {
  .scroll-container {
    overflow-x: scroll; /* Activates scrolling on smaller screens */
  }

  .scroll-container img {
    width: auto; /* Ensures the image retains its full width */
  }
}



/* what we provide ends */