/* Banner Styling */
.banner {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
  }

  .topheadingofinfra{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .banner-overlay h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .banner-overlay p {
    font-size: 18px;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .banner {
      height: 250px;
    }
  
    .banner-overlay h1 {
      font-size: 24px;
    }
  
    .banner-overlay p {
      font-size: 16px;
    }
  }
  
  /* Section Styles */
  .section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 20px;
  }
  
  .section-row {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .section-image img {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 10px;
  }
  
  .section-text {
    max-width: 600px;
  }
  
  .section-text h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .section-text p {
    font-size: 16px;
    line-height: 1.5;
    color: #444;
  }
  
  .reverse {
    flex-direction: row-reverse;
  }
  
  @media (max-width: 768px) {
    .section-row {
      flex-direction: column;
      text-align: center;
    }
  
    .reverse {
      flex-direction: column;
    }
  }
  