      /* Hero Carousel Styles */
      .hero-carousel {
        position: relative;
        width: 100%;
        height: 750px;
        overflow: hidden;
      }

      .carousel-container {
        position: relative;
        width: 100%;
        height: 100%;
      }

      .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        z-index: 1;
      }

      .carousel-slide.active {
        opacity: 1;
        z-index: 2;
      }

      .slide-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .slide-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
      }

      .hero-content {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        z-index: 3;
      }

      .hero-text {
        color: white;
        max-width: 600px;
        animation: fadeInUp 1s ease-out;
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .carousel-slide.active .hero-text {
        animation: fadeInUp 4s ease-out;
      }

      .hero-brand {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        font-size: 1rem;
        font-weight: 500;
      }

      .brand-logo-hero {
        height: 40px;
        width: auto;
        object-fit: contain;
      }

      .hero-text h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
        letter-spacing: 2px;
      }

      .hero-text p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        letter-spacing: 1px;
      }

      .btn {
        display: inline-block;
        padding: 15px 40px;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
      }

      .btn-primary {
        background-color: #fff;
        color: #333;
      }

      .btn-primary:hover {
        background-color: #3C1E12;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      }

      /* Navigation Arrows */
      .carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.5);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        font-size: 18px;
      }

      .carousel-nav:hover {
        background-color: rgba(255, 255, 255, 0.4);
        border-color: rgba(255, 255, 255, 0.8);
        transform: translateY(-50%) scale(1.1);
      }

      .carousel-nav.prev {
        left: 30px;
      }

      .carousel-nav.next {
        right: 30px;
      }

      /* Carousel Dots */
      .carousel-dots {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 10;
      }

      .carousel-dots .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
      }

      .carousel-dots .dot:hover {
        background-color: rgba(255, 255, 255, 0.8);
        transform: scale(1.2);
      }

      .carousel-dots .dot.active {
        background-color: white;
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(1.3);
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .hero-carousel {
          height: 500px;
        }

        .hero-text h1 {
          font-size: 2.5rem;
        }

        .hero-text p {
          font-size: 1rem;
        }

        .carousel-nav {
          width: 40px;
          height: 40px;
          font-size: 16px;
        }

        .carousel-nav.prev {
          left: 20px;
        }

        .carousel-nav.next {
          right: 20px;
        }
      }

      @media (max-width: 768px) {
        .hero-carousel {
          height: 450px;
        }

        .hero-text h1 {
          font-size: 2rem;
        }

        .hero-text p {
          font-size: 0.9rem;
        }

        .hero-brand {
          font-size: 0.85rem;
        }

        .brand-logo-hero {
          height: 30px;
        }

        .btn {
          padding: 12px 30px;
          font-size: 0.9rem;
        }

        .carousel-nav {
          width: 35px;
          height: 35px;
          font-size: 14px;
        }

        .carousel-nav.prev {
          left: 15px;
        }

        .carousel-nav.next {
          right: 15px;
        }

        .carousel-dots .dot {
          width: 10px;
          height: 10px;
        }
      }

      @media (max-width: 576px) {
        .hero-carousel {
          height: 400px;
        }

        .hero-text {
          max-width: 100%;
          padding: 0 15px;
        }

        .hero-text h1 {
          font-size: 1.5rem;
          letter-spacing: 1px;
        }

        .hero-text p {
          font-size: 0.8rem;
          margin-bottom: 20px;
        }

        .hero-brand {
          font-size: 0.75rem;
          margin-bottom: 15px;
        }

        .btn {
          padding: 10px 25px;
          font-size: 0.85rem;
        }

        .carousel-nav {
          width: 30px;
          height: 30px;
          font-size: 12px;
        }

        .carousel-nav.prev {
          left: 10px;
        }

        .carousel-nav.next {
          right: 10px;
        }

        .carousel-dots {
          bottom: 20px;
        }

        .carousel-dots .dot {
          width: 8px;
          height: 8px;
        }
      }