.text-overlay-container {
    position: relative;
    width: 100vw;
    height: 70vh;
    overflow: hidden;
}
.baner_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(60%);
}
.border-frame {
    position: absolute;
    width: 60%;
    height: 50%;
    border: 5px solid white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.overlay-text {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: black;
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 8px;
}