<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Zonixtec - Sitemap</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1a2a6c, #2a3f5f, #4b6cb7);
            color: #fff;
            min-height: 100vh;
            padding: 20px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            text-align: center;
            padding: 40px 0;
            margin-bottom: 30px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .logo {
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            margin-bottom: 20px;
            display: block;
            font-family: 'Orbitron', sans-serif;
        }
        
        .logo span {
            color: #4b9fe1;
        }
        
        .logo .tech {
            color: #ff6b6b;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .subtitle {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #e0e0e0;
        }
        
        .sitemap-container {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            margin-bottom: 40px;
            backdrop-filter: blur(10px);
        }
        
        .sitemap-section {
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.15);
            border-radius: 10px;
        }
        
        .sitemap-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #4b9fe1;
            display: flex;
            align-items: center;
        }
        
        .sitemap-section h2 i {
            margin-right: 10px;
            color: #ff6b6b;
        }
        
        .sitemap-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
        }
        
        .sitemap-link {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 15px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            color: #e0e0e0;
            text-decoration: none;
        }
        
        .sitemap-link:hover {
            background: rgba(75, 159, 225, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .sitemap-link i {
            font-size: 1.2rem;
            margin-right: 12px;
            color: #ff6b6b;
            width: 30px;
            text-align: center;
        }
        
        .sitemap-link span {
            flex-grow: 1;
        }
        
        .xml-section {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            padding: 25px;
            margin-top: 40px;
        }
        
        .xml-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #4b9fe1;
            display: flex;
            align-items: center;
        }
        
        .xml-section h3 i {
            margin-right: 10px;
            color: #ff6b6b;
        }
        
        .xml-code {
            background: #1e1e1e;
            border-radius: 8px;
            padding: 20px;
            overflow-x: auto;
            font-family: monospace;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-top: 15px;
        }
        
        .xml-tag {
            color: #4ec9b0;
        }
        
        .xml-attr {
            color: #9cdcfe;
        }
        
        .xml-value {
            color: #ce9178;
        }
        
        .xml-comment {
            color: #6a9955;
        }
        
        footer {
            text-align: center;
            padding: 30px 0;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
        }
        
        .footer-links a {
            color: #4b9fe1;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #ff6b6b;
        }
        
        .copyright {
            color: #a0a0a0;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .sitemap-links {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .logo {
                font-size: 2.5rem;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <header>
             <a href="Home.html" class="logo">
                    <img src="./Assets/Logo.svg" alt="Zonixtec Logo" style="height: 40px; width: auto;">
                </a>
            <h1>Website Sitemap</h1>
            <p class="subtitle">Explore the structure of our website and easily navigate to all our pages and services.</p>
        </header>
        
        <div class="sitemap-container">
            <div class="sitemap-section">
                <h2><i class="fas fa-home"></i> Main Pages</h2>
                <div class="sitemap-links">
                    <a href="Home.html" class="sitemap-link">
                        <i class="fas fa-globe"></i>
                        <span>Home</span>
                    </a>
                    <a href="aboutus.html" class="sitemap-link">
                        <i class="fas fa-info-circle"></i>
                        <span>About Us</span>
                    </a>
                    <a href="Services.html" class="sitemap-link">
                        <i class="fas fa-cogs"></i>
                        <span>Services</span>
                    </a>
                    <a href="carrer.html" class="sitemap-link">
                        <i class="fas fa-briefcase"></i>
                        <span>Career</span>
                    </a>
                    <a href="contact.html" class="sitemap-link">
                        <i class="fas fa-envelope"></i>
                        <span>Contact</span>
                    </a>
                </div>
            </div>
                
            <div class="sitemap-section">
                <h2><i class="fas fa-laptop-code"></i> Services</h2>
                <div class="sitemap-links">
                    <a href="CustomSoftware.html" class="sitemap-link">
                        <i class="fas fa-code"></i>
                        <span>Custom Software Development</span>
                    </a>
                    <a href="MachineLearning.html" class="sitemap-link">
                        <i class="fas fa-brain"></i>
                        <span>AI & Machine Learning</span>
                    </a>
                    <a href="CloudSolutions.html" class="sitemap-link">
                        <i class="fas fa-cloud"></i>
                        <span>Cloud Solutions</span>
                    </a>
                    <a href="ui.html" class="sitemap-link">
                        <i class="fas fa-paint-brush"></i>
                        <span>UI/UX Design</span>
                    </a>
                    <a href="MobileDevelopment.html" class="sitemap-link">
                        <i class="fas fa-mobile-alt"></i>
                        <span>Mobile Development</span>
                    </a>
                </div>
            </div>
            
            <div class="sitemap-section">
                <h2><i class="fas fa-industry"></i> Industries</h2>
                <div class="sitemap-links">
                    <a href="industries.html" class="sitemap-link">
                        <i class="fas fa-building"></i>
                        <span>All Industries</span>
                    </a>
                    <a href="healthcare.html" class="sitemap-link">
                        <i class="fas fa-heartbeat"></i>
                        <span>Healthcare Software</span>
                    </a>
                    <a href="finance.html" class="sitemap-link">
                        <i class="fas fa-chart-line"></i>
                        <span>Fintech Solutions</span>
                    </a>
                    <a href="retail.html" class="sitemap-link">
                        <i class="fas fa-shopping-cart"></i>
                        <span>Retail & E-commerce</span>
                    </a>
                    <a href="education.html" class="sitemap-link">
                        <i class="fas fa-graduation-cap"></i>
                        <span>EdTech Solutions</span>
                    </a>
                    <a href="manufacturing.html" class="sitemap-link">
                        <i class="fas fa-industry"></i>
                        <span>Manufacturing Technology</span>
                    </a>
                    <a href="logistics.html" class="sitemap-link">
                        <i class="fas fa-truck"></i>
                        <span>Logistics Software</span>
                    </a>
                </div>
            </div>
            
            <div class="sitemap-section">
                <h2><i class="fas fa-file-alt"></i> Legal & Information</h2>
                <div class="sitemap-links">
                    <a href="privacy.html" class="sitemap-link">
                        <i class="fas fa-shield-alt"></i>
                        <span>Privacy Policy</span>
                    </a>
                    <a href="sitemap.html" class="sitemap-link">
                        <i class="fas fa-sitemap"></i>
                        <span>Sitemap (Current Page)</span>
                    </a>
                </div>
            </div>
        </div>
        
        <div class="xml-section">
            <h3><i class="fas fa-code"></i> XML Sitemap for Search Engines</h3>
            <p>This is the machine-readable version of our sitemap that helps search engines understand our website structure:</p>
            <div class="xml-code">
                <pre><span class="xml-tag">&lt;?xml</span> <span class="xml-attr">version</span>=<span class="xml-value">"1.0"</span> <span class="xml-attr">encoding</span>=<span class="xml-value">"UTF-8"</span><span class="xml-tag">?&gt;</span>
<span class="xml-tag">&lt;urlset</span> <span class="xml-attr">xmlns</span>=<span class="xml-value">"http://www.sitemaps.org/schemas/sitemap/0.9"</span><span class="xml-tag">&gt;</span>
    <span class="xml-comment">&lt;!-- Main Pages --&gt;</span>
    <span class="xml-tag">&lt;url&gt;</span>
        <span class="xml-tag">&lt;loc&gt;</span>https://www.zonixtec.com/Home.html<span class="xml-tag">&lt;/loc&gt;</span>
        <span class="xml-tag">&lt;lastmod&gt;</span>2025-06-10<span class="xml-tag">&lt;/lastmod&gt;</span>
        <span class="xml-tag">&lt;changefreq&gt;</span>daily<span class="xml-tag">&lt;/changefreq&gt;</span>
        <span class="xml-tag">&lt;priority&gt;</span>1.0<span class="xml-tag">&lt;/priority&gt;</span>
    <span class="xml-tag">&lt;/url&gt;</span>
    
    <span class="xml-tag">&lt;url&gt;</span>
        <span class="xml-tag">&lt;loc&gt;</span>https://www.zonixtec.com/aboutus.html<span class="xml-tag">&lt;/loc&gt;</span>
        <span class="xml-tag">&lt;lastmod&gt;</span>2025-06-10<span class="xml-tag">&lt;/lastmod&gt;</span>
        <span class="xml-tag">&lt;changefreq&gt;</span>monthly<span class="xml-tag">&lt;/changefreq&gt;</span>
        <span class="xml-tag">&lt;priority&gt;</span>0.9<span class="xml-tag">&lt;/priority&gt;</span>
    <span class="xml-tag">&lt;/url&gt;</span>
    
    <span class="xml-tag">&lt;url&gt;</span>
        <span class="xml-tag">&lt;loc&gt;</span>https://www.zonixtec.com/Services.html<span class="xml-tag">&lt;/loc&gt;</span>
        <span class="xml-tag">&lt;lastmod&gt;</span>2025-06-10<span class="xml-tag">&lt;/lastmod&gt;</span>
        <span class="xml-tag">&lt;changefreq&gt;</span>weekly<span class="xml-tag">&lt;/changefreq&gt;</span>
        <span class="xml-tag">&lt;priority&gt;</span>0.9<span class="xml-tag">&lt;/priority&gt;</span>
    <span class="xml-tag">&lt;/url&gt;</span>
    
    <span class="xml-comment">&lt;!-- Service Pages --&gt;</span>
    <span class="xml-tag">&lt;url&gt;</span>
        <span class="xml-tag">&lt;loc&gt;</span>https://www.zonixtec.com/CustomSoftware.html<span class="xml-tag">&lt;/loc&gt;</span>
        <span class="xml-tag">&lt;lastmod&gt;</span>2025-06-10<span class="xml-tag">&lt;/lastmod&gt;</span>
        <span class="xml-tag">&lt;changefreq&gt;</span>monthly<span class="xml-tag">&lt;/changefreq&gt;</span>
        <span class="xml-tag">&lt;priority&gt;</span>0.8<span class="xml-tag">&lt;/priority&gt;</span>
    <span class="xml-tag">&lt;/url&gt;</span>
    
    <span class="xml-tag">&lt;url&gt;</span>
        <span class="xml-tag">&lt;loc&gt;</span>https://www.zonixtec.com/MachineLearning.html<span class="xml-tag">&lt;/loc&gt;</span>
        <span class="xml-tag">&lt;lastmod&gt;</span>2025-06-10<span class="xml-tag">&lt;/lastmod&gt;</span>
        <span class="xml-tag">&lt;changefreq&gt;</span>monthly<span class="xml-tag">&lt;/changefreq&gt;</span>
        <span class="xml-tag">&lt;priority&gt;</span>0.8<span class="xml-tag">&lt;/priority&gt;</span>
    <span class="xml-tag">&lt;/url&gt;</span>
    
    <span class="xml-comment">&lt;!-- Industry Pages --&gt;</span>
    <span class="xml-tag">&lt;url&gt;</span>
        <span class="xml-tag">&lt;loc&gt;</span>https://www.zonixtec.com/industries.html<span class="xml-tag">&lt;/loc&gt;</span>
        <span class="xml-tag">&lt;lastmod&gt;</span>2025-06-10<span class="xml-tag">&lt;/lastmod&gt;</span>
        <span class="xml-tag">&lt;changefreq&gt;</span>monthly<span class="xml-tag">&lt;/changefreq&gt;</span>
        <span class="xml-tag">&lt;priority&gt;</span>0.7<span class="xml-tag">&lt;/priority&gt;</span>
    <span class="xml-tag">&lt;/url&gt;</span>
    
    <span class="xml-tag">&lt;url&gt;</span>
        <span class="xml-tag">&lt;loc&gt;</span>https://www.zonixtec.com/healthcare.html<span class="xml-tag">&lt;/loc&gt;</span>
        <span class="xml-tag">&lt;lastmod&gt;</span>2025-06-10<span class="xml-tag">&lt;/lastmod&gt;</span>
        <span class="xml-tag">&lt;changefreq&gt;</span>monthly<span class="xml-tag">&lt;/changefreq&gt;</span>
        <span class="xml-tag">&lt;priority&gt;</span>0.7<span class="xml-tag">&lt;/priority&gt;</span>
    <span class="xml-tag">&lt;/url&gt;</span>
    
    <span class="xml-comment">&lt;!-- Additional pages would follow the same structure --&gt;</span>
<span class="xml-tag">&lt;/urlset&gt;</span></pre>
            </div>
        </div>
        
        <footer>
            <div class="footer-links">
                <a href="Home.html">Home</a>
                <a href="aboutus.html">About Us</a>
                <a href="Services.html">Services</a>
                <a href="contact.html">Contact</a>
                <a href="privacy.html">Privacy Policy</a>
            </div>
            <p class="copyright">© 2025 Zonixtec Software Solutions. All Rights Reserved.</p>
        </footer>
    </div>
    
    <script>
        // Add animation to sitemap links
        document.addEventListener('DOMContentLoaded', function() {
            const links = document.querySelectorAll('.sitemap-link');
            
            links.forEach(link => {
                link.addEventListener('mouseover', () => {
                    link.style.transform = 'translateY(-5px)';
                    link.style.boxShadow = '0 8px 20px rgba(0, 0, 0, 0.4)';
                });
                
                link.addEventListener('mouseout', () => {
                    link.style.transform = 'translateY(0)';
                    link.style.boxShadow = '0 5px 15px rgba(0, 0, 0, 0.3)';
                });
            });
        });
    </script>
</body>
</html>