.gradient-bg {
  background: linear-gradient(to bottom right, #0c4692, #ffffff);
}

/* card hover for landing page card */
.custom-hover {
  transition: transform 0.3s ease;
}
.custom-hover:hover {
  transform: translateY(-8px);
}
.icon-circle {
  transition: transform 0.3s ease;
}
.custom-hover:hover .icon-circle {
  transform: scale(1.1);
}