  .hero {
      background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.9)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 100px 0;
  }

  .hero-slider {
      position: relative;
      height: 100vh;
      overflow: hidden;
  }

  .hero-slide {
      height: 100vh;
      background-size: cover;
      background-position: center;
      position: relative;
  }

  .hero-content {
      padding: 2rem 0;
      max-width: 600px;
  }

  .hero-image-container {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .hero-image {
      max-height: 70vh;
      max-width: 100%;
      object-fit: contain;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
      0% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-20px);
      }

      100% {
          transform: translateY(0px);
      }
  }

  /* Search Bar Styles */
  .hero-search-container {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 10;
      transform: translateY(50%);
  }

  .hero-search {
      background-color: white;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  /* Carousel Customization */
  .carousel-indicators {
      bottom: 80px;
  }

  .carousel-indicators button {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin: 0 5px;
      background-color: rgba(255, 255, 255, 0.5);
      border: none;
  }

  .carousel-indicators button.active {
      background-color: white;
  }

  .carousel-control-prev,
  .carousel-control-next {
      width: 5%;
  }

  /* Animation for content */
  [data-aos] {
      opacity: 0;
      transition: all 0.8s ease;
  }

  [data-aos="fade-right"] {
      transform: translateX(-50px);
  }

  [data-aos="fade-left"] {
      transform: translateX(50px);
  }

  .carousel-item.active [data-aos] {
      opacity: 1;
      transform: translateX(0);
  }

  /* Responsive adjustments */
  @media (max-width: 991.98px) {
      .hero-content {
          text-align: center;
          margin: 0 auto;
          padding: 1rem 0;
      }

      .hero-content .d-flex {
          justify-content: center;
      }

      .carousel-indicators {
          bottom: 120px;
      }

      .hero-search-container {
          position: relative;
          transform: translateY(0);
          margin-top: -70px;
          margin-bottom: 30px;
      }

      .hero-slider,
      .hero-slide {
          height: auto;
          min-height: 100vh;
      }

      .hero-search {
          padding: 15px;
      }
  }

  @media (max-width: 767.98px) {
      .hero-slider {
          height: auto;
          min-height: 60vh;
          max-height: 60vh;
      }

      .hero-slide {
          height: auto;
          min-height: 90vh;
          padding: 80px 0 120px;
      }

      .mobile-title {
          font-size: 2.2rem;
          margin-bottom: 0.5rem !important;
      }

      .mobile-text {
          font-size: 1rem;
          margin-bottom: 1rem !important;
      }

      .hero-buttons .btn {
          font-size: 0.875rem;
          padding: 0.375rem 0.75rem;
      }

      .hero-search {
          padding: 12px;
          margin-top: -50px;
      }

      .hero-search-container {
          margin-bottom: 20px;
      }

      .carousel-indicators {
          bottom: 100px;
      }

      .carousel-indicators button {
          width: 8px;
          height: 8px;
          margin: 0 3px;
      }

      .carousel-control-prev,
      .carousel-control-next {
          width: 10%;
      }
  }

  @media (max-width: 575.98px) {
      .hero-slide {
          padding: 60px 0 100px;
          min-height: 60vh;
          max-height: 60vh;
      }

      .mobile-title {
          font-size: 1.8rem;
      }

      .mobile-text {
          font-size: 0.9rem;
      }

      .hero-buttons .btn {
          font-size: 0.75rem;
          padding: 0.25rem 0.5rem;
      }

      .hero-search {
          padding: 10px;
      }

      .carousel-indicators {
          bottom: 80px;
      }
  }