.home-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 800px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #0b1d2a;
  overflow: hidden;
}

/* Overlay */
.home-banner .overlay {
  background: #ffffff77;
  width: 100%;
  height: 100%;
  position: absolute;
  border-bottom: 1px solid white;
  top: 0;
  left: 0;
  z-index: 1;
}

.home-banner .curve_img_div {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}

.home-banner .curve_img_div .curve_img {
  width: 100%;
  height: auto;
  display: block;
}

.home-banner .banner-swiper,
.home-banner .swiper,
.home-banner .swiper-wrapper,
.home-banner .swiper-slide {
  width: 100%;
  height: 100% !important;
}

.home-banner .swiper-wrapper {
  align-items: stretch !important;
}

.home-banner .banner-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.home-banner .banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-banner .banner-content {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 5;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.home-banner .banner-content .btn_holder {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.home-banner .banner-text {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  color: #010e1e;
}

/* Navigation */
.home-banner .banner-nav {
  position: absolute;
  right: 2.5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 10;
}

.home-banner .banner-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.home-banner .banner-nav-btn:hover {
  background: #e35b2c;
}

.home-banner .banner-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
}

.home-banner .banner-arrow-up {
  transform: rotate(-135deg);
}

.home-banner .banner-arrow-down {
  transform: rotate(45deg);
}

.home-banner .banner-nav-btn:hover .banner-arrow {
  border-color: #fff;
}

@media (min-width: 0px) and (max-width: 575px) {
  .home-banner .banner-content {
    top: 17px;
  }
  .home-banner {
    height: 50vh;
  }

  .home-banner .banner-nav-btn {
    width: 30px;
    height: 30px;
  }

  .home-banner .banner-content .btn_holder {
    flex-direction: column;
    gap: 0px;
  }
  .home-banner .banner-content .btn_holder .white-btn {
    padding: 6px 15px 8px;
    width: 200px;
    margin: 10px auto 0;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .home-banner {
    height: 60vh;
  }

  .home-banner .banner-nav-btn {
    width: 34px;
    height: 34px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .home-banner {
    height: 80vh;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
}

@media (min-width: 1200px) and (max-width: 1399px) {
}

@media (min-width: 1400px) {
}
