body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.3;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  position: relative;
  background-color: #000;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(https://upload.wikimedia.org/wikipedia/commons/4/4e/J.R.D._Tata_Stadium.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
}

.container {
  max-width: 1000px;
  min-height: 100vh;
  padding-bottom: 2rem;
}

.carousel-img {
  height: 65vh;
  object-fit: cover;
  margin-top: 10px;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  display: block;
}

.carousel-txt {
  background-color: rgba(255, 137, 102, 0.9);
  color: #2a2b2a;
  border-radius: 10px;
  padding: 10px;
  font-weight: bold;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  width: 100%;
  text-align: center;
}

.card,
h5 {
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: bold;
}

.card:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .carousel-img {
    height: 30vh;
    min-height: 200px;
  }

  .container {
    width: 100%;
    padding: 0 10px;
  }
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body .btn {
  margin-top: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon,
.carousel-indicators [data-bs-target] {
  filter: invert(1);
  opacity: 0.7;
}
