 
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
 @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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');


*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    
  font-family: "Poppins", sans-serif;
}


:root{
    --primary-color: #102983;
    --secondary-color: #e19187;
    --green: #27b595;
    --blue: #29a2d9;
    --dark: #000;
    --light:#fff;

}
/* Preloader container */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000; /* Start with night */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: background 3s ease-in-out, opacity 1.5s ease;
  overflow: hidden;
}

/* Logo with bounce and glow */
.logo-animate {
  width: 100px;
  height: auto;
  animation: bounce 1s infinite, glow 3s ease-in-out infinite;
  filter: brightness(0) invert(1); /* White for dark bg */
  z-index: 10;
  transition: filter 2s ease, transform 2s ease;
}

/* Bounce effect */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Glow effect */
@keyframes glow {
  0%, 100% {
    filter: brightness(1.2) invert(1);
  }
  50% {
    filter: brightness(2) invert(1);
  }
}

/* Optional radial background glow layer */
#preloader::before {
  content: "";
  position: absolute;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle at center, #444 0%, #000 100%);
  opacity: 0.15;
  animation: glowPulse 3s ease-in-out infinite;
  z-index: 1;
}

/* Glow pulse background effect */
@keyframes glowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

/* On page load: dawn gradient + hide */
body.loaded #preloader {
  background: linear-gradient(120deg, #fff6e5, #d0f0fd); /* Dawn */
  opacity: 0;
  pointer-events: none;
}

/* Logo returns to normal for light background */
body.loaded .logo-animate {
  filter: none;
  transform: scale(1.05); /* Slight zoom for dramatic entrance */
}


/* navbar style start */
.navbar-rounded {
  background-color: var(--primary-color);
  padding: 10px 0px;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: rgba(168, 166, 166, 0.25) 0px 6px 12px -2px, rgba(153, 153, 153, 0.3) 0px 3px 7px -3px;
}
.navbar-rounded .navbar {
  border-radius: 50px;
}
.navbar .img {
  width: 80px;
}
.navbar .navbar-brand  {
 color: var(--primary-color); 
  font-family: "Great Vibes", cursive;
  font-weight: 700;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-style: normal;

}
.navbar{
  padding: 0px !important;
  background: #fff;
  /* box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 10px; */
}
.navbar .nav-item {
  margin: 0px 10px;
}
.navbar .nav-item .nav-link {
  color: #000 !important;
  font-size: 16px !important;
  font-weight: 500;
}
 
.dropdown-menu{
  background-color: var(--primary-color) !important;

}
.dropdown-menu .dropdown-item{
  color: #fff !important;
  border-bottom: 1px solid #fff;
  font-size: 13px;
}
.dropdown-menu .dropdown-item:hover{
  color: #000 !important;
}
 

@media(max-width:768px){
    .navbar .img {
        width: 65px;
      }  
      .navbar-rounded {
        background-color: var(--primary-color);
        padding: 10px 0px;
      }
      .navbar .navbar-brand  {
 
  font-size: 20px;
  

}
}



/* sub-page-banner styling start */
.sub-page-banner {
  background: url(../images/banner/solex-sub-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: start;
  padding: 90px 0px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: left;
}

.sub-banner { 
  color: var(--light);
  text-align: center;
  padding: 10px 50px;
}

.sub-page-banner p {
  color: var(--light);
  font-size: 40px;
  font-weight: 600;
}
.sub-page-banner h1 {
  color: var(--light);
  font-size: 40px;
  font-weight: 600;
}


.breadcrumb-item.active 
 {
    color: var(--green) !important;
}

.sub-page-banner a {
  text-decoration: none;
  color: var(--light);
  font-size: 18px;
}



@media(max-width:768px) {
  .sub-page-banner {
     background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px 0px;
  }
}

@media(max-width:520px) {
  .sub-page-banner {
     background-size: cover;
    background-repeat: no-repeat;

    background-position: center;

    padding: 5px 0px;
  }

  .sub-page-banner p {

    color: var(--blue);
    font-size: 18px;
    margin: 0px;
  }

  .sub-banner {
    background-color: #00000047;
    color: var(--blue);
    text-align: center;
    padding: 5px 10px;
  }

  .sub-page-banner a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 12px;
  }
}




/* navbar style end */















/* about us section start here */
 .stats-box {
      background-color: #f5f5f5;
      border-radius: 20px;
      padding: 30px 20px;
      margin-top: 30px;
    }

    .stats-item {
      font-weight: bold;
      font-size: 1.5rem;
    }

    .stats-label {
      font-size: 0.95rem;
      color: #555;
    }

    /* .hero-img {
      border-radius: 25px;
      width: 50%;
      object-fit: cover;
    } */

    @media (max-width: 767px) {
      .stats-item {
        font-size: 1.25rem;
      }
    }
/* about us section end here */











/* vision section start here */
 .section-title {
      color: #2b8a3e;
      font-weight: 600;
    }

    .card-img-top {
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
    }
    .custom-card h3{
      font-size: 20px;
    }

    .custom-card {
      background-color: #f8f9fa;
      border: none;
      border-radius: 15px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    }

    .section-intro { 
      margin: 10px  30px;
      text-align: justify;
    }

    @media(max-width:768px){
      .section-intro { 
      margin: 10px;
      text-align: justify;
    }
    .custom-card {
    background-color: #f8f9fa;
    border: none;
    border-radius: 15px;
    padding: 0px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      }
      .faq-image img {
          max-width: 90%;
          border-radius: 50%;
          height: 276px !important;
      }
    }
/* vision section end here */

/* Optional: Ensure nested submenu shows properly */
  
 .dropdown-menu {
 
  background-color: var(--primary-color); 
  color: var(--dark);
 
}
 
 



/* solar use section start here */

.solar-section{
  background-color: var(--primary-color);
}

    .solution-title {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .solution-card {
      background-color: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .solution-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    .solution-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .solution-caption {
      background-color: #f1f1f1;
      color: #222;
      font-weight: 600;
      padding: 12px;
      text-align: center;
      font-size: 1.1rem;
    }

    @media (max-width: 767px) {
      .solution-card img {
        height: 200px;
      }
    }
/* solar use section end here */













/* energy section start here */


.energy-section {
      padding: 60px 20px;
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      margin: 40px auto;
      max-width: 1200px;
    }

    .energy-highlight {
      color: #00A651;
 
    }

    .energy-title {
      font-size: 26px;
      font-weight: 700;
      margin-top: 10px;
      color: #111;
    }

    .energy-description {
      font-size: 15px;
      color: #555;
      text-align: justify;
      line-height: 1.7;
    }

    .explore-btn {
      background-color: #00A651; 
      text-decoration: none;
      color: white;
      font-weight: 500;
      padding: 10px 22px;
      border: none;
      border-radius: 8px;
      margin-top: 20px;
      transition: 0.3s ease;
    }

    .explore-btn:hover {
      background-color: #008c44;
      transform: scale(1.05);
    }

    .feature-box {
      background: #f5fdf7;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
      transition: 0.3s ease;
    }

    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0, 166, 81, 0.15);
    }

    .feature-icon {
      background-color: #e6f9ef;
      color: #00A651;
      padding: 12px;
      font-size: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 45px;
      height: 45px;
    }

    .feature-text h6 {
      margin-bottom: 5px;
      font-size: 16px;
      font-weight: 600;
      color: #111;
    }

    .feature-text p {
      margin: 0;
      font-size: 14px;
      color: #555;
    }

    @media (max-width: 767px) {
      .energy-title {
        font-size: 26px;
      }
      .energy-section {
      padding: 20px 20px;
      margin: 20px auto;
    }
    .solar-heading h1 {
    font-size: 18px;
}
    .solar-heading {
      font-size: 21px;
    }
.surya-ghar h3{
  font-size: 22px;
}
.surya-ghar p , .bill-saving{
  font-size: 15px;
}


.off-grid-section h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
    font-size: 27px;
}
.off-grid-section .text-content p 
 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
}
    }
/* energy section end here */












    .faq-section {
      padding: 60px 20px;
    }

    .faq-title {
      font-size: 32px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 40px;
    }

    .nav-tabs {
      border-bottom: 1px solid #ddd;
      justify-content: center;
    }

     .faq-section  .nav-tabs .nav-link {
      font-weight: 600;
      color: #000;
    }

      .faq-section .nav-tabs .nav-link.active {
      background-color: #000085;
      color: #fff !important;
    }

    .accordion-button {
      font-weight: 600;
      color: #000;
    }

    .accordion-button:not(.collapsed) {
      background-color: var(--primary-color);
      
    }

    .faq-image img {
      max-width: 90%;
      border-radius: 50%;
      height: 400px;
    }

    @media (min-width: 768px) {
      .faq-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .faq-tabs {
        flex: 1;
      }

      .faq-image {
        flex: 1;
        text-align: center;
      }
    }



/* ========================= footer =================================================== */
 /* footer section start here */
 
  .footer {
    background: linear-gradient(#0000004d),url("../images/card-image/footer-image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 70px 0;
    line-height: 1.8;
  }

  .footer h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
  }

  .footer h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin-top: 10px;
  }

  .footer p {
    font-size: 16px;
    color: #f1f1f1;
  }

  .footer ul {
    list-style: none;
    padding: 0;
  }

  .footer .foot-address{
    font-size: 14px !important;
  }

  .footer ul li {
    margin-bottom: 5px;
  }

  .footer ul li a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
  }

  .footer ul li a:hover {
    color: var(--green);
  }

  .footer .social-icons {
    margin-top: 20px;
  }


  .footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--light);
    color: #003366;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 50%;
    margin-right: 10px;
    transition: transform 0.3s, background 0.3s;
  }

  .footer .social-icons a:hover {
    background: #fff;
    color: #007BFF;
    transform: scale(1.1);
  }

  .footer .footer-col {
    margin-bottom: 30px;
  }

  .footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: var(--primary-color);
    margin-top: 40px;
  }

  .footer-bottom p {
    color: #f1f1f1;
    margin: 0;
    font-size: 16px;
  }

  .footer-bottom a {
    color: #f1c40f;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-bottom a:hover {
    color: #fff;
  }

  /* Icons Styling */
  .footer p i {
    margin-right: 6px;
    color: var(--light);
  }

  /* Responsive Design */
  @media (max-width: 992px) {
    

    .footer ul {
      display: inline-block;
      text-align: left;
    }

    .footer-bottom {
      text-align: center;
    }
  }

  @media (max-width: 768px) {
    .footer h3 {
      font-size: 20px;
    }

    .footer p,
    .footer ul li a {
      font-size: 14px;
    }

    .footer .social-icons a {
      width: 35px;
      height: 35px;
      line-height: 35px;
      font-size: 16px;
    }
  }

  @media (max-width: 576px) {
     

    .footer h3 {
      font-size: 18px;
    }

    .footer p,
    .footer ul li a {
      font-size: 14px;
    }

    .footer .social-icons a {
      width: 30px;
      height: 30px;
      line-height: 30px;
      font-size: 14px;
    }

    .footer-bottom p {
      font-size: 14px;
    }
  }
 

 /* footer section end here */


/* ========================= footer =================================================== */















 .tab-section {
      border-bottom: 2px solid #ddd;
      margin-bottom: 1rem;
    }

    .tab-section .nav-link {
      font-weight: bold;
      color: #000;
        background-color: var(--primary-color);
        color: var(--light);
        margin: 0px 5px;

    }




    .tab-section .nav-link:hover {
      font-weight: bold;  
        color: var(--light);
    }

    .tab-section .nav-link.active {
      background-color: var(--light) !important;
      border-bottom: 2px solid #8CC63F;
      color: var(--primary-color) !important;
    }

    .highlight {
      color: #8CC63F;
      font-weight: bold;
    }

    .metrics {
      font-size: 1.25rem;
      font-weight: bold;
    }

    .metrics span {
      display: block;
      font-size: 1rem;
      color: #555;
      font-weight: normal;
    }

    .content-box {
      padding-right: 2rem;
    }

    .green-bar {
      width: 50px;
      height: 3px;
      background-color: #8CC63F;
      margin-bottom: 0.5rem;
    }




/* why choose us  */
 .why-solar-icon {
      font-size: 40px;
      color: #ff8800;
      margin-bottom: 10px;
    }
    .why-solar-title {
      font-weight: 700;
      font-size: 28px;
    }
    .why-solar-subtext {
      font-size: 14px;
      color: #555; 
      text-align: start;
    }
    .why-solar-box {
      text-align: center;
      padding: 20px 10px;
    }
    .why-solar-box p {
      margin-top: 10px;
      font-weight: 500;
      font-size: 14px;
    }
/* why choose us  */



















 .solar-heading {
      font-size: 26px;
      font-weight: 700;
      color: #0a3d62;
      display: flex;
      align-items: center;
    }
 .solar-heading2 {
      font-size: 26px;
      font-weight: 700;
      color: #0a3d62;
      display: flex;
      align-items: center;
    }
    .solar-heading h1{
      font-size: 25px;
    }
    .solar-heading h1 .energy-highlight{
      font-size: 17px;
      font-weight: 700;
      transform: translateY(-15px);
      margin-top: 0px !important;
      letter-spacing: 2px;
    }
    .solar-heading h2 .energy-highlight{
      font-size: 17px;
      font-weight: 700;
      transform: translateY(-15px);
      margin-top: 0px !important;
      letter-spacing: 2px;
    }
    .solar-heading2 h2 .energy-highlight{
      /* font-size: 17px; */
      font-weight: 700;
      transform: translateY(-15px);
      margin-top: 0px !important;
      letter-spacing: 2px;
    }
    .solar-heading i, .solar-heading2 i {
      color: #ff6f00;
      margin-right: 10px;
    }
    .solar-step-box {
      background-color: #fff;
      padding: 15px 20px;
      border-radius: 12px;
      margin-bottom: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.06);
      transition: all 0.3s ease;
      display: flex;
      align-items: flex-start;
    }
    .solar-step-box:hover {
      transform: translateX(6px);
      background-color: #fff7e6;
      box-shadow: 0 6px 14px rgba(0,0,0,0.1);
    }
    .solar-step-box i {
      color: #ff8500;
      font-size: 18px;
      margin-right: 12px;
      margin-top: 4px;
    }
    .solar-step-box span {
      color: #333;
      font-size: 15px;
      line-height: 1.6;
    }
    .solar-image {
      width: 100%;
      /* background-color: transparent; */
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    @media (max-width: 768px) {
      .solar-heading {
        justify-content: center;
        text-align: center;
      }
      .solar-step-box {
        flex-direction: row;
      }
    }
















/* sustain section  start here*/


      .sustain-section {
      background-color: #1d418f;
      color: #fff;
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }

    .sustain-section .wave-lines {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      max-width: 650px;
      z-index: 1;
      opacity: 0.2;
    }

    .sustain-section h6 {
      letter-spacing: 1.5px;
      font-weight: 500;
      color: #b0d0ff;
    }

    .sustain-section h3 {
      font-size: 23px;
      font-weight: 700;
      line-height: 1.4;
      max-width: 600px;
    }

    .icon-box {
      display: flex;
      align-items: center;
      gap: 12px;
      background-color: rgba(255, 255, 255, 0.05);
      padding: 12px 16px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .icon-box:hover {
      background-color: rgba(255, 255, 255, 0.15);
    }

    .icon-box i {
      font-size: 22px;
      color: #ffffff;
      background-color: #3d66c0;
      padding: 10px;
      border-radius: 6px;
    }

    .icon-box span {
      font-size: 15px;
      font-weight: 500;
    }

    .globe-img {
      max-width: 320px;
      z-index: 2;
      position: relative;
    }

    @media (max-width: 767.98px) {
      .sustain-section h1 {
        font-size: 1.6rem;
      }
    }


/* sustain section end here*/








/* product card sectioon start here */
 
    .product-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.product-img {
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-hover-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(13, 110, 253, 0.9);
  color: #fff;
  padding: 8px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-hover-icon {
  opacity: 1;
}

.product-body {
  padding: 15px;
}

.product-card .product-body .btn-product{

  background-color: var(--primary-color);
  color: var(--light);
  text-decoration: none;
  text-align: center;
  padding: 5px;
}
.product-card .product-body .btn-product a{ 
  color: var(--light);
  text-decoration: none;
  text-align: center;
    
}
.product-card .product-body .btn-product:hover{
  background-color: var(--green);
  color: var(--light);
}


.product-title {
  font-size: 1rem;
  font-weight: 600;
}


    .owl-nav {
      position: absolute;
        top: 35%;
      width: 100%;
      display: flex !important;
      justify-content: space-between;
      padding: 0 10px;
      pointer-events: none;
    }

    .owl-nav button.owl-prev,
    .owl-nav button.owl-next {
      background-color: var(--primary-color) !important;
      color: white !important;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      font-size: 20px;
      border: none;
      pointer-events: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
    }

    .owl-nav button:hover {
      background-color: #dc3545 !important;
    }
/* product card sectioon end here */





/* blog style start */
  
/*** Packages Start ***/
.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
  }
  
  .packages .packages-item:hover .packages-img .packages-info {
    opacity: 1;

  }
  
  .packages .packages-item .packages-img .packages-info {
    /* background: rgba(0, 0, 0, .3); */ 
    background-color: var(--green);
    opacity: 0;
  }
  
  .packages .packages-item .packages-img .packages-info small,
  .packages .packages-item .packages-img .packages-info small i {
    color: #fff;
    transition: 0.5s;
  }
  
  .packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
  }
  
  .packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
    visibility: visible;
  }
  
  .packages .packages-item .packages-img small,
  .packages .packages-item .packages-img small i {
    transition: 0.5s;
  }
  
  .packages .packages-item .packages-img:hover small,
  .packages .packages-item .packages-img:hover small i {
    color: #fff !important;
  
  }
  
  .packages .packages-item .packages-img img {
    transition: 0.5s;
  }
  
  .packages .packages-item .packages-img:hover img {
    transform: scale(1.3);
  }
  
  .packages .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%);
    display: inline-block;
    background: #E85C2E;
    color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; 
    z-index: 5;
  }
  
  .packages .packages-carousel {
    position: relative;
  }
  
  .packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid #E85C2E;
    border-radius: 30px;
    transition: 0.5s;
  }
  
  .packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid #E85C2E;
    border-radius: 30px;
    transition: 0.5s;
  }
  
  .packages .packages-carousel .owl-nav .owl-prev i,
  .packages .packages-carousel .owl-nav .owl-next i {
    color: #E85C2E;
    font-size: 17px;
    transition: 0.5s;
  }
  
  .packages .packages-carousel .owl-nav .owl-prev:hover,
  .packages .packages-carousel .owl-nav .owl-next:hover {
    background: #E85C2E;
  }
  
  .packages .packages-carousel .owl-nav .owl-prev:hover i,
  .packages .packages-carousel .owl-nav .owl-next:hover i {
    color: #fff;
  }
  .packages-content p{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .packages-item .packages-content h2{
    font-size: 22px;
  }
  .packages-item .packages-content h3{
    font-size: 22px;
  }
  .packages-item .packages-content{
    padding: 12px 5px;
    text-align: center;
  }
  .packages .bg-primary{
    background: #E85C2E !important;
  }

  .packages-item .packages-img  .packages-info a{
  text-decoration: none;
  color: var(--light);
   
  }

  .packages-content .btn1{
    background-color: var(--primary-color);
    text-decoration: none;
    color: var(--light); 
  }
  /*** Packages End ***/
/* blog-style end */















    .product-card .product-content {
    position: absolute;
    bottom: 40px;
    width: 100%;
    background-color: var(--red);
    transform: translateY(25px);
    padding: 10px;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    overflow: hidden;
}
.product-card .img {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.product-card .product-content .product-para-div {
    opacity: 0;
    height: 0px;
    transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
}
.enquiry-form {
    padding: 20px;
    color: white;
    font-weight: 600;
    /* background-color: rgb(112, 17, 34); */
    background: linear-gradient(#000000ce, #000000c5), url(../images/products/passenger-lift.jpg);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .enquiry-form form input{
       background: none;
       color: #fff;
  }
  .enquiry-form form input::placeholder{
       color: #fff;
  }
  .enquiry-form form input:focus{
       background: none;
  }
  .enquiry-form form textarea{
       background: none;
       color: #fff;
  }
  .enquiry-form form textarea::placeholder{
       color: #fff;
  }
  .enquiry-form form textarea:focus{
       background: none;
  }
  .enquiry-form h4 {
    position: relative;
    display: inline-block;
    color: white;
    padding-bottom: 5px;
  }
  
  .enquiry-form button.btn {
    color: white;
    font-weight: 600;
    background-color: rgb(60, 92, 158);
  } 
  .enquiry-form button.btn:hover{
       background-color: var(--primary-color) ;
  }
  .enquiry-form .captchasep1 {
    display: flex; 
    justify-content: space-between;
  }
  .captcha-box{
    display: flex;
    justify-content: space-between;
  }
  .captcha-box  .captcha-codes  .button{
    padding: 5px;
    background-color: transparent;
    border: none;
  }
  .captcha-box {
    border-bottom: 1px solid #fff;
    padding: 0px 15px;
  }
   .captcha-box .form-control{
    border: none;
   }
   .captcha-box  .captcha-codes p{
    text-align: center;
    padding-top: 8px;
    font-size: 17px;
   }
    .captcha-box  .captcha-codes {
      background-color: var(--);
    }
  .captcha-codes{
    display: flex;
    width: 50%;
    justify-content: space-around;
  }
  .enquiry-form .captchasep1 .captcha-codes-sec{
    display: flex; 
    justify-content: space-between;
  }

.enquiry-form .captchasep1 .captcha-codes-sec 

   .enquiry-form .captchasep1 .form-control{
      width: 60% !important;
   }
  .product-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 
    overflow: hidden;
  }
  .enq-content p{
   text-align: justify;
   font-size: 18px;
  }
  .product-card a{
       text-decoration: none;
       color: #3c5c9e;
       font-size: 18px;
       font-weight: 500;
  }
  .product-card h5{
       font-size: 25px !important;
  }
  .product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  .product-card h5 {
    margin: 15px 0;
    font-size: 18px;
    font-weight: 600;
  }
  .btn-enquire {
    background-color: rgb(60, 92, 158);
    color: #fff;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    display: block;
    width: 100%;
  }
  .product-card .btn-enquire {
    background-color: rgb(60, 92, 158);
  }
  
/* product style start */
.products{
    background:linear-gradient(rgba(0, 0, 0, 0.842), rgba(0, 0, 0, 0.356)),url(../images/products/product-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-backdrop-filter: grayscale(100%);
    
}
.product-card {
    position: relative;
    cursor: pointer;
    box-shadow: rgba(255, 255, 255, 0.24) 0px 3px 8px;
    margin: 10px;
}

.product-card .img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-card .img img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;

}


.product-card .product-content {
    position: absolute;
    bottom: 40px;
    width: 100%;
    padding: 10px;
    background-color: var(--red);
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(25px);
    overflow: hidden;
    /* Moves the content slightly down initially */
}

/* .product-card .product-content a {
    text-decoration: none;
    color: #fff;
} */

.product-card .product-content .product-para-div {
    opacity: 0;
    height: 0;
    transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
    /* width: 0; */
}
.product-card .product-content h3 {
   font-size: 24px;

}
.products .product-carousel a{
  text-decoration: none;
  color: #fff;
}
.related-carousel a{
  text-decoration: none;
  color: #fff !important;
}
.product-card .product-content .product-para-div p {
    font-size: 18px;
    color: #fff;
}

.product-card:hover .product-content .product-para-div {
    opacity: 1;
    height: 100%;
}

.product-card:hover .product-content {
    background-color: var(--red);
}

.product-card:hover .img img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%) !important;

    transform: scale(1.05);
    /* Slight zoom effect */

}

.product-card:hover .product-content {
    transform: translateY(0px);
    /* Brings content back to position */
}

.product-carousel{
    padding: 10px 0px;
   
}
@media(max-width:768px){
    .product-carousel{
        padding: 20px 0px;
    }
}
/* product style end */


















/* contact us */
.contact-wrapper {
      background-color: #fefcf9;
      padding: 60px;
      display: flex; 
    }

 .contact-wrapper    .contact-box { 
      width: 100%;
      display: flex;
      flex-wrap: wrap; 
    }
 

   .contact-wrapper  .contact-content {
      flex: 1 1 60%;
      padding: 40px;
    }

   .contact-wrapper  .contact-content h2 {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 30px;
    }

  .contact-wrapper   .form-control {
      border: none;
      border-bottom: 1px solid #000;
      border-radius: 0; 
    }


  .contact-wrapper   .captchasep1 .captcha-codes-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;   
  border-bottom: 1px solid #000;
} 
 .contact-wrapper .captchasep1 .captcha-codes-sec p{
  margin-bottom: 0px !important;
 }
   .contact-wrapper  .btn {
      background: var(--primary-color);
      color: #fff;
      border-radius: 50px;
      padding: 10px 30px;
      border: none;
    }
   .contact-wrapper  .btn:hover {
      background: #000;
      color: #fff;
      border-radius: 50px;
      padding: 10px 30px;
      border: none;
    }

    .contact-wrapper .info-text {
      font-size: 16px;
       color: var(--primary-color);
      margin-bottom: 10px;
    }
    .contact-wrapper .info-text strong {
      font-size: 18px !important; 
      color: var(--dark);
    }

     .contact-wrapper    .info-text a{
          text-decoration: none;
          color: var(--primary-color);
        }
    .social-icons a {
      color: #000;
      font-size: 18px;
      margin-right: 15px;
      text-decoration: none;
    }

    @media (max-width: 768px) {
   .contact-wrapper    .contact-box {
        flex-direction: column;
      }

    .contact-wrapper  .contact-image {
        min-height: 300px;
      }

   .contact-wrapper    .contact-content {
        padding: 20px;
      }
      .contact-wrapper {
    background-color: #fefcf9;
    padding: 0px;
    display: flex;
    justify-content: center;
}
    }
/* contact us */



/* pm surya yogna */

.surya-text h3{
  font-size: 22px;
}
.surya-text p{
  font-size: 16px;
}
.surya-ghar .subsidy-head{
  font-size: 22px;
}


/* Highlight Classes */



.highlight-orange {
  color: #e67e22;
}

.highlight-blue {
  color: #2980b9;
}

.highlight-green {
  color: #27ae60;
}

.highlight-teal {
  color: #16a085;
}

.highlight-purple {
  color: #8e44ad;
}

.highlight-eco {
  color: green;
}

.highlight-red {
  color: #c0392b;
}

.bill-saving {
  background-color: #dff0d8;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: bold;
}

/* Table Styling */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-top: 20px;
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* ensures table isn't too squished */
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

th, td {
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

thead {
  background-color: var(--primary-color);
  color: white;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

.total {
  font-weight: bold;
  color: green;
}

/* Optional media query for smaller screens */
@media (max-width: 600px) {
  th, td {
    padding: 10px;
    font-size: 14px;
  }
}

/* pm surya yogna */








/* offgrid section start here */

.off-grid-section { 
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.off-grid-section h2 {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
}

.offgrid-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.off-grid-section .text-content {
  flex: 1 1 55%;
}

.off-grid-section .text-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.text-content .highlight {
  color: #27ae60;
  font-weight: bold;
}

.off-grid-section .call-to-action {
  background-color: #ecf9f1;
  padding: 12px 18px;
  border-left: 4px solid #2ecc71;
  font-weight: bold;
  border-radius: 4px;
  margin-top: 20px;
}

.off-grid-section  .image-content {
  flex: 1 1 40%;
  text-align: center;
}

.off-grid-section  .image-content img {
   
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

@media (max-width:768px) {
  .off-grid-section {
 
  padding: 0px;}
  
}
/* offgrid section end here */





/* grid tied  */

    .grid-tied {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }

   .grid-tied   .grid-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

   .grid-tied   .grid-layout img {
      max-width: 100%;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    

   .grid-tied   h2 {
      color: var(--primary-color); 
    }

  .grid-tied  .grid-layout  p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 20px;
    }

   .grid-tied  .grid-layout ul {
      list-style: none;
      padding: 0;
    }

   .grid-tied .grid-layout  ul li::before {
      content: "✔ ";
      color: var(--primary-color);
      font-weight: bold;
    }

    .grid-tied .grid-layout ul li {
      margin-bottom: 10px;
      font-size: 1.05rem;
    }

    @media (max-width: 768px) {
     .grid-tied   .grid-layout {
        grid-template-columns: 1fr;
      }
    }
/* grid tied  */

  .grid-system-container {
      max-width: 1100px;
      margin: 40px auto;
      background-color: #fff;
      border-radius: 10px;
      padding: 40px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .grid-system-container h2 {
      color: var(--primary-color);
      margin-bottom: 20px;
    }

    .grid-system-container p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #333;
    }

    .grid-system-container ul {
      padding-left: 20px;
      margin-top: 15px;
    }

    .grid-system-container ul li {
      font-size: 1rem;
      margin-bottom: 10px;
      color: #555;
    }

    .image-section {
      text-align: center;
      margin-top: 30px;
    }

    .image-section img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .image-caption {
      font-size: 0.9rem;
      color: #666;
      margin-top: 10px;
    }



    @media (max-width:768px) {
       .grid-system-container {
      
      padding: 10px; 
    }
    .grid-tied { 
    padding: 20px 10px;
}
.solution-title 
 {
    font-size: 28px;
    font-weight: 700;
}
.sustain-section h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    max-width: 600px;
}
    }








    /* net-billing section start here */
    .net-billing .billing-text p{
      text-align: justify;
    }
    /* net-billing section end here */













    /* solar section start here */
    .section-solar h3 {
      font-size: 24px;
      color: var(--primary-color);
      font-weight: 600;
      margin-bottom: 15px;
    }

    .section-solar p {
      font-size: 16px;
      color: #333;
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .section-solar ul {
      padding-left: 20px;
      list-style: none;
    }

    .section-solar ul li {
      position: relative;
      margin-bottom: 10px;
      padding-left: 22px;
      font-size: 15px;
      color: #555;
    }

    .section-solar ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      top: 0;
      color: #198754;
      font-weight: bold;
      font-size: 16px;
    }

    .section-solar img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
    }

    @media (max-width: 768px) {
      .section-solar .col-md-6 {
        margin-bottom: 30px;
        text-align: center;
      }

      .section-solar ul {
        text-align: left;
      }
    }
    /* solar section end here */






    /* blog-details-start */
    /* related blog-style-start */
    .related-blog {
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      padding: 5px;
      border-bottom: 1px solid #000;
      margin-bottom: 15px;
  }

  .related-blog a {
      text-decoration: none;


  }

  .related-blog .realted-img {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;

  }

  .related-blog .realted-img img {
      height: 100%;
      width: 100%;
  }

  .related-blog .related-blog-content {
      padding: 5px 5px 5px 0px;
  }

  .related-blog .related-blog-content h2 {
      font-size: 16px;
      color: #000;
  }

  .related-blog .related-blog-content p {
      color: #000;
  }

  /* related blog-style-end */


  .blog-detail {
      padding: 50px 0px;
  }


  .blog-image-banner .blog-date p {
      margin-bottom: 0px;
      color: #fff;
  }

  .blog-content-para p {
      text-align: justify;
      font-size: 18px;
  }
/* blog-details-end */

/* responsive section start */
@media(max-width: 768px){
 .blog-detail {
      padding: 30px 0px;
  }
}
/* responsive section end */





