/*PC VIEW*/
@media screen and (min-width: 767px) {
    .sliderhomepage {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
  }
  
  /*Mobile VIEW*/
  @media screen and (max-width: 767px) {
    .sliderhomepage {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
  }

/* General Slider Styling */
.swiper-container {
    width: 100%;
    height: 75vh;
    position: relative;
    overflow: hidden;
  }
  
  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  
  .slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 600px;
    background: #000000a6;
    padding: 55px;
  }
  
  .slide-content h4 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  
  .slide-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: bold;
  }
  
  .slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .slide-content .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #e98c25;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  .slide-content .btn:hover {
    background-color: #28a3d8;
    transform: translateY(-3px);
  }
  
  /* Navigation Arrows */
  .swiper-button-prev,
  .swiper-button-next {
    color: white;
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }

  .swiper-button-next:after, .swiper-button-prev:after
  {
    font-size: 22px;
  }

  
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.8);
  }

  
  /* Mobile Responsiveness */
  @media screen and (max-width: 768px) {
    .swiper-container {
      height: 69vh;
    }
  
    .slide-content {
      padding: 30px 1.5rem;
      margin-left: 40px;
      margin-right: 40px;
    }
  
    .slide-content h4 {
      font-size: 1rem;
    }
  
    .slide-content h1 {
      font-size: 2rem;
    }
  
    .slide-content p {
      font-size: 0.9rem;
    }
  
    .slide-content .btn {
      font-size: 0.8rem;
      padding: 0.5rem 1rem;
    }
  
    .swiper-button-prev,
    .swiper-button-next {
      display: none;
    }
  
    .swiper-pagination {
      bottom: 10px;
      place-content: center;
    }

      /* Pagination Dots */
    .swiper-pagination {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: rgb(255 136 5);
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.3s ease;
        --swiper-pagination-bullet-inactive-opacity: 0.35;
    }
    
    .swiper-pagination-bullet-active {
        background: #e98c25;
    }

  }
  