.hero-section-custom {
  position: relative;
  overflow: hidden;
}

.hero-single-custom {
  position: relative;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  animation: zoomBackground 5s infinite alternate;
}


@keyframes zoomBackground {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 15px;
}

.owl-nav button {
  background: #AFBE8F!important;
  border: none!important;
  color: #FFF!important;
  font-size: 20px!important;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.owl-nav button:hover {
  background: #C44900;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}




