/* ---------- Banner Section: Responsive Styling ---------- */

/* Desktop - 992px and above */
@media only screen and (min-width: 992px) {
  .banner-section .content-box {
    padding-left: 130px;
  }

  .banner-section.two .content-box {
    padding-left: 130px;
  }
}

/* Tablet - 768px to 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-section .content-box {
    padding-left: 130px;
  }

  .banner-section .content-box h1,
  .banner-section.two .content-box h1 {
    font-size: 70px;
    line-height: 80px;
  }

  .banner-section.two .content-box {
    padding-left: 130px;
  }
}

/* Mobile - max 767px */
@media only screen and (max-width: 767px) {
  .banner-section .banner-slider-nav {
    display: none;
  }

}
/* ---------- Banner Section: Responsive Styling ---------- */

/* Base styles */
.banner-section .content-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: left;
  z-index: 2;
  width: 100%;
  padding: 20px;
}

.banner-section .content-box .inner h1 {
  font-size: 2em;
  line-height: 1.2;
}

.banner-section .link-box {
  margin-top: 20px;
}

/* Desktop - 992px and above */
@media only screen and (min-width: 992px) {
  .banner-section .content-box {
    padding-left: 130px;
  }

  .banner-section.two .content-box {
    padding-left: 130px;
  }
}

/* Tablet - 768px to 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-section .content-box {
    padding-left: 130px;
  }

  .banner-section .content-box h1,
  .banner-section.two .content-box h1 {
    font-size: 70px;
    line-height: 80px;
  }

  .banner-section.two .content-box {
    padding-left: 130px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-section {
    position: relative;
    overflow: hidden;
  }

  .banner-section .content-box {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    padding: 10px !important;
    text-align: left !important; /* LEFT align everything */
    color: white !important;
    max-width: 100%;
    width: 100%;
    z-index: 2;
  }

  .banner-section .content-box .inner h1 {
    font-size: 1rem !important;
    line-height: 1.2 !important;
    margin: 0 0 8px 0 !important; /* Smaller space below the title */
    padding: 0 !important;
    max-width: 100%;
  }
  .banner-section .link-box {
    max-width: fit-content;
    width: auto;
    margin: 0 !important;
    padding: 0 !important;
  }

  .banner-section .link-box a.right-btn {
    display: inline-block;
    margin: 0 !important;
    padding: 3px 6px !important;       /* Smaller padding */
    font-size: 0.5rem !important;      /* Half the original size */
    text-align: center;
    line-height: 0.5 !important;         /* Remove extra height */
  }
  
  
  
  
  
  