.inner-page {
  padding: 50px 0;
}

.card {
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: transform 0.3s ease;
  height: 100%; /* Set a fixed height for each card */
}

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

.card-img-top {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 200px; /* Adjust the height of the image */
  object-fit: cover; /* Ensure the image covers the entire space */
}

.card-body {
  height: calc(100% - 200px); /* Calculate remaining height for card body */
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 25px;
  font-weight: bold;
}

.card-text {
  font-size: 1rem;
  color: #555;
  flex: 1; /* Allow text to expand within the available space */
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.btn-primary:hover {
  
  transform: translateY(-5px);
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}


