 /* Header Section */
.banner-image {
 background-image: url("../images/products/residential-pump/res.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 420px;
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px; 
}

.banner-image h1 {
  font-size: 2.8rem;
  font-weight: 700;
  background: rgba(0,0,0,0.4);
  padding: 10px 20px;
  border-radius: 6px;
  margin: 0;
}

/* Responsive Header */
@media (max-width: 768px) {
  .banner-image {
    height: 250px;
    padding-left: 15px;
  }
  .banner-image h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    text-align: left;
  }
}
  /* Overview full white background */
.overview-section {
  background: #fff;  
  margin: 0;          
  padding: 40px 0;    
  border-radius: 0;   
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* household section css */
   .pump-section {
      background: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    }
    .pump-text {
      background-color: #f2a41d;
      color: #0f3054;
      padding: 60px 40px;
    }
    .pump-text h2 {
      font-size: 2.5rem;
      font-weight: bold;
      color: #0f3054;
    }
    .pump-text p {
      font-size: 1.1rem;
      margin-top: 20px;
    }
    .stats {
      margin-top: 30px;
    }
    .stats h3 {
      font-size: 2rem;
      font-weight: bold;
      color: #0f3054;
    }
    .stats span {
      font-size: 1rem;
      display: block;
    }
    .pump-img {
      background-color: #0f3054;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }
    .pump-img img {
      max-width: 62%;
      border-radius: 12px;
    }
    /* Mounting section*/
   .mounting-section {
      background: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    }
    .mounting-text {
      color: #0f3054;
      padding: 60px 40px;
    }
    .mounting-text h2 {
      font-size: 2.5rem;
      font-weight: bold;
      color: #0f3054;
    }
    .mounting-text p {
      font-size: 1rem;
      margin-top: 20px;
    }
    .mounting-stats {
      margin-top: 30px;
    }
    .mounting-stats h3 {
      font-size: 2rem;
      font-weight: bold;
      color: #0f3054;
    }
    .mounting-stats span {
      font-size: 1rem;
      display: block;
    }
    .mounting-img {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }
    .mounting-img img {
      max-width: 100%;
      border-radius: 12px;
    }
   @media (max-width:576px) {
    .mounting-text{
      padding: 3px 40px;
    }
   }