.custom-btn {
    background-color: transparent !important;
    border: 1px solid #ffffff !important; /* Remove border */
    border-radius: 0px;
    color: white !important;
    font-size: 12px;
  }
  .custom-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
    /* Style the indicators as large round dots */
    .carousel-indicators [data-bs-target] {
      width: 20px; /* larger size */
      height: 20px;
      border-radius: 50%;
      background-color: #fff; /* default color */
      border: none;
      opacity: 0.7;
    }
    /* Active indicator style */
    .carousel-indicators .active {
      background-color: #000000; /* Bootstrap primary color */
      opacity: 1;
    }

    @media (max-width: 767.98px) {
  .carousel-inner img {
    width: 100%;
    height: 350px; /* Maintain aspect ratio */
    display: block; /* Remove inline spacing if needed */
  }
}