.slider {
      position: relative;
      width: 100%;
      height: 600px;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

    .slide img {
      width: 100%;      
      object-fit: cover;
    }

    .content-wrapper {
      position: absolute;
      top: 450px;
      left: 11%;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

.banner-text-wep{font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: #fff;
    background: none;
    padding: 0 0 0px 0px;
    
}

    .heading-box {
		font-family: 'Merriweather', serif;
        font-size: 2.8em;
        font-weight: 500;
        font-style: normal;        
        background-color: #20b5da;
      color: #fff;
      padding: 10px 30px;
     border-radius: 0 16px 2px 16px;
     width: 100%; /* 👈 heading width */
    }

    .text-box {
     font-family: 'Merriweather', serif;
        font-size: 1em;
        font-weight: 500;
        font-style: normal;        
      background-color: rgba(255, 255, 255);
      color: #080808;
      padding: 20px 30px;
      border-radius: 2px;
      width: 80%; /* 👈 text box width */
    }

    .heading-box h1 {
      font-size: 36px;
       margin: 0;
    }

    .text-box p {
      font-size: 16px;
      margin: 0;
    }

    @media (max-width: 768px) {
      .heading-box {
        width: 90%;
      }
      .text-box {
        width: 85%;
      }
      .heading-box h1 {
        font-size: 28px;
      }
      .text-box p {
        font-size: 16px;
      }
    }