/* Home Slider Section */
.home-slider {
    background-image: url('http://localhost/olspab/public/assets/banner/slider-bg.png'); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative; 
    margin-bottom: 50px;
  }
  
  /* Carousel Indicators */
  .carousel-indicators button {
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    border: none;
    transition: background-color 0.3s;
  }
  
  .carousel-indicators .active {
    background-color: #73BF43;
  }
  
  /* Header Text Box */

  
  .header__text-box h1 {
    color: #4b4b4b;
    font-size: 4rem; 
    font-weight: 900;
    line-height: 1.2;
    text-align: left;
  }
  
  .header__text-box h1 span {
    color: #73BF43;
  }
  
  .header__text-box p {
    margin: 0;
    text-align: justify;
    margin-top: 1.5rem;
    line-height: 1.5;
    color: #4b4b4b;
  }
  
  /* Carousel Controls */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 5%;
  }
  
  /* Button Styling */
  .btn-warning {
    background-color: #FAA51A;
    border: none;
    transition: background-color 0.4s, color 0.4s;
  }
  
  .btn-warning:hover {
    background-color: #e69500; /* Darker shade on hover */
    color: #fff;
  }

  .slide img {
    clip-path: circle(80% at 66% 50%);
    height: 414px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .header__text-box h1 {
      font-size: 2rem;
    }
  
    .carousel-indicators button {
      width: 15px;
      height: 15px;
    }
  
    .carousel-control-prev,
    .carousel-control-next {
      width: 10%;
    }
  
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      padding: 5px;
    }
  }
  