
/* =============================
   BANNER SECTION
============================= */
.banner-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* =============================
   SLIDER STRUCTURE
============================= */
.banner-slider-two,
.banner-slider-two .swiper-slide {
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

/* =============================
   DARK OVERLAY
============================= */
.swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
  z-index: 1;
}

/* =============================
   GRID LINES
============================= */
.grid-line span {
  position: absolute;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.1);
  z-index: 2;
}

.line-one { left: 33%; }
.line-two { left: 66%; }

/* =============================
   CONTENT
============================= */
.content-outer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 5;
}

.content-box {
  margin-left: 8%;
  color: #fff;
  max-width: 600px;
}

.inner h4 {
  color: #ff6600;
  margin-bottom: 10px;
  font-size: 18px;
}

.inner h1 {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
}

.inner span {
  color: #ff6600;
}

/* =============================
   BUTTONS
============================= */
.link-box {
  margin-top: 20px;
}

.theme-btn {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid #ff6600;
  background: #ff6600;
  color: #fff;
  margin-right: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.theme-btn:hover {
  background: transparent;
  color: #fff;
}

.theme-btn.style-two {
  background: transparent;
}

/* =============================
   BOTTOM TABS
============================= */
.custom-pager {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 10;
}

.custom-pager .swiper-slide {
  text-align: center;
  padding: 15px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.custom-pager .swiper-slide-thumb-active {
  background: rgba(255,102,0,0.2);
}

/* =============================
   RIGHT DOTS
============================= */
.banner-slider-pagination {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #ff6600;
  opacity: 1;
}

/* =============================
   TABLET VIEW
============================= */
@media (max-width: 1024px) {

  .inner h1 {
    font-size: 40px;
  }

  .content-box {
    margin-left: 5%;
  }

}

/* =============================
   MOBILE VIEW (MAIN FIX)
============================= */
@media (max-width: 768px) {

  /* 🔥 FIX HEIGHT */
  .banner-section {
    height: 55vh !important;
    min-height: 380px;
  }

  .banner-slider-two,
  .banner-slider-two .swiper-slide {
    height: 100% !important;
  }

  /* REMOVE GRID LINES */
  .grid-line {
    display: none;
  }

  /* CENTER CONTENT */
  .content-outer {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .content-box {
    margin-left: 0;
    padding: 0 15px;
  }

  /* TEXT SIZE */
  .inner h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .inner h4 {
    font-size: 14px;
  }

  /* BUTTON FIX */
  .link-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .theme-btn {
    padding: 8px 14px;
    font-size: 12px;
    margin: 0;
  }

  /* HIDE TABS (OPTIONAL) */
  .custom-pager {
    display: none;
  }

  /* DOT POSITION FIX */
  .banner-slider-pagination {
    right: 10px;
  }

}

/* =============================
   SMALL MOBILE
============================= */
@media (max-width: 480px) {

  .banner-section {
    height: 50vh !important;
  }

  .inner h1 {
    font-size: 20px;
  }

}