-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
72 lines (68 loc) · 3.7 KB
/
Copy pathabout.php
File metadata and controls
72 lines (68 loc) · 3.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
$body_class = '';
require_once __DIR__ . '/includes/header.php';
?>
<!-- Page Hero -->
<section class="page-hero">
<div class="container">
<h1>About NexusSynced</h1>
<p>Women-led. SECP-registered. Built on purpose.</p>
</div>
</section>
<section class="prof-section">
<div class="container about-grid">
<div>
<div class="prof-label">/ OUR STORY</div>
<h2 class="prof-title">AI with Purpose,<br>Built by Women</h2>
<p>NexusSynced is a women-led AI software house registered with the Securities and Exchange Commission of Pakistan (SECP). We believe technology should be built with intention — serving real people, solving real problems, and creating real impact.</p>
<p>Our team spans expertise in artificial intelligence, full-stack development, mobile engineering, and product design. We work with startups, enterprises, and social impact organizations across Pakistan and internationally.</p>
<p>We are particularly focused on femtech, e-commerce, and social impact — areas where technology can directly improve lives and drive economic participation.</p>
</div>
<div>
<div class="pillars">
<div class="pillar">
<h4>Innovation</h4>
<p>We push boundaries with AI-first thinking</p>
</div>
<div class="pillar">
<h4>Impact</h4>
<p>Every product serves a real human need</p>
</div>
<div class="pillar">
<h4>Speed</h4>
<p>We ship fast without cutting corners</p>
</div>
</div>
<div style="margin-top:2rem;">
<h3 style="font-family:var(--font-display);font-weight:700;font-size:1.1rem;margin-bottom:0.75rem;">Our Commitment to the SDGs</h3>
<div class="sdg-badges">
<span class="sdg-badge">SDG 4 — Quality Education</span>
<span class="sdg-badge">SDG 5 — Gender Equality</span>
<span class="sdg-badge">SDG 8 — Decent Work & Economic Growth</span>
<span class="sdg-badge">SDG 9 — Industry, Innovation & Infrastructure</span>
</div>
</div>
</div>
</div>
</section>
<section class="prof-section" style="background:var(--bg-secondary);">
<div class="container">
<div class="prof-label">/ VALUES</div>
<h2 class="prof-title">What Drives Us</h2>
<div style="display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2rem;">
<div style="background:var(--bg-primary);padding:2rem;border:1px solid var(--border);border-radius:12px;">
<h3 style="font-family:var(--font-display);font-weight:700;font-size:1.15rem;margin-bottom:0.5rem;">Excellence</h3>
<p style="color:var(--text-secondary);font-size:0.9rem;line-height:1.6;">We hold ourselves to the highest standards of quality in code, design, and user experience.</p>
</div>
<div style="background:var(--bg-primary);padding:2rem;border:1px solid var(--border);border-radius:12px;">
<h3 style="font-family:var(--font-display);font-weight:700;font-size:1.15rem;margin-bottom:0.5rem;">Inclusivity</h3>
<p style="color:var(--text-secondary);font-size:0.9rem;line-height:1.6;">As a women-led team, we champion diversity in technology and build products for everyone.</p>
</div>
<div style="background:var(--bg-primary);padding:2rem;border:1px solid var(--border);border-radius:12px;">
<h3 style="font-family:var(--font-display);font-weight:700;font-size:1.15rem;margin-bottom:0.5rem;">Transparency</h3>
<p style="color:var(--text-secondary);font-size:0.9rem;line-height:1.6;">Clear communication, honest timelines, and no hidden costs. That's how we build trust.</p>
</div>
</div>
</div>
</section>
<?php require_once __DIR__ . '/includes/footer.php'; ?>