/* Hero Swiper Specific Styles */
.hero-swiper-section {
    position: relative;
    overflow: hidden;
  }
  
  .hero-swiper {
    width: 100%;
    height: 100%;
  }
  
  .hero-swiper .swiper-slide {
    height: auto;
  }
  
  /* Navigation Arrows */
  .hero-swiper .swiper-button-next, .hero-swiper .swiper-button-prev {
    color: #c0df16;
    background-color: rgb(25 22 17);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

  
  .hero-swiper .swiper-button-next:hover,
  .hero-swiper .swiper-button-prev:hover {
    background-color: #c0df16  ;
    color: white;
    transform: scale(1.1)
  }
  
  .hero-swiper .swiper-button-next:after,
  .hero-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
  }
  
  /* Adjust arrow positions */
  .hero-swiper .swiper-button-prev {
    left: 20px;
  }
  
  .hero-swiper .swiper-button-next {
    right: 20px;
  }
  
  /* Pagination Styles */
  .hero-swiper .swiper-pagination {
    bottom: 30px;
  }
  
  /* Bullets */
  .hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
  }
  
  .hero-swiper .swiper-pagination-bullet-active {
    background: #c0df16;
    width: 32px;
    border-radius: 6px;
  }
  
  /* Fraction */
  .hero-swiper .swiper-pagination-fraction {
    color: #c0df16;
    font-size: 18px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Progress Bar */
  .hero-swiper .swiper-pagination-progressbar {
    background: rgba(255, 255, 255, 0.3);
    height: 4px;
  }
  
  .hero-swiper .swiper-pagination-progressbar-fill {
    background: #c0df16;
  }
  
  /* Slide Effects */
  .hero-swiper.swiper-fade .swiper-slide {
    opacity: 0 !important;
    transition-property: opacity;
  }
  
  .hero-swiper.swiper-fade .swiper-slide-active {
    opacity: 1 !important;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
      width: 36px;
      height: 36px;
    }
    
    .hero-swiper .swiper-button-next:after,
    .hero-swiper .swiper-button-prev:after {
      font-size: 16px;
    }
    
    .hero-swiper .swiper-button-prev {
      left: 10px;
    }
    
    .hero-swiper .swiper-button-next {
      right: 10px;
    }
    
    .hero-swiper .swiper-pagination {
      bottom: 20px;
    }
    
    .hero-swiper .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      margin: 0 4px;
    }
    
    .hero-swiper .swiper-pagination-bullet-active {
      width: 24px;
    }
  }
  
  /* Disable navigation on touch devices */
  @media (hover: none) and (pointer: coarse) {
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
      display: none;
    }
  }
  
  /* Animation for slide content */
  .swiper-slide-active .hero-reviews {
    animation: fadeInUp 0.6s ease-out;
  }
  
  .swiper-slide-active .hero-title {
    animation: fadeInUp 0.6s ease-out 0.1s both;
  }
  
  .swiper-slide-active .hero-cta {
    animation: fadeInUp 0.6s ease-out 0.2s both;
  }
  
  .swiper-slide-active .hero-guarantee {
    animation: fadeInUp 0.6s ease-out 0.3s both;
  }
  
  .swiper-slide-active .hero-image-container {
    animation: fadeInRight 0.8s ease-out 0.2s both;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }








