 /* Sticky Navbar Core */
    .fixed-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 5;
      backdrop-filter: blur(12px);
      transition:
        background-color 0.4s ease,
        color 0.4s ease,
        border-color 0.4s ease;
      border-bottom-width: 1px;
      border-style: solid;
    }

    .fixed-light {
      background-color: rgba(255, 255, 255, 0.75);
      color: #000;
      border-color: #e2e8f0;
    }

    .fixed-dark {
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff !important;
      border-color: #000;
    }

    /* Link Hover Animation */
    /* Link Hover Color Change */
.hover-item {
  transition: color 0.3s ease;
  color: inherit;
}

.hover-item:hover {
  color: #2563eb; /* Tailwind blue-600 */
}
