<?php
require_once __DIR__ . '/config/site-config.php';
http_response_code(404);
$pageTitle = 'Page Not Found | DigiCrux Solutions';
$pageDescription = 'The page you are looking for could not be found.';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include_once __DIR__ . '/includes/head.php'; ?>
<style>
.dc-404{
min-height:60vh;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
padding:80px 24px;
}
.dc-404-code{
font-size:clamp(64px, 12vw, 120px);
font-weight:800;
background:var(--gradient-brand);
-webkit-background-clip:text;
background-clip:text;
color:transparent;
line-height:1;
margin-bottom:10px;
}
.dc-404-title{ font-size:22px; margin-bottom:10px; }
.dc-404-sub{ font-size:14.5px; color:var(--text-body); margin-bottom:28px; max-width:420px; }
</style>
</head>
<body>
<?php include_once __DIR__ . '/includes/header.php'; ?>
<div class="dc-404">
<div class="dc-404-code">404</div>
<h1 class="dc-404-title">Page not found</h1>
<p class="dc-404-sub">The page you're looking for doesn't exist or may have been moved.</p>
<a href="/" class="btn btn-primary btn-lg">Back to Home</a>
</div>
<?php include_once __DIR__ . '/includes/footer.php'; ?>
</body>
</html>