/* Split card styles */
.split-card {
  border: 1px solid #e3eaf3;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

/* Header (top) */
.card-header-area {
  background-color: #eaf6ff;
  padding: 1.5rem 1rem 1rem;
  border-bottom: 1px solid #e3eaf3;
}

/* Body (bottom) */
.card-body-area {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

/* Hover effect for normal cards */
.split-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Highlighted center card */
.split-card.highlighted {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* Ensure highlight scales correctly on mobile */
@media (max-width: 767.98px) {
  .split-card.highlighted {
    transform: scale(1.02);
    margin: 1rem auto;
  }
}

/* Smooth icon/image hover animation */
.icon-hover {
  transition: transform 0.3s ease-in-out;
}
.icon-hover:hover {
  transform: scale(1.1);
}