 /* TOp bar Section Start */

 .sticky-header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
     z-index: 999;
 }
 
 body{
     padding: 0 !important;
 }
 
 .p-h{
     margin: -120px 0;
 }
 
 #topbar .top-menu li a:hover{
     padding: 0 !important;
    margin-right: 16px;
    transition: 0.4s;
    transform: scale(1.05);
 }
 
 .heat-m{
     width: 100% !important;
    height: 212px !important;
    display: grid;
    grid-template-columns: 50% 50%;
 }


 .top-bar {
     background-color: #40b658;
 }

 .top-bar .top-bar-sec {
     padding: 5px 20px;
     align-items: center;
     display: grid;
     grid-template-columns: 60% 10% 30%;
 }
 
 @media (min-width: 1400px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 1300px !important;
    }
}
 
 
#myHeader .custom-nav-item .menu-link .menu-arrow{
    color: #000;
}
 
 #modal-2 .modal .modal-content .modal-header{
     position: relative;
 }
.btn-close{
    position: absolute;
    top: 15px;
    right: 15px;
}

 .cta-link a {
     font-size: 14px;
     color: #fff;
     transition: 0.4s;
     padding: 0 5% 0 0;
 }

 .cta-link a:hover {
     color: #000;
 }

 .top-bar .top-bar-sec .i-cta {
     background-color: #fff;
     color: #40b658;
     font-size: 12px;
     border-radius: 50%;
     padding: 0.8% 0.7%;
     margin: 0 5px -5px 0;
 }

 .social-div {
     text-align: right;
 }

 .top-bar .top-bar-sec .social-i {
     background-color: #fff;
     color: #40b658;
     font-size: 12px;
     border-radius: 50%;
     padding: 2% 1.7%;
     transition: 0.4s;
 }

 .top-bar .top-bar-sec .social-i:hover {
     transition: 0.4s;
     color: #fff;
     transform: scale(1.05);
     background-color: #000;
     box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
 }








 /* Header */
 .header {
     background: #fff;
     color: #000;
     align-items: center;
     position: relative;
     z-index: 1001;
 }

 .header .nav-container {
     padding: 10px 20px;
     align-items: center;
     display: flex;
     justify-content: space-between;
 }

 .logo {
     font-size: 20px;
     font-weight: bold;
 }

 /* Hamburger */
 .hamburger {
     display: none;
     width: 30px;
     height: 25px;
     position: relative;
     cursor: pointer;
     z-index: 1100;
 }

 .hamburger span {
     position: absolute;
     width: 100%;
     height: 3px;
     background: #000;
     left: 0;
     transition: all 0.4s ease;
 }

 .hamburger span:nth-child(1) {
     top: 0;
 }

 .hamburger span:nth-child(2) {
     top: 10px;
 }

 .hamburger span:nth-child(3) {
     top: 20px;
 }

 /* Active (X) state */
 .hamburger.active span:nth-child(1) {
     transform: rotate(45deg);
     top: 10px;
 }

 .hamburger.active span:nth-child(2) {
     opacity: 0;
 }

 .hamburger.active span:nth-child(3) {
     transform: rotate(-45deg);
     top: 10px;
 }

 /* Nav */
 /* .custom-nav {
     background: #333;
 } */

 .custom-nav .menu {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     align-items: center;
 }

 .custom-nav .menu-item {
     position: relative;
 }

 .custom-nav .menu-link {
     color: #000;
     padding: 15px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     text-decoration: none;
     cursor: pointer;
 }

 .custom-nav .menu-link:hover {
     border-bottom: 2px solid #40b658;
 }

 /* Arrow */
 .custom-nav .menu-arrow {
     margin-left: 8px;
     transition: transform 0.3s ease;
     font-size: 12px;
     color: #000;
 }
.custom-nav .submenu-link:hover >  .menu-arrow {
    color: #fff;
}
 .custom-nav .menu-item:hover>.menu-link .menu-arrow,
 .custom-nav .submenu-item:hover>.submenu-link .menu-arrow,
 .custom-nav .menu-item.active>.menu-link .menu-arrow,
 .custom-nav .submenu-item.active>.submenu-link .menu-arrow {
     transform: rotate(180deg);
 }
 
 
 
 
 
 

 /* Submenu */
 .custom-nav .submenu {
     position: absolute;
     left: 0;
     top: 100%;
     background: #eee;
     display: none;
     min-width: 245px;
     list-style: none;
     padding: 0;
     margin: 0;
     z-index: 999;
 }

 .custom-nav .submenu-item {
     position: relative;
 }

 .custom-nav .submenu-link {
     color: #000;
     padding: 10px 15px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     text-decoration: none;
     background-color: #ffffff;
 }

 .custom-nav .submenu-link:hover {
     background: #40b658;
     color: #fff !important;
     opacity: 1;
 }

 .custom-nav .submenu .submenu {
     top: 0;
     left: 100%;
 }

 /* Desktop hover */
 @media (min-width: 768px) {
     .hamburger {
         display: none;
     }

     .custom-nav {
         position: static;
     }

     .custom-nav .menu {
         display: flex;
     }

     .custom-nav .menu-item:hover>.submenu,
     .custom-nav .submenu-item:hover>.submenu {
         display: block;
     }
 }




 /* MAIN CSS START */


 a {
     text-decoration: none;
     color: initial;
 }

 ul {
     list-style-type: none;
     list-style: none;
     padding: 0;
     margin: 0;
 }

 p {
     font-size: 16px;
 }


 .common-btn {
     background-color: #40b658;
     border-color: #40b658;
     border-radius: 20px;
     font-size: 18px;
     padding: 1.5% 5%;
     transition: 0.4s;
 }

 .common-btn:hover {
     background-color: green;
     border-color: green;
     box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
 }

 .main-heading-box h1 {
     font-weight: 600;
     font-size: 45px;
     padding: 0 5% 1%;
 }

 .main-heading-box .divider {
     background-color: #40b658;
     border-radius: 10px;
     height: 3px;
     width: 15%;
     margin: 0 auto 5%;
 }
 
 .des-hid{
     display: none;
 }








 /* Home banner Start */
 .home-banner {
    bottom: 0;
    padding: 0 0 0 0;
    margin: 0 0 -85px 0;
    position: relative;
    left: 0;
    right: 0;
    top: -85px;
 }
.home-banner .img-slider img{
     width: 100%;
 }
.home-banner .img-slider .slick-dots{
    bottom: 10px;
}
 .home-banner .img-container img {
     width: 100%;
 }
 .hid-des{
     display: none;
 }
 .home-banner .img-slider .slick-dotted .slick-slider{
     margin-bottom: 0 !important;
 }
 
  .home-banner .img-slider .slick-dots li button:before{
    font-size: 40px;
    opacity: .65;
    color: #fff;
    padding: 0 2% 4%;
 }
 
  .home-banner .img-slider .slick-prev{
      z-index: 999;
      left: 4%;
  }
  
    .home-banner .img-slider .slick-next{
      z-index: 999;
      right: 4%;
  }
  
      .home-banner .img-slider .slick-prev:before{
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      border-radius: 50%;
      color: #000;
      font-size: 25px;
    padding: 7px 10px 10px;
  }
  
      .home-banner .img-slider .slick-next:before{
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      border-radius: 50%;
      color: #000;
      font-size: 25px;
    padding: 7px 10px 10px;
  }
 
  .home-banner .img-slider .slick-dots li.slick-active button:before{
     color: #fff;
     opacity: 1;
     border: 1.5px solid #fff;
     border-radius: 50%;
 }



 /* Counter section Start */
 .counter-sec {
     background-color: #f5faf5;
     padding: 2% 5%;
     margin: 0 0 5% 0;
 }
.counter-sec .container{
    padding: 0;
}
 .counter-sec .counter-container {
     display: grid;
     grid-template-columns: 20% 20% 20% 20% 20%;
 }

 .counter-sec .counter-container .counter-box {
     text-align: center;
     padding: 2%;
 }

 .counter-sec .counter-container .border-right {
     border-right: 1.5px dotted #40b658;
 }

 .counter-sec .counter-container .counter-box .counter {
     font-size: 45px;
     font-weight: 700;
     color: #40b658;
     padding: 2% 8% 0 2%;
     position: relative;
 }

 .counter-sec .counter-container .counter-box .label {
     color: #000;
     font-weight: 400;
     padding: 0 5%;
 }




 /* Product Protfolio start here */
 .product-portfolio {
     padding: 0 0 5%;
 }

 .product-portfolio .portfolio-details {
     background-color: #f5faf5;
     padding: 25% 10% 5%;
 }

 .product-portfolio .img-portfolio img {
     margin: 0 0 -150px 0;
 }

 .product-portfolio .portfolio-details h4 {
     font-weight: 600;
     font-size: 25px;
     padding: 20% 15% 3%;
     line-height: 35px;
 }

 .product-portfolio .portfolio-details .content {
     height: 300px;
 }
 
 
 
 
    .poplular-ss-tank .portfolio-details {
        background-color: #f5faf5;
        padding: 25% 10% 5%;
    }
 
    .poplular-ss-tank .img-portfolio img {
        margin: 0 auto -150px;
    }

    .poplular-ss-tank .portfolio-details h4 {
        font-weight: 600;
        font-size: 25px;
        padding: 30% 0% 3%;
        line-height: 35px;
    }

    .poplular-ss-tank .portfolio-details .content {
       /*height: 300px;*/
       padding: 0 5%;
       margin: 0;
    }

    .price-bx {
       padding: 5% 0 2%;
       align-items: center;
       display: flex;
       justify-content: space-between;
    }
    .price-bx .old-price{
       position: relative;
    }
    .price-bx .old-price .strike-t{
       font-weight: 400;
       text-decoration: line-through;
       color: #aaa;
    }
    .price-bx .old-price .bg-danger{
       position: absolute;
       top: -15px;
       width: 65%;
       padding: 1% 2% 0.5%;
       border-radius: 5px;
       right: -72px;
       font-weight: 600;
    }
    .price-bx .new-price p{
       font-weight: 700;
       color: #000;
       font-size: 20px;
    }
    
    
    
    .product-slide .slick-slide {
        margin: 0 10px; /* 10px gap between slides */
    }
    
    
    .product-slide .slick-prev {
        left: -40px;
    }

    .product-slide .slick-next {
        right: -20px;
    }

    .product-slide .slick-prev:before {

     color: #000;
     border-radius: 50%;
         padding: 10px 11px;
     background-color: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
 }

    .product-slide .slick-next:before {
     color: #000;
     border-radius: 50%;
         padding: 10px 11px;
     background-color: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
 }
 


 /* Water Section Start */
    .water-tank-sec {
      padding: 0 0 5%;
    }

 .water-tank-sec .green-box {
     background-color: #40b658;
     border-radius: 20px;
     padding: 3% 6% 1%;
     height: 100%;
 }

 .water-tank-sec iframe {
     border-radius: 15px;
 }

 .water-tank-sec .green-box p {
     color: #fff;
 }

    .slick-dotted.slick-slider{
        margin-bottom: 0 !important;
    }

.counter span{
    display: none;
}


.counter-box p{
    color: #40b658;
    position: absolute;
    right: 30%;
    font-size: 30px;
    top: -12px;
}
.counter-box .plus-2{
    color: #40b658;
    position: absolute;
    right: 16%;    font-size: 35px;
    top: -15px;
}
.counter-box .plus-3{
    color: #40b658;
    position: absolute;
    right: 18%;
    font-size: 30px;
    top: -12px;
}






 /* poplular-ss-tank section start */

 .poplular-ss-tank {
     padding: 5% 0;
 }

 .poplular-ss-tank .portfolio-details {
     background-color: #f5faf5;
     padding: 25% 10% 5%;
 }

 .poplular-ss-tank .portfolio-details h4 {
     font-weight: 600;
     font-size: 20px;
     padding: 15% 0% 3%;
     line-height: 30px;
 }


 /* Project Spotlight */
 .project-spotlight {
     padding: 0 0 5%;
 }

 .project-spotlight .spotlight-box-slider .spotlight {
     position: relative;
     height: 100%;
 }

 .project-spotlight .spotlight-box-slider .spotlight img {
     width: 100%;
     height: 100%;
 }

 .project-spotlight .spotlight-box-slider .spotlight h5 {
     font-size: 16px;
     padding: 2% 5% 3%;
     margin: 0;
     background-color: #0000008c;
     position: absolute;
     bottom: 0;
     right: 0;
     left: 0;
     text-align: center;
     color: #fff;
 }

 .project-spotlight .spotlight-box-slider .slick-dots {
     bottom: -20px;
 }

 .project-spotlight .spotlight-box-slider .slick-dots li button:before {
     font-size: 35px;
 }

 .project-spotlight h4 {
     font-size: 14px;
     text-align: center;
     font-weight: 500;
     padding: 0 0 5% 0;
 }

 .faq-sec .main-heading-box .divider {
     /* margin: 0 0 0 auto; */
     width: 25%;
 }

 .faq-sec .main-heading-box h1 {
     font-size: 40px;
     padding: 0 0% 0%;
 }

 .faq-sec .img img {
     width: 100%;
 }

 /* FAQ Section Start */
 .accordion {
     width: 100%;
     margin: 0 auto;
     display: grid;
     gap: var(--gap);
 }

 .accordion details {
     background: var(--bg);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: 0 2px 6px rgba(15, 20, 30, 0.04);
 }

 .accordion summary {
     list-style: none;
     cursor: pointer;
     padding: 14px 18px;
     margin: 0 0 2% 0;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px;
     font-weight: 600;
     border: 1px solid #aaa;
     font-size: 14px;
     border-radius: 5px;
     user-select: none;
 }

 .accordion summary .a-ic {
     color: #40b658;
 }

 .accordion summary::-webkit-details-marker {
     display: none;
 }

 .accordion summary::after {
     content: '+';
     font-weight: 700;
     font-size: 1.25rem;
     line-height: 1;
     transition: transform .18s ease;
     color: var(--accent);
 }

 .accordion details[open]>summary::after {
     content: '−';
 }

 .accordion summary:hover {
     background: rgba(11, 92, 255, 0.04);
 }

 .accordion .content {
     padding: 0 18px;
     max-height: 0;
     overflow: hidden;
     transition: max-height .32s ease, padding .28s ease;
     font-size: 0.95rem;
     color: #233048;
 }

 .accordion details[open] .content {
     padding: 12px 18px 20px;
     max-height: 800px;
 }

 .accordion .divider {
     height: 1px;
     background: linear-gradient(90deg, transparent, var(--border), transparent);
     margin: 0 18px;
 }




 /* Client Logo Carousel */
 .client-slider-sec {
     padding: 5% 0 0;
     overflow-x: hidden;
 }

 .client-slider-container {
     max-width: 920px;
     margin: 0 auto;
 }

 /* make slides centered and provide gap between items */
 .client-logo-slider .slick-slide {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .client-logo-slider .slide {
     padding: 0 12px;
     box-sizing: border-box;
     width: 100%;
 }

 /* gap = 24px total */
 /* inner content which we will scale */
 .client-logo-slider .slide-inner {
     width: 100%;
     max-width: 280px;
     background: #f2f0f0;
     border-radius: 25px;
     padding: 24px;
     /* box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08); */
     text-align: center;
     transition: transform 350ms ease, opacity 350ms ease;
     transform-origin: center center;
     transform: scale(0.86);
     /* smaller by default */
     opacity: 0.8;
 }

 .client-logo-slider img {
     width: 100%;
 }

 /* bigger center slide */
 .client-logo-slider .slick-center .slide-inner {
     transform: scale(1);
     opacity: 1;
     /* box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12); */
 }

 /* allow the scaled center to overflow outside the container */
 .client-logo-slider .slick-list {
     overflow: visible;
 }

 /* bring center slide above neighbors */
 .client-logo-slider .slick-center {
     z-index: 3;
 }

 .client-logo-slider .slick-slide {
     z-index: 1;
 }














 /* Review Section Start */
 .reviews-sec {
     padding: 5% 0;
 }

 .reviews-sec .testimonial-slider {
     padding: 2% 0 0;
 }

 .reviews-sec .testimonial-slider .slick-prev {
     left: -55px;
 }

 .reviews-sec .testimonial-slider .slick-next {
     right: -35px;
 }

 .reviews-sec .testimonial-slider .slick-prev:before {

     color: #000;
     border-radius: 50%;
         padding: 10px 11px;
     background-color: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
 }

 .reviews-sec .testimonial-slider .slick-next:before {
     color: #000;
     border-radius: 50%;
         padding: 10px 11px;
     background-color: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
 }
 



 .reviews-sec .testimonial-slider .testimonial-item {
     background-color: #efefef;
     text-align: center;
     padding: 3% 5%;
     height: 300px;
 }

 .reviews-sec .testimonial-slider .slick-slide {
     margin: 0 5px;
 }

 .reviews-sec .testimonial-slider .slick-list {
     margin: 0 -10px;
 }

 .reviews-sec .testimonial-slider .testimonial-item p {
     font-weight: 400;
     padding: 0% 5% 3%;
     font-size: 14px;
     height: 110px;
 }


 .reviews-sec .testimonial-slider .testimonial-item h4 {
     font-size: 18px;
     padding: 0;
     margin: 0;
 }

 .reviews-sec .testimonial-slider .testimonial-item h6 {
     font-size: 10px;
     color: #000;
     font-weight: 600;
     padding: 0;
     margin: 0;
 }

 .reviews-sec .testimonial-slider .testimonial-item img {
     margin: 0 auto;
 }




 /* Green Section Start */
 .green-sec {
     padding: 0 0 5%;
 }

 .green-sec .green-bx {
     background-color: #40b658;
     border-radius: 25px;
     height: 300px;
     margin: 5%;
 }


 /* learn-sun-stellar */
 .learn-sun-stellar {
     padding: 0 0 5%;
 }

 .learn-sun-stellar .img img {
     width: 100%;
 }

 .learn-sun-stellar h1 {
     font-size: 40px;
     text-align: center;
     padding: 0 5% 1%;
 }

 .learn-sun-stellar h1 span {
     color: #40b658;
 }

 .learn-sun-stellar .common-btn {
     background-color: #40b658;
     color: #fff;
     border-radius: 5px;
     padding: 2% 5%;
     font-size: 16px;
 }

 .learn-sun-stellar .btn-row {
     display: grid;
     grid-template-columns: 60% 40%;
 }

 .learn-sun-stellar .common-btn:hover {
     transition: 0.4s;
     background-color: transparent;
     color: #40b658;
 }

 .learn-sun-stellar .transparent-btn {
     background-color: transparent !important;
     color: #40b658 !important;
     border: 1.5px solid #40b658 !important;
     border-radius: 5px;
     padding: 2% 15%;
     font-size: 16px;
     transition: 0.4s;
 }

 .learn-sun-stellar .transparent-btn:hover {
     background-color: #40b658 !important;
     color: #fff !important;
     transition: 0.4s;
     box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
 }


/*banner custom*/
    .banner-s{
            margin: -6% 0 0 0;
        }
        .banner-s h1{
            padding: 20% 25% 30% 10%;
        }
        .banner-s .mob-container{
            position: relative;
        }
        
          .banner-s .mob-container img{
              width: 100%;
              height: 100%;
          }
          .banner-s .mob-container h1{
              position: absolute;
              top: 50%;
              left: 5%;
              transform: translateY(-50%);
              z-index: 15;
          }
          .desktop-hid{
              display: none;
          }



 /* Knowledge Center */

 .knowledge-center h2 {
     color: #40b658;
     font-weight: 600;
 }

 .knowledge-center {
     padding: 5% 0;
     background-color: #f5faf5;
 }

 .knowledge-center .knowledge-center-bx {
     display: flex;
     justify-content: space-between;
 }


 .knowledge-center h1 {
     font-size: 45px;
     font-weight: 600;
     padding: 0 0 5%;
 }


 .box-knowledge h4 {
     height: 100px;
 }

 .box-knowledge h6 {
     color: #777;
     padding: 2% 0 0 0;
     font-weight: 400;
     font-size: 11px;
 }

 .box-knowledge h4 {
     font-weight: 600;
     font-size: 18px;
     padding: 1% 0 5%;
 }

 .box-knowledge .read-m {
     color: #40b658;
     font-size: 16px;
     font-weight: 500;
     transition: 0.4s;
 }

 .box-knowledge .read-m:hover {
     color: #000;
     transform: scale(1.02);
 }

 .knowledge-center img {
     width: 100%;
 }

 .knowledge-center .img {
     position: relative;
 }

 .knowledge-center .img h5 {
     position: absolute;
     top: 3%;
     left: 5%;
     right: 25%;
     font-size: 14px;
     line-height: 25px;
 }
.knowledge-center img {
  width: 300px;   /* ya jo bhi size chahiye */
  height: 300px;  /* same rakho taaki square ho */
  object-fit: cover; /* stretch hone ke bajaye crop karega */
  display: block;
  margin: 0 auto; /* center align karne ke liye */
}
 .knowledge-center .img h5 span {
     color: #40b658;
     font-weight: 600;
 }

 .knowledge-center .left-right {
     margin: 0 2%;
     padding: 0 2%;
     border-left: 1.5px dotted #40b658;
     border-right: 1.5px dotted #40b658;
 }

 .knowledge-center .view-btn {
     background-color: transparent !important;
     border: 1.5px solid #000 !important;
     color: #000 !important;
     padding: 4% 8% !important;
     text-transform: uppercase !important;
     transition: 0.4s !important;
     margin: 15% 0 0 0;
 }

 .knowledge-center .view-btn:hover {
     background-color: #000 !important;
     color: #fff !important;
 }



 /* about secction Start */
 .about-sec {
     padding: 5% 0;
 }

 .about-sec .content h2 {
     color: #40b658;
     font-weight: 600;
     font-size: 20px;
     text-transform: uppercase;
 }
#mainMenu nav ul .mega-menu-item .dropdown-menu{
    width: 65% !important;
}
#mainMenu .dropdown-menu .tab{
    padding: 0 0 0 18%;
    width: 100% !important;
}
 .about-sec .content h1 {
     font-size: 35px;
     font-weight: 600;
     padding: 0 0 5%;
 }

 .about-sec .view-btn {
     background-color: transparent;
     border: 1.5px solid #000;
     color: #000;
     padding: 2% 5%;
     text-transform: uppercase;
     transition: 0.4s;
     margin: 5% 0 0 0;
 }

 .about-sec .view-btn:hover {
     background-color: #000;
     color: #fff;
 }

 .about-sec .about-img img {
     width: 100%;
 }




 /* Why Section Start */
 .why-sec {
     background-color: #000;
     padding: 5% 0;
 }

 .why-sec .content h2 {
     color: #40b658;
     font-weight: 600;
     text-transform: uppercase;
 }

 .why-sec .content p {
     color: #fff;
     text-align: justify;
     padding: 0 0 5% 0;
 }

 .why-sec .content ul {
     padding: 0;
     line-height: 35px;
 }

 .why-sec .content ul li {
     color: #fff;
     padding: 0 0 2% 0;
 }

 .why-sec .why-img img {
     width: 85%;
     margin: 0 0 0 15%;
 }



 /* Call To Action Start */
 .cta-sec {
     padding: 5% 0;
     text-align: center;
 }

 .cta-sec .cta-bx {
     padding: 5% 2%;
 }

 .cta-sec .cta-bx .ctc-i {
     font-size: 45px;
     color: #40b658;
     padding: 0 0 5% 0;
 }

 .cta-sec .cta-bx a {
     font-size: 25px;
     color: #000;
     font-weight: 600;
 }

 .cta-sec .cta-bx a:hover {
     color: #40b658;
 }

 .cta-sec .cta-bx p {
     padding: 0 5%;
 }


 /* Footer Section start */
 footer {
     background-color: #242424;
     padding: 3% 0 1%;
 }

 footer .foot-logo img {
     padding: 0 0 0 0;
     width: 15%;
 }

 footer .footer-container {
     padding: 2% 0;
     display: grid;
     grid-template-columns: 35% 25% 20% 20%;
 }
  footer  .contac-foot{
         border-top: 2px solid #ccc;
 }
  footer  .contac-foot ul{
     display: flex;
     justify-content: space-between;
     list-style-type: none;
 }

 footer .contac-foot ul li {
     list-style-type: none;
     line-height: 35px;
     padding: 0 2% 0 0;
 }

 footer .contac-foot ul li a {
     font-size: 14px;
     color: #ccc;
     padding: 0 0 2% 0;
     list-style-type: none;
     transition: 0.4s;
     text-decoration: none;
 }

 footer .contac-foot ul li a b {
     color: #eee;
     font-weight: 500;
 }
 
  footer .contac-foot {
     padding: 2% 2% 0 2%;
 }

 footer .contac-foot h5 {
     font-size: 20px;
     color: #fff;
     padding: 0 0 2% 0;
 }

 footer .footer-container .footer-bx {
     padding: 2% 3% 0 2%;
 }

 footer .footer-container .footer-bx h5 {
     font-size: 20px;
     color: #fff;
     padding: 0 0 2% 0;
 }

 footer .footer-container .footer-bx ul {
     list-style-type: none;
 }

 footer .footer-container .footer-bx ul li {
     list-style-type: none;
     line-height: 35px;
 }

 footer .footer-container .footer-bx ul li a {
     font-size: 14px;
     color: #ccc;
     padding: 0 0 2% 0;
     list-style-type: none;
     transition: 0.4s;
     text-decoration: none;
 }

 footer .footer-container .contac-foot ul li a b {
     color: #eee;
     font-weight: 500;
 }

 footer .footer-container .footer-bx ul,
 li a:hover {
     color: #eee;
     padding-left: 2%;
 }

 footer .footer-container .contac-foot ul li {
     margin: 0 0 5% 0;
     line-height: 30px;
 }



 .follow-s b {
     font-size: 12px;
 }

 .social-foot {
     width: 85%;
 }

 .social-i {
     color: #40b658;
     background-color: #fff;
     border-radius: 50%;
     padding: 3% 2%;
     font-size: 10px;
     transition: 0.4s;
 }

 .social-i:hover {
     background-color: #40b658;
     color: #fff;
 }

 .footer-store .box-container {
     display: flex;
     justify-content: space-between;
     color: #ccc;
     padding: 1.5% 0 1%;
     border-top: 2px solid #ccc;
     border-bottom: 2px solid #ccc;
 }

 .footer-store .box-container p {
     color: #ccc;
     font-size: 12px;
 }

 .footer-store .box-container a {
     color: #ccc;
 }

 .footer-store .box-container a:hover {
     color: #40b658;
 }

 .footer-store .bottom-line {
     text-align: right;
     color: #ccc;
     padding: 2% 0 0;
     font-size: 12px;
 }

 /* MAIN CSS END */



 /* RESPONSIVE CSS START */
 /* Smal Laptop Screen */
 @media screen and (max-width: 1400px) {

     p {
         font-size: 14px;
     }
     
     .home-banner .slick-list{
         width: 100%;
     }
 
    #topbar .top-menu{
        padding: 0;
    }
     .common-btn {
         font-size: 16px;
     }

     .main-heading-box h1 {
         font-size: 35px;
     }
     
     .product-portfolio .portfolio-details p{
         height: 135px;
     }

     /* India Most Suitable Product */
     .product-portfolio .img-portfolio img {
         width: 75%;
     }
     
     .product-portfolio .img-portfolio .stain-l{
             margin: 0 0 -163px 0;
     }

     .product-portfolio .portfolio-details h4 {
         font-weight: 600;
         font-size: 20px;
         padding: 35% 6% 3%;
         line-height: 30px;
     }

    .counter-box .plus-2{
            font-size: 22px;
            right: 25%;
            top: -2px;
    }

    /*Pricing section Start*/
    .price-bx .new-price p {
        font-size: 16px;
    }
    
    .price-bx .old-price .bg-danger{
        width: 60%;
        right: -55px;
        font-size: 12px;
    }
.product-portfolio .portfolio-details {
    background-color: #f5faf5;
    padding: 20% 8% 5%;
}

     /* Most Popular SS Tank */
     .poplular-ss-tank .img-portfolio img {
         width: 75%;
     }

     .poplular-ss-tank .portfolio-details h4 {
         font-weight: 600;
         font-size: 20px;
         padding: 25% 0% 3%;
     }



     /* Learn Sun Stelar Section Start */
     .learn-sun-stellar .common-btn {
         font-size: 14px;
         font-weight: 400;
     }

     .learn-sun-stellar .transparent-btn {
         font-size: 14px;
         font-weight: 400;
     }

     .learn-sun-stellar h1 {
         font-size: 45px;
     }

     /* Why section tart */
     .why-sec .why-img {
         display: flex;
         justify-content: right;
     }

     .why-sec .why-img img {
         width: 90%;
     }

     /* client Logo Slider */

     .client-slider-container {
         max-width: 810px;
     }


     /* Knowedge center */
     .knowledge-center .img h5 {
         font-size: 16px;
     }

     .box-knowledge h4 {
         font-size: 20px;
     }

     .box-knowledge .read-m {
         font-size: 16px;
     }

     .knowledge-center .view-btn {
         font-size: 14px !important;
         line-height: 12px !important;
     }

     .knowledge-center h2 {
         font-size: 20px;
     }

     .knowledge-center h1 {
         font-size: 35px;
     }

     /* Counter Section Start */
     .counter-sec .counter-container .counter-box .counter {
         font-size: 35px;
     }

     .counter-sec .counter-container .counter-box .label {
         font-size: 12px;
     }



     /* About Section start */
     .about-sec .content h1 {
         font-size: 35px;
     }

     .about-sec .content h2 {
         font-size: 20px;
     }

     .about-sec .content {
         padding: 0 5% 0 0;
     }

     .about-sec .about-img img {
         display: flex;
         margin: 0 auto;
         width: 85%;
     }
 }



 @media screen and (max-width: 1099px) {
        #topbar .top-menu>li>a  {
        margin-right: 5px !important;
        font-size: 10px !important;
    }
 
.counter-box p{
    color: #40b658;
    position: absolute;
    right: 30%;
       font-size: 25px;
    top: -5px;
}
    .fullscreen {
        min-height: 45vh !important;
    }
    .tab button{
        font-size: 10px;
    }
    #mainMenu .mega-menu-item .dropdown-menu .mega-menu-content img{
        width: 100% !important;
        height: 100% !important;
    }
    #mainMenu .dropdown-menu .tab {
        height: 100% !important;
    }
    .banner-s {
    margin: -8% 0 0 0;
}
    #mainMenu .dropdown-menu .tab {
            margin: -10px 0 0 0;
            padding: 0 0 0% 4%;
    }
    .counter-sec .counter-container .counter-box .label{
        line-height: 18px;
        font-size: 10px;
    }
    #topbar .social-icons li a{
        width: 25px !important;
    }
    .counter-box .plus-2{
        right: 20%;
        font-size: 20px;
    }
    .counter-box .plus-3{
        font-size: 20px;
        top: -2px;
    }
    .home-banner {
        top: -80px;
        margin: 0 0 -80px 0;
    }
    #mainMenu nav{
        width: 55%;
    }
    #mainMenu nav>ul>li>a{
        font-size: 10px !important;
    }
         .product-portfolio .portfolio-details h4 {
        font-weight: 600;
        font-size: 18px;
        line-height: 30px;
        padding: 45% 0% 3%;
         }
     
         .product-slide .slick-prev {
    z-index: 150;
    left: -25px;
}
.product-slide .slick-next {
    right: 10px;
}
.poplular-ss-tank .portfolio-details h4 {
        font-weight: 600;
        font-size: 18px;
        padding: 25% 0% 3%;
        line-height: 28px;
}
.poplular-ss-tank .img-portfolio img {
    margin: 0 auto -100px;
}
.poplular-ss-tank .portfolio-details{
        padding: 15% 6% 5%;
}
.poplular-ss-tank .portfolio-details .content {
    padding: 0 0%;
}
    .price-bx .old-price .bg-danger {
        top: -20px;
        width: 60%;
        padding: 2% 2% 1%;
        right: -35px;
        font-size: 11px;
    }
    .price-bx .new-price p {
        font-size: 14px;
    }
    .price-bx .old-price .strike-t{
        font-size: 12px;
    }
 }

/*Tablet mall size*/
 /* Mobile Screen Layout */
 @media screen and (max-width: 900px){
     .poplular-ss-tank .container {
        padding: 0 5px;
    }
.banner-s {
    margin: 5% 0 0 0;
}
.banner-s h1 {
    font-size: 30px !important;
}

#topbar .top-menu {
    padding: 0 !important;
}
        .mob-banner{
         height: 100%;
         bottom: 0;
         top: -80px !important;
         margin: 0 0 -80px 0 !important;
     }
    .poplular-ss-tank .portfolio-details .price-bx p{
        font-size: 10px;
        padding: 0 5px;
    }
        .price-bx .old-price .strike-t {
        font-size: 11px;
    }
    .price-bx .old-price .bg-danger {
        top: -16px;
        width: 55%;
        padding: 2% 2% 1%;
        right: -18px;
        font-size: 9px;
    }
    .home-banner {
        top: 30px;
        margin: 0 0 30px 0;
    }
    #header #logo>a img {
        margin: 0 610px 0 0;
    }
    #topbar .top-menu>li>a {
        margin-right: 3px !important;
        font-size: 8.2px !important;
    }
    #topbar .social-icons li a {
        width: 18px !important;
        font-size: 10px !important;
    }
    .counter-sec .counter-container .counter-box .counter {
        font-size: 25px;
    }
    .counter-box .plus-2 {
        font-size: 16px;
        right: 23%;
        top: 0px;
    }
    .counter-box .plus-3 {
        font-size: 16px;
        top: 0px;
    }
        .counter-box p {
        color: #40b658;
        position: absolute;
        right: 30%;
        font-size: 16px;
        top: 0;
    }
    .counter-sec .counter-container .counter-box .label {
        font-size: 12px;
    }
    .price-bx .new-price p {
        font-size: 12px;
        padding: 0;
    }
    .poplular-ss-tank .portfolio-details .content p{
        padding: 0;
        display: none;
    }
    .poplular-ss-tank .portfolio-details p{
        font-size: 9px;
        padding: 5%;
    }
    .price-bx .old-price .bg-danger{
        font-size: 10px;
    }
    .poplular-ss-tank .portfolio-details h4 {
        font-weight: 600;
        font-size: 14px;
        padding: 35% 0% 3%;
        line-height: 20px;
        height: 130px;
    }

    
        .product-portfolio .portfolio-details h4 {
        font-weight: 600;
        font-size: 16px;
        line-height: 25px;
        padding: 35% 15% 3%;
    }
        .product-portfolio .portfolio-details h4 {
        font-weight: 600;
        font-size: 16px;
        line-height: 25px;
        padding: 35% 15% 3%;
    }
    .product-portfolio .portfolio-details p{
        font-size: 12px;
    }
        .product-portfolio .img-portfolio .stain-l {
        margin: 0 0 -90px 0;
    }
    .product-portfolio .img-portfolio img {
        margin: 0 0 -85px 0;
    }
    .project-spotlight h4 {
       font-size: 12px;
    }
    .faq-sec .main-heading-box h1 {
       font-size: 22px;
       padding: 0 0% 0%;
    }
 }


 /* Mobile Screen Layout */
 @media screen and (max-width: 767px) {
     
         .counter-box p {
        color: #40b658;
        position: absolute;
        right: 35%;
        font-size: 20px;
        top: -3px;
    }
      .counter-box .plus-2{
         font-size: 20px;
         right: 25%;
         top: -3px;
     }
    .counter-box .plus-3 {
        right: 25%;
         top: -2px;
        font-size: 17px;
    }
     
        .fullscreen{
            min-height: 80vh !important;
            top: -80px  !important;
        }
        
             .mobile-hid{
         display: none;
     }
     .desktop-hid{
         display: block;
     }
     .banner-s {
        margin: 9% 0 0 0;
      }
      .banner-s h1 {
    line-height: 36px !important;
    padding: 19% 18% 30% 2%;
    font-size: 25px !important;
}
      .product-slide .slick-prev {
       z-index: 100;
       left: 5px;
    }
    
    .home-banner .img-slider .slick-next {
    z-index: 999;
    right: 8%;
}
    body .body-inner{
        overflow-x: hidden;
    }
   
     .container{
         padding: 0 10px;
     }
     
     .faq-sec .main-heading-box h1 {
         font-size: 30px;
     }
    
     .des-hid{
        display: block !important;
        padding: 14% 0 0 5%;
     }

     html {
         overflow-x: hidden;
     }

     .btn {
         font-size: 14px;
     }

     p {
         font-size: 14px;
     }

     .header .nav-container {
         padding: 10px;
     }

     .header .logo img {
         width: 65%
     }
  footer  .contac-foot ul{
      flex-direction: column;
  }
     .common-btn {
         font-size: 14px;
     }


     .counter-sec .counter-container {
         display: grid;
         grid-template-columns: 50% 50%;
     }

     .counter-sec .counter-container .border-right {
         border: 0;
     }

     .counter-sec .counter-container .counter-box {
         text-align: center;
         padding: 10% 0;
     }

     .counter-sec .counter-container .counter-box .counter {
         font-size: 30px;
     }

     .counter-sec .counter-container .counter-box .label {
         font-size: 10px;
     }


     /* Product portfolio section */
     .product-portfolio .portfolio-details h4 {
         font-weight: 600;
         font-size: 20px;
         padding: 28% 15% 3%;
     }
         .product-portfolio .portfolio-details p {
        height: 150px;
    }
        .product-portfolio .img-portfolio .stain-l {
        margin: 0px 0 -150px 0;
    }
     .product-slide .slick-next{
         right: 28px;
     }

     .product-portfolio .img-portfolio img {
         padding: 0 0 0 0%;
         margin: 0px 0% -150px 0;
         width: 80%;
     }


     /* Most Trusted steel water tank */
     .main-heading-box h1 {
         font-size: 25px;
     }

     .water-tank-sec .green-box {
         height: auto;
         margin: 0 0 5%;
     }

     /* Client logo carousel */
     .client-logo-slider .slide-inner {
         max-width: 220px;
         padding: 10px;
     }

     /* Popular SS Tank */
     .poplular-ss-tank .portfolio-bx {
         margin: 0 0 5% 0;
     }

     .poplular-ss-tank .img-portfolio img {
         width: 75%;
         margin: 0px auto -130px;
     }
     .poplular-ss-tank .first-product .img-portfolio img {
         width: 75%;
         margin: 0px auto -110px;
     }

  
     .poplular-ss-tank .portfolio-bx .portfolio-details .strike-t{
         text-decoration: line-through;
         color: #aaa;
         font-weight: 400;
         font-size: 16px;
     }
     .poplular-ss-tank .portfolio-bx .portfolio-details .bg-danger{
          right: -45px;
          padding: 1% 2% 0.5%;
          position: absolute;
          top: -25px;
          width: 80%;
          border-radius: 5px;
          font-size: 12px;
         font-weight: 600;
    }
    .poplular-ss-tank .portfolio-details p {
        font-size: 14px;
        padding: 0 5%;
    }
     /* Project Spotlight */
     .project-spotlight {
         padding: 5%;
     }


     /* FAQ Section start */
     .faq-sec {
         padding: 5%;
     }

     .faq-sec .img img {
         margin: 0 0 5% 0;
     }


     /* Testimonial Section start */
     .reviews-sec {
         padding: 5%;
     }


     .reviews-sec .testimonial-slider .testimonial-item {
         padding: 3% 5% 0;
     }

     .reviews-sec .testimonial-slider .testimonial-item img {
         margin: 5% auto;
         width: 20%;
     }

     .reviews-sec .testimonial-slider .testimonial-item h5 {
         font-size: 14px;
     }

     .reviews-sec .testimonial-slider .testimonial-item h6 {
         font-size: 8px;
     }

     .reviews-sec .testimonial-slider .testimonial-item p {
         font-size: 12px;
         height: 125px;
     }

     .reviews-sec .testimonial-slider .slick-prev {
         left: 5px;
         z-index: 10;
     }

     .reviews-sec .testimonial-slider .slick-next {
         right: 10px;
     }



     /* Learn Sun Stellar */
     .learn-sun-stellar {
         padding: 5% 5% 10%;
     }

     .learn-sun-stellar .btn-row {
         flex-direction: column-reverse;
     }

     .learn-sun-stellar .common-btn {
         margin: 0 auto;
     }

     .learn-sun-stellar .transparent-btn {
         margin: 0 auto;
     }

     .learn-sun-stellar h1 {
         font-size: 25px;
     }

     .learn-sun-stellar .row {
         text-align: center;
     }

     .learn-sun-stellar .img img {
         margin: 10% 0 0 0;
     }

     /* Knowledge center css */
     .knowledge-center {
         padding: 10% 5%;
     }

     .knowledge-center .knowledge-center-bx {
         flex-direction: column;
     }

     .knowledge-center h1 {
         padding: 0 10%;
         font-size: 25px;
         padding: 0 0 5%;
     }

     .knowledge-center h2 {
         font-size: 16px
     }

     .knowledge-center img {
         width: 100%;
         height: 100%;
     }

     .knowledge-center .left-right {
         padding: 5% 0;
         border: 0;
         border-top: 1.5px dotted #40b658;
         border-bottom: 1.5px dotted #40b658;
     }

     .knowledge-center .img h5 {
         font-size: 14px;
         line-height: 20px;
     }

     .box-knowledge {
         margin: 0 0 5% 0;
     }

     .box-knowledge .read-m {
         font-size: 16px;
     }

     .box-knowledge h4 {
        font-size: 18px;
        line-height: 30px;
     }




     /* About Section Start */
     .about-sec {
         padding: 10% 5%;
     }

     .about-sec .content h1 {
         font-size: 25px;
     }

     .about-sec .content h2 {
         font-size: 16px;
     }

     .about-sec .about-img img {
         margin: 10% 0 0 0;
         width: 100%;
     }


     /* Why Choose Us section start */
     .why-sec {
         padding: 10% 5%;
     }

     .why-sec .why-img img {
         width: 100%;
     }

     /* CTA Section start */
     .cta-sec .cta-bx a {
         font-size: 20px;
     }









     /* Footer section start */
     footer {
         padding: 10% 2.5%;
     }

     .foot-logo img {
         padding: 0 0 0 5%;
         width: 65%;
     }
  

     footer .footer-container .footer-bx h5 {
         font-size: 18px;
     }

     .footer-store .box-container {
         flex-direction: column-reverse;
         text-align: center;
     }

     footer .footer-container {
         grid-template-columns: 100%;
         padding: 0 0 0 0;
     }
     
 
 }
 
 
    #mainMenu-trigger .x.toggle-active .lines {
      background: transparent !important;
    }
 
 
  /* Mobile slide-in menu */
 @media screen and (max-width: 767px) {
     .hamburger {
         display: block;
     }
     .poplular-ss-tank .portfolio-details .content p{
         display: none;
     }
     #header #logo>a img{
            margin: 0 20px 0 -175px !important;
     }
     .home-banner{
         height: 100%;
         bottom: 0;
         top: 40px;
        margin: 0 0 40px 0;
     }

     .home-banner .img-slider{
         height: 100%;
     }
     .home-banner .img-slider img{
        height: 100%;
     }
     .poplular-ss-tank .portfolio-details h4 {
         font-weight: 600;
        font-size: 18px;
        padding: 20% 2% 0%;
        line-height: 25px;
     }
     
    .product-slide .slick-prev {
       z-index: 100;
       left: 5px;
    }
    .product-slide .slick-right {
          right: 25px;
    }

    
    .price-bx {
         padding: 18% 0 2%;
    }
        .poplular-ss-tank .portfolio-details .price-bx p {
        font-size: 18px;
        padding: 0 5px;
    }
     
     .project-spotlight .main-heading-box .divider{
         width: 25%;
         margin: 0 auto;
     }
     
     .container{
         padding: 0 15px;
     }
     
     .project-spotlight .spotlight-box-slider .spotlight h5{
        font-size: 10px;
        padding: 2% 5% 2%;
    }
    
    .project-spotlight h4 {
     padding: 12% 0 2%;   
    }
     
    .project-spotlight .spotlight-box-slider .slick-dots {
        bottom: -15px;
    }
     
     .hid-des {
         display: block !important;
     }
     .hid-mob {
         display: none;
     }
     .mobile-hid{
         display: none;
     }
     
     .btn-row .transparent-btn{
         width: 100%;
     }
     
        
     .float-call{
        width: 45px !important;
        height: 45px !important;
        left: 12px !important;
     }
     .float-call .my-float-call{
        font-size: 18px !important;
     }
    .float {
        padding: 0 0 5% 0;
        width: 45px !important;
        height: 45px !important;
        bottom: 70px !important;
        left: 12px !important;
     }
     .float .my-float{
        font-size: 18px !important;
     }
     
     .home-banner .img-slider .slick-prev:before{
        font-size: 14px;
        /*padding: 7px 9px 8px;*/
     }
     .home-banner .img-slider .slick-next:before{
        font-size: 14px;
        /*padding: 7px 9px 8px;*/
     }

     .top-bar-sec .Razor-pay {
         display: none;
     }

     .top-bar .top-bar-sec {
         grid-template-columns: 100%;
         text-align: center;
         padding: 0;
     }

     .top-bar .top-bar-sec .i-cta {
         padding: 6px 5px;
         margin: 0px 5px -7px 0;
     }

     .cta-link {
         display: flex;
         padding: 2% 0 3%;
     }

     .cta-link a {
         font-size: 10px;
     }

     .social-div {
         display: none;
     }

     .custom-nav {
         position: fixed;
         top: 0;
         right: -3000px;
         /* hidden off-screen */
         width: 300px;
         height: 100%;
         background: #fff;
         transition: right 0.4s ease;
         z-index: 1050;
         box-shadow: 0 2px 8px rgb(0, 0, 0, 0.2);
     }

     .custom-nav.open {
         right: 0;
         /* slide in */
     }

     .custom-nav .menu {
         flex-direction: column;
         padding-top: 45%;
         align-items: self-start;
     }

     .custom-nav .menu-item {
         width: 100%;
         border-bottom: 1px solid #000;
     }

     .custom-nav .submenu {
         position: static;
         margin: 0 15px;
         box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
         margin: 0 2% 5%;
     }

     .custom-nav .sub-menu {
         background-color: #fff;
         overflow-y: scroll;
         height: 150px;
         border-top: 1px solid #000;
         margin: 0 10px 5px;
         background-color: #fff;
     }

     .custom-nav .menu-link {
         padding: 10px 15px;
         font-size: 14px;
     }

     .custom-nav .menu-link {
         font-size: 14px;
     }

     .custom-nav .submenu-item .submenu-link {
         font-size: 12px;
     }

     .custom-nav .sub-menu .submenu-link {
         border-bottom: 2px solid #40b658;
         color: #000;
         font-size: 13px;
     }
     
     .tablebg th {
         font-size: 14px !important;
     }

     .custom-nav .menu-item.active>.submenu,
     .custom-nav .submenu-item.active>.submenu {
         display: block;
     }
      .foot-logo img {
         padding: 0 0 0 2%;
         width: 45%;
     }
 }

  /* Mobile slide-in menu */
 @media screen and (max-width: 390px) {
         .poplular-ss-tank .portfolio-details h4{        
             font-weight: 600;       
             font-size: 16px;       
             padding: 28% 3% 25%;        
             line-height: 25px;    
             
         }
 }

/*Custom Page CSS*/
.tablebg {
    width: 100%;
    margin: 0;
    padding: 60px 0;
    overflow: hidden;
    background: #007A3D;
    border-radius: 20px;
}

.tablebg .tablinner {
    display: block;
    overflow: hidden;
    width: 767px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
}
.tablebg table {
    border-collapse: collapse;
    width: 100%;
}
.tablebg th {
    background: #9ECA73;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    font-weight: 600;
     border: 1px solid #007a3d;
    padding: 2%;
    font-size: 18px;
    text-align: center;
}
.tablebg td {
    line-height: 1.6;
    color: #fff;
    border: 1px solid #007a3d;
    padding: 2%;
    font-size: 14px;
    text-align: center;
}
/*FAQ CSS*/
.faqbg {
    display: block;
    width: 100%;
    margin: 0;
    overflow: hidden;
}
.bor-bg {
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(140, 152, 164, 0.075);
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid #e4e6ef;
}
.tab-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding-right: 10px;
    font-size: 1rem;
    line-height: 1;
    position: relative;
    font-weight: 500;
    color: #000;
}
.tab-caption {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 10px 0 0px;
    overflow: hidden;
    margin-top: 15px;
}
.tab-button::before {
    content: "+";
    position: absolute;
    top: -5px;
    right: 0;
    display: inline-block;
    font-size: 1.6rem;
    width: 25px;
    height: 25px;
    color: #222;
    text-align: center;
    line-height: 25px;
    font-weight: 300;
}
.on
 {
    color: #000;
}
.on::before {
    content: "-";
    top: -5px;
    right: 0;
    display: inline-block;
    font-size: 1.6rem;
    width: 25px;
    height: 25px;
    color: #222;
    text-align: center;
    line-height: 25px;
    font-weight: 300;
}
.tab-caption p {
    font-size: .9rem;
    line-height: 1.5;
    color: #3d3d3d;
    display: block;
    margin-bottom: .9rem;
}


 .solar-etc .box-container {
     border-radius: 30px;
     -webkit-box-shadow: 0px 0px 23px -2px rgba(0, 0, 0, 0.21);
     -moz-box-shadow: 0px 0px 23px -2px rgba(0, 0, 0, 0.21);
     box-shadow: 0px 0px 23px -2px rgba(0, 0, 0, 0.21);
     padding: 50px 50px 50px 50px;
 }
 
    @media screen and (max-width: 399px) {
     .poplular-ss-tank .portfolio-details .content{
         padding: 0 5%;
     }
     /* ====== FIX FOR HEADING + DOTS ISSUE IN PROJECT SLIDER ====== */
.project-spotlight .slick-dotted.slick-slider {
  margin-bottom: 42px;   /* slider ke neeche space */
}

.project-spotlight .slick-dots {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 16px !important;  /* dots aur image ke beech gap */
}

.project-spotlight h4 {
  text-align: center;
  font-weight: 600;
  margin-top: 28px;      /* upar se space */
  margin-bottom: 18px;   /* dots ke upar space */
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .project-spotlight .slick-dotted.slick-slider { margin-bottom: 36px; }
  .project-spotlight h4 { margin-top: 24px; margin-bottom: 14px; }
}
     ]