.cards-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.custom-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.custom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.custom-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.custom-card-body {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
}

.custom-card-title {
  color: #000000;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.custom-card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.view-more-btn {
  display: inline-block;
  padding: 7px 10px;
  background: #0D4EA0;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
  text-align: right;
}

.view-more-btn:hover {
  background: #084298;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-card-img {
    height: 160px;
  }
  .custom-card-title {
    font-size: 1rem;
  }
  .custom-card-text {
    font-size: 0.85rem;
  }
}

