/* Custom Bootstrap Card Styling */
.card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;

  /* Strong smooth shadow */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Hover effect */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Optional: cleaner card body spacing */
.card-body {
  padding: 1.75rem;
}

/* Card Title Styling */
.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  color: #333;
}

/* Optional underline effect */
.card-title:after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 8px;
  background-color: #ffc107; /* Yellow accent */
}

/* Margin Top */
.mt-10 {
  margin-top: 10px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-50 {
  margin-top: 50px !important;
}

/* Margin Bottom */
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}

.text-black {
  color: black !important;
  text-transform: capitalize;
}
