:root{
  --primarycolor: #0c63b3;
  --primaryfont:4em;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'Dessau Bold';
  src:  url('./font/dessau-bold-regular.ttf') format('truetype');
  font-weight: bold;
}
*{
  margin: 0;
 padding: 0;
 box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #f6f6fe;
}
.top-bar {
  background-color:var(--primarycolor);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-info a{
  text-decoration: none;
  color: white;
}
.contact-info i {
  margin-right: 5px;
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-icons a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

/* navbar */
header {
  background-color: #ffffff; /* Light grey background for the header */
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 20px;
  border-bottom: 1px solid #ccc; /* Optional: Bottom border for separation */
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px; /* Adjust as needed */
  align-items: center;
  margin-right: 10px;
}
.logo span{
  font-size: 2rem;
   color: rgb(255, 0, 0);
    font-family: 'Dessau Bold', sans-serif;
 position: relative;
 top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  margin: 0 15px;
  font-size: 14px;
}

.nav-links1 {
  display: flex;
  align-items: center;
}

.nav-links1 a {
  text-decoration: none;
  color: #333;
  margin: 0 15px;
  font-size: 14px;
}

.action-buttons {
  display: flex;
  align-items: center;
  height: 50px;
}

.action-buttons a {
  text-decoration: none;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 400;
  color: rgb(255, 138, 0);
  margin: 0 10px;
  font-size: 14px;
  background-color: #fff; /* White background for buttons */
}
.action-buttons a :hover{
  color: #0057b3;
}
.partner-logo img {
  height: 30px; /* Adjust as needed */
}
.enquire-button{
  display: flex;
  align-items: center;
  justify-content: center;
}
.enquire-button img{ 
position: relative;
left: 15px;
}
.enquire-button i{
position: relative;
left: 20px;
font-size: 25px;
}
.explore-button{
  display: flex;
  align-items: center;
  justify-content: center;
}
.explore-button img{ 
position: relative;
left: 15px;
}
.explore-button i{
position: relative;
left: 20px;
font-size: 25px;
}

/* hero-section */
.container {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./images/home-background.png'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  filter: brightness(80%); /* Adjust brightness as needed */
}

.content {
  position: absolute;
  top:15%;
  left: 5%;
  text-align: left;
  color: white;
  z-index: 1; /* Ensure content is on top */
  padding: 20px;
}
.content img{
  height: 70px;
}

.experience {
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.title {
  font-size: var(--primaryfont);
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.5em;
  margin-top: 10px;
  color: #ffa229;
  margin-bottom: 10px;
}

.button {
  background-color: #FFA500; /* Orange color */
  color: white;
  padding: 15px 65px;
  border: none;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  margin-top: 10px;
  transition: 0.5s;
}
.button:hover{
  background-color: #0059ff; /* Orange color */
  color: white;
  padding: 15px 65px;
  border: none;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  margin-top: 10px;
}
/* 
about-section */

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.text-section {
  width: 50%;
}

.text-section h2 {
  color: #0056b3;
  font-size: 2rem;
  padding: 2rem 0;
}

.text-section p {
  font-size: 1.3rem;
  line-height: 1.6;
}

.text-section span {
  color: #ff7f27;
  font-size: 2rem;
  font-weight: bold;
}

.image-section {
  width: 45%;
}

.image-section img {
  width: 100%;
  border-radius: 8px;
}

/* Tablet Devices (up to 1024px) */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text-section,
  .image-section {
    width: 100%;
  }

  .text-section h2 {
    font-size: 1.8rem;
  }

  .text-section span {
    font-size: 1.6rem;
  }

  .text-section p {
    font-size: 1.2rem;
  }
}

/* Mobile Devices (up to 600px) */
@media (max-width: 600px) {
  .about-container {
    padding: 20px;
  }

  .text-section h2 {
    font-size: 1.5rem;
    padding: 1.5rem 0;
  }

  .text-section span {
    font-size: 1.4rem;
  }

  .text-section p {
    font-size: 1rem;
  }
}

/* section-2 */
.section2-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0056b3;
  padding: 100px;
  
}
.text-section2 {
  width: 50%;
}
.text-section2 h2 {
  color: #0056b3;
  font-size: 2rem;
  padding: 2rem 0;
}
.text-section2 p {
  font-size:1.3rem;
  line-height: 1.6;
  max-width: 500px;
  text-align: left;
  padding-top: 25px;
  color: white;
}
.text-section2 h1{
  color: #ffffff;
  font-size:2rem;
  font-weight: bold;
  text-align: center;
}
.image-section2 {
  width: 45%;
}
.image-section2 img {
  width: 100%;
  border-radius: 8px;
}

.yellowhighlight{
  color: #ffe600;
}

/* section-3 */
.section3-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px;
  background-image: url('./images/parallax-5.png'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
}
.text-section3 {
  width: 50%;
}

.text-section3 p {
  font-size:1.3rem;
  line-height: 1.6;
  max-width: 500px;
  text-align: left;
  padding-top: 25px;
  color: white;
}
.text-section3 h1{
  color: #ffffff;
  font-size:2rem;
  font-weight: bold;
  text-align: center;
}
.image-section3 {
  width: 45%;
}
.image-section3 img {
  width: 100%;
  border-radius: 8px;
}
.yellowhighlight{
  color: #ffe600;
}



/* plans-section */
.plan-section{
  background-color: #f6f6fe;
}
.plan-h2{
  color: #0056b3;
  margin: 50px 0;
  text-align: center;
  font-size:2em ;
}
.plans-container {
   background: #f6f6fe;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
}
.plan-card {
  background: white;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 380px;
  text-align: left;
}
.plan-card h3 {
  color: #0056b3;
}
.plan-card p {
  margin: 5px 0;
  font-size: 14px;
}
.btn {
  display: block;
  background: #0056b3;
  color: white;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
}
.more-btn-container {
  text-align: right;
  padding-right: 19%; /* Adjust as needed */
}

.more-btn {
  display: inline-block;
  background: #ff7f3f;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 20px;
}

/* review */
/* review */
.review-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 70vh;
  font-family: Arial, sans-serif;
  padding: 40px 20px;
  text-align: center;
  background-image: url('./images/MIT-PPA-1-Press_solar_array_3.png'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
 
}

.review-h1 {
  font-size:2rem;
  font-weight: bold;
  color: #ff7f27;
  margin-bottom: 10px;
}

.review-p {
  font-size: 1.3rem;
  color: gray;
  margin-bottom: 30px;
}

.review-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
}

.review-card {
  width: 100%;
  max-width: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.review-card:hover {
  transform: translateY(-5px);
}

.profile-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.name {
  font-weight: bold;
  margin: 10px 0 5px;
  color: black;
  font-size: 16px;
}

.date {
  font-size: 14px;
  color: gray;
}

.stars {
  color: gold;
  font-size: 22px;
  margin: 5px 0;
}

.review-text {
  margin: 10px 0;
  color: black;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

.google-logo {
  width: 30px;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .review-container {
    flex-direction: column;
    align-items: center;
  }
}


/* contact-form */
.section-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url('./images/image\ \(16\).png') no-repeat center center/cover;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
}
.contact-main-container {
display: flex;
justify-content: center;
align-items: center;
width: 80%;
max-width: 1000px; /* Optional: Set max width to prevent excessive stretching */
}
.contact-container {
  display: flex;
  
  border-radius: 10px;
  padding: 20px;
  width: 50%;
  background: rgba( 255, 255, 255, 0.25 );
  box-shadow: 0 8px 32px 0 rgba(1, 1, 3, 0.123);
  backdrop-filter: blur( 3px );
  -webkit-backdrop-filter: blur( 3px );
  border-radius: 10px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  justify-content: center;
}
.form-container {
  flex: 1;
  padding: 20px;
  position: relative;
}
.form-container h2 {
  text-align: center;
  
}
.form-container img.left-logo {
  display: block;
  margin-bottom: 10px;
  width: 50px;
}
.form-container img.right-logo {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 50px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  font-weight: bold;
}
label{
  color: #333;
}
.form-group input, .form-group textarea {
  width: 100%;
  color: #0056b3;
  padding: 8px;
  background: rgba(0, 0, 0, 0.055);
backdrop-filter: blur( 3px );
-webkit-backdrop-filter: blur( 3px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
  border-radius: 5px;
}
.submit-btn {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: rgb(255, 176, 58);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.contact-contact-info {
width: 40%;
color: #0056b3;
margin-left: 20px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: left;
}
.contact-contact-info h2 {
  margin-bottom: 10px;
font-size: 2rem;
color: #0056b3;
}
.contact-contact-info p {
  margin: 5px 0;
  font-size: 1.3rem;
}
/* footer */
.footer {
  background: url('./images/home-background.png') no-repeat center center/cover;
  color: white;
  padding: 40px 80px;
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.footer-content div {
  margin: 10px;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 1px solid white;
  width: fit-content;
  padding-bottom: 5px;
}

.footer p, .footer a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer a:hover {
  text-decoration: underline;
  color: #f0c040;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo img {
  width: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) { /* Tablets */
  .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      text-align: center;
  }
  .footer-logo {
      flex-direction: column;
      align-items: center;
  }
}

@media (max-width: 768px) { /* Mobile */
  .footer {
      padding: 30px;
  }
  .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
  }
  .footer-logo img {
      width: 50px;
  }
}


        /* floating-menu */
        .floating-menu {
          position: fixed;
          right: 0;
          top: 50%;
          transform: translateY(-50%);
          display: flex;
          flex-direction: column;
          gap: 5px;
      }

      .menu-item {
          background-color: #ff8800c4; /* Orange shade */
          width: 60px;
          height: 60px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 5px 0 0 5px;
          cursor: pointer;
          transition: all 0.3s ease;
      }

      .menu-item i {
          color: white;
          font-size: 20px;
      }

      .menu-item:hover {
          background-color: #b45309; /* Darker shade */
          transform: scale(1.1);
      }

      @media screen and (max-width:1358px){
        .top-bar{
          display: none;
        } 
        .nav-links{
          display: none;
        }
        .nav-links1{
          display: none;
        }
        
      }

      @media screen and (max-width:768px){
.enquire-button{
  display: none;
}
.tata-power-logo{
  display: none;
}
.tata-logo{
height: 40px;
}

      }


 
/* section2 responive */

/* Responsive Design */
@media (max-width: 1024px) { /* Tablets */
  .section2-container {
    flex-direction: column;
    padding: 60px;
    text-align: center;
  }

  .text-section2, 
  .image-section2 {
    width: 100%;
    text-align: center;
  }

  .text-section2 p {
    text-align: center;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) { /* Mobile */
  .section2-container {
    padding: 40px;
  }

  .text-section2 h1 {
    font-size: 1.8rem;
  }

  .text-section2 p {
    font-size: 1.1rem;
    padding: 15px;
  }

  .image-section2 img {
    border-radius: 6px;
  }
}


/* section3 */
/* Responsive Design */
@media screen and (max-width: 1024px) {
  .section3-container {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .text-section3, .image-section3 {
    width: 90%;
  }

  .text-section3 p {
    font-size: 1.1rem;
  }

  .text-section3 h1 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 600px) {
  .text-section3 p {
    font-size: 1rem;
    padding: 10px;
  }

  .text-section3 h1 {
    font-size: 1.6rem;
  }
}


/* secion4 */
/* Responsive styles */
@media (max-width: 1024px) { /* Tablets */
  .card {
    max-width: 300px;
  }

  .overlay h2 {
    font-size: 16px;
  }
}

@media (max-width: 768px) { /* Mobile */
  .card-container {
    flex-direction: column;
    gap: 10px;
  }

  .card {
    max-width: 280px;
  }

  .overlay {
    width: 90%;
    height: 40px;
  }

  .overlay h2 {
    font-size: 14px;
  }

  .scroll-button button {
    font-size: 20px;
    padding: 6px 10px;
  }
}


/* General Styles */
.section-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url('./images/image (16).png') no-repeat center center/cover;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
}

.contact-main-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  gap: 20px;
}

.contact-container {
  flex: 1;
  min-width: 320px;
  border-radius: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(1, 1, 3, 0.123);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
}

.form-container {
  position: relative;
  width: 100%;
}

.form-container img.left-logo {
  display: block;
  margin-bottom: 10px;
  width: 50px;
}

.form-container img.right-logo {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 50px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
  color: #333;
}

.form-group input, .form-group textarea {
  width: 100%;
  color: #0056b3;
  padding: 10px;
  background: rgba(0, 0, 0, 0.055);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1rem;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: rgb(255, 176, 58);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}

.contact-contact-info {
  flex: 1;
  min-width: 320px;
  color: #0056b3;
  text-align: center;
}

.contact-contact-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-contact-info p {
  font-size: 1.2rem;
  margin: 5px 0;
  color: black;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-contact {
    padding: 10px;
  }
  .contact-main-container {
    flex-direction: column;
    align-items: center;
  }
  .contact-container, .contact-contact-info {
    width: 100%;
  }
  .contact-contact-info h2 {
    font-size: 1.5rem;
  }
  .contact-contact-info p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .form-container img.left-logo, .form-container img.right-logo {
    width: 40px;
  }
  .submit-btn {
    font-size: 0.9rem;
  }
  .contact-contact-info h2 {
    font-size: 1.3rem;
  }
  .contact-contact-info p {
    font-size: 0.9rem;
  }
}




.carousel-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.carousel {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.slide .background-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  filter: brightness(80%);
}

.content {
  position: absolute;
  top: 20%;
  left: 5%;
  color: white;
  text-align: left;
  z-index: 1;
}

.content img {
  height: 70px;
}

.subtitle {
  font-size: 1.5em;
  color: #ffa229;
  margin-bottom: 10px;
}

.title {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.button {
  background-color: #FFA500;
  color: white;
  padding: 15px 65px;
  border: none;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: 0.5s;
}

.button:hover {
  background-color: #0059ff;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1.5em;
  border-radius: 5px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.slide:first-child {
  display: block;
}



#nav-menu {
  display: none; /* Hidden by default */
}

#nav-menu.active {
  display: flex; /* Show when active */
  flex-direction: column;
  position: absolute;
  top: 112px;
  left: 50%;
  width: 30%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  background: rgba( 255, 255, 255, 0.25 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
  z-index: 1000;
  padding: 10px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-links a {
  padding: 10px;
  font-size: 16px;
}
@media (max-width: 768px) {
  #nav-menu.active {
    display: flex; /* Show when active */
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background: rgba( 255, 255, 255, 0.25 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 4px );
  -webkit-backdrop-filter: blur( 4px );
    z-index: 1000;
    padding: 10px;
  }
}


/* 
service carosal */
/* section-4 */
/* Section 4 - Our Services */
.section4-container {
  background-color: #07316b;
  min-height: 70vh; /* increased height */
  padding: 60px 20px; /* added vertical padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text-section4 {
  color: #fff;
  margin-bottom: 20px;
}

.highlight-section4 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.carousel-containers {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  padding: 10px;
}

.service-card {
  flex: 0 0 calc(33.333% - 13.33px);
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.service-card h3 {
  padding: 15px;
  font-size: 1rem;
  color: #333;
}

/* Responsive Design */
@media (max-width: 992px) {
  .service-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .service-card {
    flex: 0 0 100%;
  }

  .highlight-section4 {
    font-size: 1.5rem;
  }
}


.offgrid-system {
  padding: 40px 20px;
  text-align: center;
}

.offgrid-system h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.grid-item {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  width: 300px;
  padding: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}


.header {
  background-color: #002a5c;
  color: #fff;
  padding: 25px 10px;

  font-weight: bold;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.solution-title {
  background-image: url('./images/grid-sub-header-bg1.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  padding:  25px 10px;
  font-weight: bold;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}


ul {
  list-style: none;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}

ul li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

ul li:last-child {
  border: none;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
