.banner {
  position: relative;
  width: 100%;
  min-height: 85vh; /* Full screen height */
  display: flex;
  justify-content: center;
  /*align-items: end;*/
  overflow: hidden;
  /*color: white;*/
  /* text-align: center; */
}

/* Background Video */
.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

/* Gradient Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 45%);
  z-index: -2;
}

/* Banner Content */
.banner-content {
  position: relative;
  /* z-index: 1; */
  /* width: 50%; */
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.badg-1 {
  background: #2f2d2d;
  color: #fff;
}

.banner-content .btn {
  font-size: 1rem;
  padding: 10px 20px;
  border: 2px solid #ffffff;
  color: #ffffff;
  /* border-radius: 0; */
  background-color: #b8860b;
}
.btn:hover {
      border: 2px solid #000000;
      color: #000000;
  }
.maintext {
  font-size: 2rem;
  /* text-transform: uppercase; */
}

@media (max-width: 1200px) {
  .maintext {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .maintext {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .maintext {
    font-size: 2rem;
  }
  .bg-cover-fixed {
    background-attachment: scroll !important;
  }
}

@media (max-width: 576px) {
  .maintext {
    font-size: 2rem;
  }
}


