.my-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 4rem 1rem;

}

.my-card {
  position: relative;
  width: 250px;
  height: 250px;
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.my-card:hover {
  transform: scale(1.05);
}

.my-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.my-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(0 34 255 / 70%);
  color: #fff;
  padding: 10px;
  text-align: center;
  /* opacity: 0; */
  transition: opacity 0.3s;
  font-size: 15px;
}


.my-card:hover .my-card-text {
  opacity: 1;
}




body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #252a32;
  background: #ffffff;
  margin: 0;
}

.container {
  max-width: 100%;
  width: 100%;
  padding: 4rem 2rem;
  margin: 0 auto;
}

.main .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  /* justify-content: space-between; Distribute space between items */
  margin: 0 0;
}

.card {
  width: calc(16.666% - 1rem);
  /* 6 cards per row (100% / 6) with 1rem gap */
  height: fit-content;
  /* Adjust the height as needed */
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  margin-bottom: 1rem;
}

.card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gheading {
  text-align: center;
  /* justify-content: center; */
  /* font-size: 21px; */
  background: #fdc52b;
}

.ntdiv .ntbtm-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  /* background: none !important; */
  /* color: #414345; */
  font-size: 15px !important;
  font-weight: normal !important;
  display: flex;
  align-items: center;
  /* background: none !important; */
  padding: 10px;
  color: white;
  width: 100%;
  background-color: #1a89c8 !important;
}

.tbodybrder,
td,
tfoot,
th,
thead,
tr {
  border-width: 4px !important;
}