
/*--------------------------------------------------------------
# Hero Carousel
--------------------------------------------------------------*/
.hero .swiper-wrapper {
  height: 100%;
}

.hero .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 80px 0;
}

.hero .swiper-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .swiper-slide .container {
  position: relative;
  z-index: 3;
}

.hero .swiper-pagination-bullet {
  background-color: var(--default-color);
  opacity: 0.5;
}

.hero .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
}


    /* Hero Section Base Styles */
    .hero.section {
      position: relative;
      min-height: 100vh;
      width: 100%;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    /* Carousel Wrapper */
    #heroCarousel {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    #heroCarousel .carousel-inner {
      height: 100%;
    }

    #heroCarousel .carousel-item {
      height: 100%;
      width: 100%;
    }

    #heroCarousel .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    /* Content Overlay */
    .hero .container {
      position: relative;
      z-index: 2;
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .hero h2 {
      color: #fff;
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .hero p {
      color: #fff;
      font-size: 18px;
      margin-bottom: 30px;
    }

    .cta-btn {
      display: inline-block;
      padding: 12px 40px;
      background-color: #e63946;
      color: #fff;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .cta-btn:hover {
      background-color: #d62828;
      transform: translateY(-2px);
    }

    /* Dark Background Overlay */
    .hero-overlay {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
      pointer-events: none;
    }

    /* Carousel Controls */
    .carousel-control-prev,
    .carousel-control-next {
      width: 60px;
      height: 60px;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      opacity: 0.8;
      z-index: 10;
      margin: 0 20px;
    }

    .carousel-control-prev {
      left: 20px;
    }

    .carousel-control-next {
      right: 20px;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      opacity: 1;
      background-color: rgba(255, 255, 255, 0.3);
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      width: 30px;
      height: 30px;
    }

    /* Carousel Indicators */
    .carousel-indicators {
      bottom: 30px;
      z-index: 10;
      margin-bottom: 0;
    }

    .carousel-indicators button {
      width: 12px!important;
      height: 12px!important;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.5);
      border: none;
      margin: 0 5px;
    }

    .carousel-indicators button.active {
      background-color:var(--nav-hover-color);;
      width: 14px;
      height: 14px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .hero h2 {
        font-size: 32px;
      }

      .hero p {
        font-size: 16px;
      }

      .carousel-control-prev,
      .carousel-control-next {
        width: 40px;
        height: 40px;
        display: none;
      }

      .carousel-control-prev {
        left: 10px;
      }

      .carousel-control-next {
        right: 10px;
      }
    }
 

