/* Add this to your navbar.css file */
.nav-link {
    position: relative;
    display: inline-block;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff6347; /* Change this to your desired color */
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  .menu-enter {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  }
  
  .menu-enter-active {
    max-height: 500px; /* adjust this value based on your content */
    opacity: 1;
  }
  
  .menu-exit {
    max-height: 500px; /* adjust this value based on your content */
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.3s ease-in, opacity 0.3s ease-in;
  }
  
  .menu-exit-active {
    max-height: 0;
    opacity: 0;
  }
  
  .fixed-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  
  .sticky-navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
  }
  
  .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  
  
  /* Add your other styles here */
  