.hamburger {
    display: none;
    cursor: pointer;
  }
  
  .hamburger input {
    display: none;
  }
  
  .hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line {
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line-top-bottom {
    stroke-dasharray: 12 63;
  }
  
  .hamburger input:checked + svg {
    transform: rotate(-45deg);
  }
  
  .hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
  }
  
/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger{
        display: block;
    }
    .hamburger-menu {
        display: block; /* Show on smaller screens */
    }

    .nav-links-container {
        display: none; /* Hide nav links by default on smaller screens */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust based on your navbar height */
        left: 0;
        background-color: #00000000;
        width: 100%;
        padding: 1rem;
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

    .nav-links-container.active {
        display: flex; /* Show when active */
    }

    .nav-logo img {
        width: 80px; /* Adjust logo size for smaller screens */
        height: 80px;
    }
}