.banner {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust height as needed */
    overflow: hidden;
  }

  .banner img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keeps image proportionate */
    filter: brightness(70%); /* Darken for text visibility */
  }

  .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }

  .banner-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }

  .banner-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .banner-btn {
    background-color: #004575;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }

  .banner-btn:hover {
    background-color: #0077b6;
  }

  @media (max-width: 768px) {
    .banner-text h1 {
      font-size: 2rem;
    }
    .banner-text p {
      font-size: 1rem;
    }
  }