 body { font-family: 'Segoe UI', sans-serif; background-color: #f8f9fa; }
    .hero {
      background: url('../img/zipline/munnar-longest-zipline-adventure.jpg') center/cover no-repeat;
      height: 50vh;
      position: relative;
      color: white;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      top: 50%;
      transform: translateY(-50%);
      text-align: center;
    }
    .card-title {
      background: #212529;
      color: white;
      padding: 0.5rem;
      font-size: 1rem;
    }
    .btn-dark {
      background-color: #212529;
      border: none;
    }
    .btn-dark:hover {
      background-color: #343a40;
    }
.card img {
  width: 100%;           /* full width of the card */
  height: 250px;         /* fixed height for all images */
  object-fit: cover;     /* maintain aspect ratio, crop overflow */
  display: block;
}

/* Optional: Ensure card bodies are same height for alignment */
.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}