/* === Reset CSS === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === Body Styles === */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f1f1f1;
  color: #333;
}

/* === Banner Wrapper === */
.banner {
  background-color: #000; /* optional for contrast */
  padding: 40px 0;
}

/* === Carousel Image === */
.carousel-inner img {
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

/* === Carousel Caption Box === */
.carousel-caption {
  background-color: rgba(0, 0, 0, 0.5); /* dark transparent */
  padding: 20px 30px;
  border-radius: 10px;
  text-align: left;
}

.carousel-caption h1 {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
}

.carousel-caption p {
  color: #ddd;
  font-size: 18px;
  margin-bottom: 15px;
}

/* === Button Styling === */
.carousel-caption button {
  padding: 10px 20px;
  border: none;
  background-color: #ffc107;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-caption button:hover {
  background-color: #e0a800;
}

/* === Carousel Controls === */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  padding: 10px;
}

/* === Carousel Indicators === */
.carousel-indicators [data-bs-target] {
  background-color: #ffc107;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
