   /* Desktop Navigation */
   .desktop-nav {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 36px;
    width: auto;
}

.desktop-menu {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.desktop-menu li {
    margin: 0 1.5rem;
}

.desktop-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.desktop-menu a.active {
    color: #2D6EFD;
    font-weight: 600;
}

.desktop-menu a:hover {
    color: #2D6EFD;
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #2D6EFD, #D5388D);
    bottom: -3px;
    left: 0;
    transition: width 0.3s ease;
}

.desktop-menu a:hover::after {
    width: 100%;
}

.desktop-actions {
    display: flex;
    align-items: center;
}

.login-btn {
    background: linear-gradient(to right, #2D6EFD, #1B4FC9);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
    cursor: pointer;
}

.login-btn:hover {
    background: linear-gradient(to right, #1B4FC9, #0F3AA8);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(45, 110, 253, 0.4);
}

.cart-icon {
    color: #374151;
    font-size: 1.4rem;
    margin-left: 1.2rem;
    position: relative;
    cursor: pointer;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.cart-icon:hover {
    color: #2D6EFD;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(to right, #FF5E8F, #FF305E);
    color: #FFFFFF;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

/* Mobile Navigation */
.mobile-nav {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: none;
}

.mobile-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    height: 32px;
    width: auto;
}

.hamburger-btn {
    background: none;
    border: none;
    color: #374151;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.2rem;
}

.mobile-cart {
    position: relative;
    color: #374151;
    font-size: 1.4rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

   .mobile-menu-container {
       position: fixed;
       top: 64px;
       left: 0;
       width: 100%;
       height: 0;
       background-color: #FFFFFF;
       overflow: hidden;
       transition: height 0.3s ease;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
       z-index: 999; /* Add this line to make sure it's above other content */
   }

.mobile-menu-container.active {
    height: auto;
}

.mobile-menu {
    list-style: none;
    padding: 1rem;
    margin: 0;
}

.mobile-menu li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.mobile-menu-container.active .mobile-menu li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
}

.mobile-menu a.active {
    color: #2D6EFD;
    font-weight: 600;
}

.mobile-menu-actions {
    padding: 0 1rem 1.5rem;
    display: flex;
    justify-content: center;
}

.mobile-login-btn {
    background: linear-gradient(to right, #2D6EFD, #1B4FC9);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    cursor: pointer;
}

/* Animation delays for mobile menu items */
.mobile-menu-container.active .mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-container.active .mobile-menu li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-container.active .mobile-menu li:nth-child(3) { transition-delay: 0.3s; }

/* Content area */
.content {
    margin-top: 80px;
    padding: 2rem;
    text-align: center;
}

/* Responsive switching */
@media screen and (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .content {
        margin-top: 70px;
    }
}

   /* Add this to your Navagation.css file */

   /* Create a gradient animation for the nav borders */
   @keyframes borderGradientAnimation {
       0% {
           background-position: 0% 50%;
       }
       50% {
           background-position: 100% 50%;
       }
       100% {
           background-position: 0% 50%;
       }
   }

   /* Add animated border to desktop nav - with higher transparency */
   .desktop-nav::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       right: 0;
       height: 2px;
       background: linear-gradient(90deg, rgba(45, 110, 253, 0.3), rgba(213, 56, 141, 0.3), rgba(255, 94, 143, 0.3), rgba(45, 110, 253, 0.3));
       background-size: 300% 100%;
       animation: borderGradientAnimation 6s infinite;
       opacity: 0.4; /* Additional transparency for desktop */
   }

   /* Add animated border to mobile nav - more visible */
   .mobile-nav::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       right: 0;
       height: 2px;
       background: linear-gradient(90deg, #2D6EFD, #D5388D, #FF5E8F, #2D6EFD);
       background-size: 300% 100%;
       animation: borderGradientAnimation 6s infinite;
   }

   /* Also apply the animation to active menu links */
   .desktop-menu a.active::after {
       width: 100%;
       background: linear-gradient(90deg, #2D6EFD, #D5388D, #FF5E8F, #2D6EFD);
       background-size: 300% 100%;
       animation: borderGradientAnimation 6s infinite;
   }

   /* Update the mobile menu container with the animation */
   .mobile-menu-container::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       right: 0;
       height: 2px;
       background: linear-gradient(90deg, #2D6EFD, #D5388D, #FF5E8F, #2D6EFD);
       background-size: 300% 100%;
       animation: borderGradientAnimation 6s infinite;
   }