/* Banner Styling */
.banner-slide {
    height: 100vh; /* Full-screen height */
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
  }
  
  .text-box {
    max-width: 600px;
  }
  
  .text-box h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
  }
  
  .highlight-bar {
    width: 6px;
    height: 60px;
    background-color: #ff6b3d; /* Highlight color */
    margin-bottom: 1rem;
  }
  
  @media (min-width: 768px) {
    .text-box h1 {
      font-size: 4rem;
    }
  }
  
  