It's not enough to change your XSLT code. Your source document is invalid against your schema, so you have to change either your source document or your schema. Assuming the schema is definitive and you want the data in a namespace, then change the source document to reference the namespace:
<xml_interface xmlns="http://en.intranet.fa.com/XMLSchema/project/V003">
...
and do the same in your stylesheet:
<xsl:template match="/">
<xsl:document validation="strict">
<xml_interface xmlns="http://en.intranet.fa.com/XMLSchema/project/V003">
<package_information>
<xsl:copy-of select="/xml_interface/package_information/*" xpath-default-namespace="http://en.intranet.fa.com/XMLSchema/project/V003"/>
</package_information>
</xml_interface>
</xsl:document>
</xsl:template>
You need to get the namespace right both on the elements you construct in the stylesheet, and on the path expressions that select nodes from the source document.
One minor comment, the specs say that names beginning "xml" are reserved for future standardization. Some products give you nasty warnings if you use such names, so they are best avoided.
Michael Kay
http://www.saxonica.com/
Author, XSLT 2.0 and XPath 2.0 Programmer's Reference