/* Backgrounds */
.slider-bg-one {
    background: url("./images/slider_01.jpg") center center/cover no-repeat;
}

.slider-bg-two {
    background: url("./images/slider_02.jpg") center center/cover no-repeat;
}

.slider-bg-three {
    background: url("./images/slider_03.jpg") center center/cover no-repeat;
}

/* Full height & blur overlay */
.slider-item {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    backdrop-filter: blur(4px); /* blur effect */
    z-index: 1;
}

/* Content Styling */
.slider-content-area {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 15px;
}

.slide-text h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 4px 6px rgba(0,0,0,0.5);
}

.slide-text h1 span {
    color: #f09223;
}

.slide-text h2 {
    color: #ddd;
    font-size: 20px;
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* Buttons */
.slider-content-btn {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-custom {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #f09223;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-custom:hover {
    background: #f09223;
}


/* Owl Nav Customization */
.owl-nav .owl-prev, .owl-nav .owl-next {
    background: rgba(0, 0, 0, 0.6);
    color: #fff !important;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    transition: background 0.3s ease;
}

.owl-nav .owl-prev {
    left: 15px;
}

.owl-nav .owl-next {
    right: 15px;
}

.owl-nav .owl-prev:hover, .owl-nav .owl-next:hover {
    background: #f09223;
}
@media (max-width: 768px) {
    .slider-item {
      height: auto;
      padding: 100px 0;
    }
  
    .slide-text h1 {
      font-size: 32px;
      line-height: 1.3;
    }
  
    .slide-text h1 span {
      display: inline-block;
    }
  
    .slide-text h2 {
      font-size: 16px;
      padding: 0 10px;
    }
  
    .slider-content-btn {
      flex-direction: column;
      gap: 10px;
      padding-top: 10px;
    }
  
    .btn-custom {
      width: 100%;
      max-width: 250px;
      text-align: center;
    }
  
    .owl-nav .owl-prev, .owl-nav .owl-next {
      width: 40px;
      height: 40px;
      font-size: 18px;
      line-height: 40px;
    }
  }
  
  @media (max-width: 480px) {
    .slide-text h1 {
      font-size: 26px;
    }
  
    .slide-text h2 {
      font-size: 14px;
    }
  
    .btn-custom {
      font-size: 14px;
      padding: 10px 20px;
    }
  }
  