#hero-video {
  filter: blur(30px);
  transform: scale(1.2);
  transition: filter 1s ease-in-out;
}

#hero-video.loaded {
  filter: blur(0);
  transform: scale(1.2);
}

/* Carousel indicator styles */
.carousel-indicator {
  transition: all 0.3s ease;
}

.carousel-indicator:hover {
  transform: scale(1.2);
}

/* Active carousel indicator */
.carousel-indicator[aria-current="true"],
.carousel-indicator.active {
  background-color: #d97706 !important; /* primary color */
  opacity: 1 !important;
  transform: scale(1.1);
}

/* List styling */
ul, ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

ul {
  list-style-type: disc;
}

ul ul {
  list-style-type: circle;
  margin: 0.5rem 0;
}

ul ul ul {
  list-style-type: square;
}

ol {
  list-style-type: decimal;
}

ol ol {
  list-style-type: lower-alpha;
  margin: 0.5rem 0;
}

ol ol ol {
  list-style-type: lower-roman;
}

li {
  margin: 0.5rem 0;
  line-height: 1.6;
}

/* Nested list spacing */
ul li, ol li {
  padding-left: 0.5rem;
}

/* List with no bullets (for custom styling) */
.list-none {
  list-style: none;
  padding-left: 0;
}

/* Custom bullet styles */
.list-custom-bullet {
  list-style: none;
  padding-left: 0;
}

.list-custom-bullet li {
  position: relative;
  padding-left: 1.5rem;
}

.list-custom-bullet li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d97706; /* primary color */
  font-weight: bold;
  font-size: 1.2em;
}

/* Numbered list with custom styling */
.list-custom-number {
  list-style: none;
  padding-left: 0;
  counter-reset: item;
}

.list-custom-number li {
  position: relative;
  padding-left: 2.5rem;
  counter-increment: item;
}

.list-custom-number li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background: #d97706; /* primary color */
  color: white;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}
