#theme-main-banner {
  position: relative;
  width: 100%;
  height: 85vh; /* Full screen height */
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.camera_caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  padding: 20px;
  max-width: 80%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent background for better text contrast */
  border-radius: 8px;
}

.subtitle {
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
  margin-bottom: 15px;
}

.title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: capitalize;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.theme-button-one {
  padding: 12px 35px;
  background-color: #f15a29;
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.theme-button-one:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.fadeInUp {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 5s ease-in-out;
}

.slide.active::before {
  transform: scale(1.1); /* Slight zoom effect */
}
