body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #1f2937;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.highlight-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}
.card-hover-effect {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.card-hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.sidebar {
  transition: transform 0.3s ease-in-out;
}
/* Fix for navbar overlap on anchor links */
html {
  scroll-padding-top: 80px;
}
.hero-img {
  background: transparent !important;
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
  object-position: top;
  position: absolute;
  inset: 0;
  border-radius: inherit;
}