.ecom-banner {
    background: url('images/online-shopping-concept.jpg') no-repeat center center/cover;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ecom-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }

  .ecom-content {
    color: #fff;
    max-width: 800px;
  }

  .ecom-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .ecom-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .ecom-btn {
    padding: 12px 30px;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 6px;
    transition: background 0.3s;
  }

  .ecom-btn:hover {
    background-color: #e65c00;
  }

  @media (max-width: 768px) {
    .ecom-content h1 {
      font-size: 2rem;
    }
.ecom-banner{
  height: 30vh;
}
    .ecom-content p {
      font-size: 1rem;
    }

    .ecom-btn {
      padding: 10px 20px;
    }
  }

.ecom-section {
    
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .ecom-section h2 {
      font-size: 32px;
      color: blue;
      margin-bottom: 20px;
    }

    .ecom-section p {
      font-size: 18px;
      color: #555;
      margin-bottom: 25px;
    }

   

    @media (max-width: 768px) {
      .ecom-banner {
        padding: 60px 15px;
        background-position: center top;
      }

     
    }