.banner-wrapper {
    position: relative;
    text-align: center;
    color: white;
  }

  .banner-image {
    width: 100%;
    height: 80vh; /* Adjust height as needed (60% of viewport height) */
    object-fit: cover; 

  }

  .banner-text {
    color: #ffff;
    position: absolute;
    top: 55%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .banner-text h1 {
    margin-top: 40px;
    color: #ffff;
    line-height: 65px;
    font-size: 3rem;
    font-weight: bold; /* Make the tagline bold */

  }
  .tagline {
    color: #ffff;
font-size: 2rem; /* Increase font size for the tagline */
font-weight: bold; /* Make the tagline bold */
}

  @media (max-width: 768px) {
    .banner-image{
      width: 100%;
      height: auto;
    }

    .banner-text h1 {
      line-height: 30px;
      font-size: 1.5rem; /* Adjust font size for mobile */
    }
    .tagline {
    color: #ffff;
font-size: 0.8rem; /* Increase font size for the tagline */
font-weight: bold; /* Make the tagline bold */
}
    .banner-text {
      width: 100%;
  top: 50%; /* Adjust position for better visibility on mobile */
}
  }

