.icon-circle-lg {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #e9f0f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .border-end {
    border-right: none !important;
    border-bottom: 2px solid #dee2e6 !important;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
}

.care-card {
  background: linear-gradient(135deg, #1e3c72, #2a5298); /* Cool blue gradient */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.care-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.care-letter {
  min-width: 1.2em;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  opacity: 0.9;
}

.approach-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.mission-card,
.vision-card,
.teal-card {
  border-radius: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card {
  background: linear-gradient(135deg, #2a5298, #1e3c72);
}

.vision-card {
  background: linear-gradient(135deg, #f7c66f, #e0a60c);
}

.teal-card {
  background: linear-gradient(135deg, #56a0ae, #7793b8);
}

.mission-card:hover,
.vision-card:hover,
.teal-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Large Circle for Icons */
.icon-circle-xl {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #e9f0f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle-xl i {
  font-size: 2.75rem;
}
