
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover,
        .nav-link.active {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transform: translateY(-2px);
        }

        

        /* Profile Dropdown Styles */
        .nav-item.dropdown {
            position: relative;
        }
        .nav-menu .nav-link{
            padding:0;
        }

        .user-img {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 5px;
            border-radius: 50px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
        }

        .user-img:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .user-img img {
            border: 3px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .user-img:hover img {
            border-color: rgba(255, 255, 255, 0.8);
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            min-width: 220px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            overflow: hidden;
            margin-top: 10px;
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -8px;
            right: 20px;
            width: 16px;
            height: 16px;
            background: white;
            transform: rotate(45deg);
            border-left: 1px solid rgba(0, 0, 0, 0.05);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-item.dropdown:hover .dropdown-menu,
        .nav-item.dropdown.show .dropdown-menu {
	    z-index:111;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Dropdown Items */
        .dropdown-item-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .dropdown-item-wrapper:last-child {
            border-bottom: none;
        }

        .dropdown-item-wrapper:hover {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
        }

        .dropdown-item-wrapper:hover::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, #007bff, #30A3C2);
        }

        .dropdown-item {
            color: #333;
            text-decoration: none;
            padding: 15px 0;
            font-weight: 500;
            transition: all 0.3s ease;
            flex: 1;
            text-align:left;
            font-size: 0.95rem;
        }

        .dropdown-item:hover {
            color: #007bff;
            text-decoration: none;
        }

        .dropdown-icon {
            font-size: 16px;
            color: #30a3c2;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .dropdown-item-wrapper:hover .dropdown-icon {
            opacity: 1;
            transform: translateX(3px);
        }
