   h1 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .grid-container {
      display: flex;
	  flex-wrap:wrap;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
	  margin:20px;
	  justify-content: center; /* ✅ Center items horizontally */
	  }

    .card {
      position: relative;
      overflow: hidden;
      /* border-radius: 16px; */
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      text-decoration: none;
      color: inherit;
      transition: transform 0.3s ease;
      height: 400px;
    }

    .card:hover {
      transform: translateY(-6px);
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .card:hover img {
      transform: scale(1.05);
    }


	.card-overlay {
	  position: absolute;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
	  z-index: 1;
	}

	   /* Adjust layering so content appears above overlay */
	.card-content {
	  position: absolute;
	  bottom: 0;
	  left: 0;
	  right: 0;
	  padding: 20px;
	  background: linear-gradient(to top, rgba(0,0,0,0.8) 70%, transparent 100%);
	  color: #fff;
	  z-index: 2;
	  height: 50%; /* Increase the height of the bottom overlay area */
	}

    .card-title {
      font-size: 1.25rem;
      font-weight: bold;
      margin-bottom: 6px;
    }
	
	.card-subtitle {
      font-size: 1rem;
      /* font-weight: bold; */
      margin-bottom: 6px;
	  color:skyblue;
    }

    .card-description {
      font-size: 0.95rem;
      line-height: 1.4;
      color: #e0e0e0;
    }
	
	.card-description .highlight {
  color: #0077b6; /* or any other color you prefer */
  font-weight: 600;
  text-decoration: underline;
}

    @media (max-width: 600px) {
      .card {
        height: 400px;
      }

      .card-title {
        font-size: 1rem;
      }

      .card-description {
        font-size: 0.85rem;
      }
    }