.feature-cards-section .feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  max-height: 400px;
}

.feature-cards-section .feature-card:hover {
  transform: translateY(-4px);
}

.feature-cards-section .feature-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

/* Placeholder if no image */
.feature-cards-section .feature-card-placeholder {
  background-color: #f2f2f2;
  color: #888;
  height: 280px;
  font-size: 1.25rem;
}

.feature-cards-section .placeholder-text {
  text-align: center;
  color: #555;
}

.feature-cards-section .feature-card-overlay {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  background: rgb(255 255 255 / 80%);
  color: #122b54;
  transition: background 0.3s ease;
}

.feature-cards-section .feature-card:hover .feature-card-overlay {
  background: rgba(255, 255, 255, 0.97);
}

.feature-cards-section .feature-card-overlay h5 {
  font-size: 1.25rem;
  font-weight: 700;
}
