<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{% block title %}CogniEdu{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
{# Bootstrap 5 #}
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
>
{# Custom theme overrides #}
<link rel="stylesheet" href="{{ asset('css/theme.css') }}">
{% block stylesheets %}{% endblock %}
</head>
<body class="bg-white text-dark">
{# Skip link for accessibility #}
<a href="#main" class="visually-hidden-focusable">Skip to content</a>
<!-- ===== Header ===== -->
<header class="border-bottom bg-white">
<div class="container-fluid px-4 py-2 d-flex align-items-center justify-content-between">
<!-- Brand -->
<a href="{{ path('home') }}" class="d-flex align-items-center text-decoration-none">
<img
src="{{ asset('images/cogni_logo-4.png') }}"
alt="CogniEdu logo"
style="height:70px; width:auto;"
class="me-2"
>
<span class="fw-semibold fs-5 text-dark"></span>
</a>
<!-- Navigation -->
<nav class="d-none d-md-flex gap-4">
<a class="text-decoration-none text-dark fw-medium" href="{{ path('platform') }}">Platform</a>
<a class="text-decoration-none text-dark fw-medium" href="{{ path('solutions') }}">Solutions</a>
<a class="text-decoration-none text-dark fw-medium" href="{{ path('security') }}">Security</a>
<a class="text-decoration-none text-dark fw-medium" href="{{ path('about') }}">About</a>
</nav>
<!-- CTA -->
<div class="d-flex gap-2">
<a href="{{ path('contact') }}" class="btn btn-outline-secondary btn-sm">Contact</a>
<a href="{{ path('request_demo') }}" class="btn btn-primary btn-sm">Request Demo</a>
</div>
</div>
</header>
<!-- ===== Main Content ===== -->
<main id="main">
{% block body %}{% endblock %}
</main>
<!-- ===== Footer ===== -->
<footer class="border-top bg-light mt-5">
<div class="container py-4">
<div class="row align-items-center gy-3">
<div class="col-md-6 small text-muted">
© {{ "now"|date("Y") }} CogniEdu. All rights reserved.
</div>
<div class="col-md-6 text-md-end small">
<a href="{{ path('privacy') }}" class="text-muted text-decoration-none me-3">Privacy</a>
<a href="{{ path('security') }}" class="text-muted text-decoration-none me-3">Security</a>
<a href="{{ path('contact') }}" class="text-muted text-decoration-none">Contact</a>
</div>
</div>
</div>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js">
</script>
{% block javascripts %}{% endblock %}
</body>
</html>