-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
620 lines (590 loc) · 41.6 KB
/
Copy pathindex.html
File metadata and controls
620 lines (590 loc) · 41.6 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Obinna Ugwu — UI/UX Designer</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Lora:ital,wght@0,400;0,500;1,400;1,500&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--green: #2e8b57;
--green-dark: #1f6b40;
--green-light: #e8f5ee;
--green-mid: #d1ead9;
--ink: #0d1117;
--ink-soft: #374151;
--ink-muted: #6b7280;
--white: #ffffff;
--gray-bg: #f8f9fa;
--gray-line: #e5e7eb;
--font-head: 'Bricolage Grotesque', sans-serif;
--font-body: 'Lora', Georgia, serif;
--radius: 12px;
--shadow: 0 4px 24px rgba(0,0,0,0.07);
--shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
/* NAV */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
background: rgba(255,255,255,0.96); backdrop-filter: blur(16px);
border-bottom: 1px solid var(--gray-line);
padding: 0 64px; height: 68px;
display: flex; align-items: center; justify-content: space-between;
transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-logo { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--ink); text-decoration: none; letter-spacing: -0.02em; }
.nav-logo span { color: var(--green); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-family: var(--font-head); font-size: 14px; font-weight: 500; color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--white); background: var(--green); padding: 10px 22px; border-radius: 100px; text-decoration: none; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(46,139,87,0.35); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--white); z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-head); font-size: 28px; font-weight: 600; color: var(--ink); text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--green); }
.mobile-close { position: absolute; top: 20px; right: 24px; font-size: 28px; cursor: pointer; background: none; border: none; color: var(--ink); }
/* SHARED */
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
section { padding: 100px 0; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); background: var(--green-light); padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }
.section-title { font-family: var(--font-head); font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 16px; }
.section-sub { font-size: 17px; font-weight: 400; color: var(--ink-soft); line-height: 1.75; max-width: 560px; }
/* HERO */
#hero { min-height: 100vh; display: flex; align-items: center; padding-top: 68px; background: var(--white); position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(46,139,87,0.06) 0%, transparent 70%); }
.hero-dots { position: absolute; top: 0; right: 0; width: 400px; height: 400px; background-image: radial-gradient(circle, rgba(46,139,87,0.12) 1px, transparent 1px); background-size: 28px 28px; border-radius: 0 0 0 100%; pointer-events: none; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 13px; font-weight: 500; color: var(--green-dark); background: var(--green-light); border: 1px solid var(--green-mid); padding: 7px 16px; border-radius: 100px; margin-bottom: 28px; }
.hero-badge::before { content: '●'; font-size: 8px; color: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
h1 { font-family: var(--font-head); font-size: clamp(38px, 5.5vw, 68px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 24px; }
h1 .accent { color: var(--green); }
.hero-sub { font-size: 18px; font-weight: 400; color: var(--ink-soft); line-height: 1.7; max-width: 500px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-green { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--white); background: var(--green); padding: 15px 30px; border-radius: 100px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; display: inline-block; }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,139,87,0.35); }
.btn-ghost { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--ink); background: transparent; padding: 15px 30px; border-radius: 100px; text-decoration: none; border: 2px solid var(--gray-line); transition: all 0.2s; display: inline-block; }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--white); transform: translateY(-2px); }
.hero-card { background: var(--white); border: 1px solid var(--gray-line); border-radius: 20px; padding: 32px; box-shadow: var(--shadow-lg); position: relative; }
.hero-card::before { content: ''; position: absolute; top: -1px; left: 32px; right: 32px; height: 3px; background: linear-gradient(90deg, var(--green), #4ade80); border-radius: 0 0 4px 4px; }
.hero-card-label { font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 20px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.hstat { background: var(--gray-bg); border-radius: 10px; padding: 16px; text-align: center; }
.hstat-num { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--green); line-height: 1; letter-spacing: -0.03em; margin-bottom: 4px; }
.hstat-label { font-family: var(--font-head); font-size: 10px; font-weight: 500; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-avail { display: flex; align-items: center; gap: 10px; background: var(--green-light); border-radius: 10px; padding: 12px 16px; }
.avail-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
.hero-avail span { font-family: var(--font-head); font-size: 13px; font-weight: 500; color: var(--green-dark); }
/* TRUST BAR */
#trust { padding: 0; background: var(--ink); }
.trust-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 24px 48px; border-right: 1px solid rgba(255,255,255,0.08); flex: 1; min-width: 220px; justify-content: center; }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 36px; height: 36px; background: rgba(46,139,87,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.trust-text { font-family: var(--font-head); font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); }
/* WORK */
#work { background: var(--white); }
.work-header { text-align: center; margin-bottom: 64px; }
.work-header .section-label { margin: 0 auto 20px; display: table; }
.work-header .section-sub { margin: 0 auto; text-align: center; }
.projects-grid { display: flex; flex-direction: column; gap: 28px; }
.project-card { background: var(--white); border: 1px solid var(--gray-line); border-radius: 20px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; transition: box-shadow 0.3s, transform 0.3s; }
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.project-card.reverse { direction: rtl; }
.project-card.reverse > * { direction: ltr; }
.project-visual { background: var(--green-light); min-height: 340px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 40px; }
.project-mockup { width: 100%; max-width: 300px; background: var(--white); border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); overflow: hidden; transition: transform 0.4s ease; }
.project-card:hover .project-mockup { transform: translateY(-8px) rotate(-1deg); }
.mockup-bar { height: 38px; background: var(--ink); display: flex; align-items: center; padding: 0 14px; gap: 6px; }
.mockup-dot { width: 8px; height: 8px; border-radius: 50%; }
.mockup-content { padding: 18px; }
.mockup-line { height: 10px; background: var(--gray-line); border-radius: 4px; margin-bottom: 8px; }
.mockup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.mockup-block { height: 48px; background: var(--gray-bg); border-radius: 8px; }
.project-body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.project-num { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.project-body h3 { font-family: var(--font-head); font-size: 24px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 18px; line-height: 1.2; }
.project-section-label { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 5px; margin-top: 14px; }
.project-body p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.project-decisions { margin-top: 4px; list-style: none; display: flex; flex-direction: column; gap: 5px; }
.project-decisions li { font-size: 13px; color: var(--ink-soft); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.project-decisions li::before { content: '→'; color: var(--green); font-size: 11px; margin-top: 2px; flex-shrink: 0; font-family: var(--font-head); font-weight: 700; }
.project-outcome { background: var(--green-light); border-left: 3px solid var(--green); border-radius: 0 8px 8px 0; padding: 11px 14px; margin-top: 14px; }
.project-outcome p { font-size: 13px; color: var(--green-dark); font-style: italic; }
.project-cta-row { display: flex; align-items: center; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
.btn-project { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--white); background: var(--green); padding: 11px 22px; border-radius: 100px; text-decoration: none; transition: background 0.2s, transform 0.2s; display: inline-block; }
.btn-project:hover { background: var(--green-dark); transform: translateY(-1px); }
.project-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ptag { font-family: var(--font-head); font-size: 11px; font-weight: 500; color: var(--ink-muted); background: var(--gray-bg); border: 1px solid var(--gray-line); padding: 4px 10px; border-radius: 100px; }
/* ABOUT */
#about { background: var(--gray-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-card-main { background: var(--white); border: 1px solid var(--gray-line); border-radius: 20px; padding: 40px; box-shadow: var(--shadow); }
.about-card-main h3 { font-family: var(--font-head); font-size: 21px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.3; }
.about-card-main p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; }
.about-badge-float { margin-top: 20px; background: var(--green); color: var(--white); border-radius: 16px; padding: 20px 28px; display: inline-block; box-shadow: 0 8px 32px rgba(46,139,87,0.35); }
.about-badge-float .big { font-family: var(--font-head); font-size: 40px; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.about-badge-float .small { font-family: var(--font-head); font-size: 12px; font-weight: 500; opacity: 0.85; margin-top: 4px; }
.about-text-col h2 { margin-bottom: 24px; }
.about-text-col p { font-size: 16px; color: var(--ink-soft); line-height: 1.85; margin-bottom: 16px; }
.about-goal { background: var(--white); border: 1px solid var(--gray-line); border-radius: var(--radius); padding: 18px 22px; margin-top: 8px; display: flex; align-items: flex-start; gap: 14px; }
.about-goal-icon { width: 40px; height: 40px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.about-goal p { font-size: 15px; color: var(--ink); font-style: italic; margin: 0; }
/* SERVICES */
#services { background: var(--white); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-label { margin: 0 auto 20px; display: table; }
.services-header .section-sub { margin: 0 auto; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--gray-line); border-radius: 20px; padding: 36px 32px; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), #4ade80); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-mid); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; background: var(--green-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 24px; }
.service-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; }
.service-features { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.sf { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 12px; font-weight: 500; color: var(--ink-soft); }
.sf::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 12px; }
/* WHY */
#why { background: var(--ink); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left h2 { color: var(--white); margin-bottom: 16px; }
.why-left p { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.75; }
.why-items { display: flex; flex-direction: column; }
.why-item { display: flex; align-items: flex-start; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: transform 0.2s; }
.why-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.why-item:hover { transform: translateX(6px); }
.why-num { width: 36px; height: 36px; border: 1px solid rgba(46,139,87,0.4); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--green); flex-shrink: 0; }
.why-body h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-body p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
/* CTA */
#cta { background: var(--green); padding: 100px 0; }
.cta-inner { text-align: center; }
.cta-inner h2 { font-family: var(--font-head); font-size: clamp(36px, 5vw, 58px); font-weight: 800; letter-spacing: -0.03em; color: var(--white); margin-bottom: 20px; line-height: 1.1; }
.cta-inner p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--green); background: var(--white); padding: 16px 32px; border-radius: 100px; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; display: inline-block; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.btn-outline-white { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--white); background: transparent; padding: 16px 32px; border-radius: 100px; text-decoration: none; border: 2px solid rgba(255,255,255,0.5); transition: all 0.2s; display: inline-block; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.cta-contact-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 48px; }
.cta-contact-link { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.cta-contact-link:hover { color: var(--white); }
/* FOOTER */
footer { background: #080c10; padding: 48px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-logo { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: -0.02em; }
.footer-logo span { color: var(--green); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-family: var(--font-head); font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-socials { display: flex; gap: 10px; }
.fsoc { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; font-family: var(--font-head); font-weight: 600; transition: all 0.2s; }
.fsoc:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-copy { font-family: var(--font-head); font-size: 12px; color: rgba(255,255,255,0.25); text-align: center; margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); }
/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; } .fade-up.d2 { transition-delay: 0.2s; } .fade-up.d3 { transition-delay: 0.3s; }
/* RESPONSIVE */
@media (max-width: 1024px) {
nav { padding: 0 24px; }
.nav-links, .nav-cta { display: none; }
.hamburger { display: flex; }
.container { padding: 0 24px; }
.hero-inner { grid-template-columns: 1fr; gap: 48px; }
.hero-dots { width: 200px; height: 200px; }
.about-grid { grid-template-columns: 1fr; gap: 40px; }
.why-grid { grid-template-columns: 1fr; gap: 48px; }
.services-grid { grid-template-columns: 1fr 1fr; }
.project-card { grid-template-columns: 1fr; }
.project-card.reverse { direction: ltr; }
.project-visual { min-height: 220px; }
}
@media (max-width: 640px) {
section { padding: 72px 0; }
.services-grid { grid-template-columns: 1fr; }
.trust-item { padding: 18px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
.trust-item:last-child { border-bottom: none; }
.footer-inner { flex-direction: column; align-items: flex-start; }
}
</style>
</head>
<body>
<div class="mobile-menu" id="mobileMenu">
<button class="mobile-close" onclick="closeMobileMenu()">✕</button>
<a href="#work" onclick="closeMobileMenu()">Work</a>
<a href="#about" onclick="closeMobileMenu()">About</a>
<a href="#services" onclick="closeMobileMenu()">Services</a>
<a href="#why" onclick="closeMobileMenu()">Why Me</a>
<a href="#cta" onclick="closeMobileMenu()">Contact</a>
</div>
<nav id="mainNav">
<a href="#" class="nav-logo">Obinna <span>Ugwu</span></a>
<ul class="nav-links">
<li><a href="#work">Work</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#why">Why Me</a></li>
</ul>
<a href="#cta" class="nav-cta">Get a Free Consult</a>
<button class="hamburger" onclick="openMobileMenu()" aria-label="Open menu">
<span></span><span></span><span></span>
</button>
</nav>
<!-- HERO -->
<section id="hero">
<div class="hero-bg"></div>
<div class="hero-dots"></div>
<div class="container">
<div class="hero-inner">
<div class="hero-left">
<div class="hero-badge">Available for new projects</div>
<h1>I design digital products that turn users into <span class="accent">paying customers</span></h1>
<p class="hero-sub">UI/UX Designer helping startups and businesses build clean, high-converting, user-focused interfaces.</p>
<div class="hero-actions">
<a href="#cta" class="btn-green">Get a High-Converting Design →</a>
<a href="#work" class="btn-ghost">View My Work</a>
</div>
</div>
<div class="fade-up d1">
<div class="hero-card">
<div class="hero-card-label">Designer at a Glance</div>
<div class="hero-stats">
<div class="hstat"><div class="hstat-num">3+</div><div class="hstat-label">Years Exp.</div></div>
<div class="hstat"><div class="hstat-num">10+</div><div class="hstat-label">Projects Done</div></div>
<div class="hstat"><div class="hstat-num">5+</div><div class="hstat-label">Happy Clients</div></div>
<div class="hstat"><div class="hstat-num">100%</div><div class="hstat-label">Conversion Focus</div></div>
</div>
<div class="hero-avail">
<div class="avail-dot"></div>
<span>Open to freelance & full-time opportunities</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- TRUST BAR -->
<div id="trust">
<div class="container" style="padding:0 32px;">
<div class="trust-inner">
<div class="trust-item"><div class="trust-icon">🚀</div><div class="trust-text">Worked on 10+ design projects</div></div>
<div class="trust-item"><div class="trust-icon">📈</div><div class="trust-text">Focused on conversion-driven UI</div></div>
<div class="trust-item"><div class="trust-icon">📱</div><div class="trust-text">Experience across web & mobile</div></div>
</div>
</div>
</div>
<!-- WORK -->
<section id="work">
<div class="container">
<div class="work-header fade-up">
<div class="section-label">Selected Work</div>
<h2 class="section-title">Projects that solve<br>real design problems</h2>
<p class="section-sub">Here are a few projects where I solved real design problems and improved user experience.</p>
</div>
<div class="projects-grid">
<!-- Fortivy -->
<div class="project-card fade-up">
<div class="project-visual">
<div class="project-mockup">
<div class="mockup-bar">
<div class="mockup-dot" style="background:#ff5f57"></div>
<div class="mockup-dot" style="background:#febc2e"></div>
<div class="mockup-dot" style="background:#28c840"></div>
</div>
<div class="mockup-content">
<div class="mockup-line" style="width:50%;height:13px;background:var(--green-light)"></div>
<div class="mockup-line" style="width:75%;margin-top:8px"></div>
<div class="mockup-line" style="width:60%;background:var(--green-light)"></div>
<div class="mockup-grid">
<div class="mockup-block" style="background:var(--green-light)"></div>
<div class="mockup-block"></div>
<div class="mockup-block"></div>
<div class="mockup-block" style="background:var(--green-light)"></div>
</div>
</div>
</div>
</div>
<div class="project-body">
<div class="project-num">Project 01 · Mobile App · Case Study</div>
<h3>Fortivy — Mobile App Design</h3>
<div class="project-section-label">The Problem</div>
<p>Users needed a clear, structured mobile experience with intuitive navigation and a design that builds trust from first use.</p>
<div class="project-section-label">The Solution</div>
<p>Designed a clean mobile interface with strong visual hierarchy, simplified user flows, and a scalable component system.</p>
<div class="project-section-label">Key Design Decisions</div>
<ul class="project-decisions">
<li>Simplified navigation to reduce cognitive load</li>
<li>Used strong visual hierarchy for better readability</li>
<li>Designed mobile-first for accessibility</li>
<li>Built reusable component library in Figma</li>
</ul>
<div class="project-outcome"><p>"Improved usability with a seamless, intuitive experience users can navigate effortlessly."</p></div>
<div class="project-cta-row">
<a href="https://www.behance.net/gallery/234367975/Fortivy" target="_blank" class="btn-project">View Case Study →</a>
<div class="project-tags"><span class="ptag">Figma</span><span class="ptag">Mobile</span><span class="ptag">UX Research</span></div>
</div>
</div>
</div>
<!-- Dashboard -->
<div class="project-card reverse fade-up d1">
<div class="project-visual" style="background:#f0f4ff;">
<div class="project-mockup">
<div class="mockup-bar" style="background:#1e2a4a">
<div class="mockup-dot" style="background:#ff5f57"></div>
<div class="mockup-dot" style="background:#febc2e"></div>
<div class="mockup-dot" style="background:#28c840"></div>
</div>
<div class="mockup-content">
<div class="mockup-line" style="width:65%;height:12px;background:#dbeafe"></div>
<div class="mockup-grid" style="margin-top:8px">
<div class="mockup-block" style="background:#dbeafe;height:55px"></div>
<div class="mockup-block" style="background:#dbeafe;height:55px"></div>
</div>
<div class="mockup-line" style="margin-top:8px;background:#dbeafe"></div>
<div class="mockup-line" style="width:55%;background:#dbeafe"></div>
</div>
</div>
</div>
<div class="project-body">
<div class="project-num">Project 02 · Web Design · Dashboard</div>
<h3>Financial Dashboard — Banking UI</h3>
<div class="project-section-label">The Problem</div>
<p>Users struggled to interpret complex financial data quickly, leading to poor decision-making and low engagement.</p>
<div class="project-section-label">The Solution</div>
<p>Designed a clean dashboard with clear data visualization, logical information grouping, and instant key-metric visibility.</p>
<div class="project-section-label">Key Design Decisions</div>
<ul class="project-decisions">
<li>Prioritized key metrics in the primary view</li>
<li>Used consistent data visualization patterns</li>
<li>Reduced visual noise for faster scanning</li>
<li>Designed with accessibility in mind</li>
</ul>
<div class="project-outcome"><p>"A dashboard that makes complex financial data feel simple, clear, and instantly actionable."</p></div>
<div class="project-cta-row">
<a href="https://www.behance.net/gallery/228597031/Dashbaord" target="_blank" class="btn-project">View Case Study →</a>
<div class="project-tags"><span class="ptag">Figma</span><span class="ptag">Fintech</span><span class="ptag">Dashboard</span></div>
</div>
</div>
</div>
<!-- Landing Page -->
<div class="project-card fade-up d2">
<div class="project-visual" style="background:#fff7ed;">
<div class="project-mockup">
<div class="mockup-bar" style="background:#7c3aed">
<div class="mockup-dot" style="background:#ff5f57"></div>
<div class="mockup-dot" style="background:#febc2e"></div>
<div class="mockup-dot" style="background:#28c840"></div>
</div>
<div class="mockup-content">
<div style="height:8px;background:var(--gray-line);border-radius:4px;width:40%;margin-bottom:8px"></div>
<div style="height:14px;background:#fed7aa;border-radius:4px;width:85%;margin-bottom:6px"></div>
<div style="height:10px;background:var(--gray-line);border-radius:4px;width:60%;margin-bottom:16px"></div>
<div style="height:32px;background:#ea580c;border-radius:100px;width:50%"></div>
</div>
</div>
</div>
<div class="project-body">
<div class="project-num">Project 03 · Web Design · Landing Page</div>
<h3>Finance Landing Page — Conversion UI</h3>
<div class="project-section-label">The Problem</div>
<p>Finance landing pages often overwhelm visitors with too much information, resulting in poor conversion rates and drop-offs.</p>
<div class="project-section-label">The Solution</div>
<p>Designed a focused, conversion-optimized page with a clear value proposition, strategic CTAs, and a clean visual layout.</p>
<div class="project-section-label">Key Design Decisions</div>
<ul class="project-decisions">
<li>Single, clear call-to-action above the fold</li>
<li>Trust signals placed near conversion points</li>
<li>Clean typographic hierarchy for quick scanning</li>
</ul>
<div class="project-outcome"><p>"A landing page designed to communicate value instantly and convert visitors into users."</p></div>
<div class="project-cta-row">
<a href="https://www.behance.net/gallery/228597787/Landing-Page" target="_blank" class="btn-project">View Case Study →</a>
<div class="project-tags"><span class="ptag">Figma</span><span class="ptag">Landing Page</span><span class="ptag">Finance</span></div>
</div>
</div>
</div>
</div>
<div style="text-align:center;margin-top:48px;" class="fade-up">
<a href="https://www.behance.net/obinnaugwu" target="_blank" class="btn-ghost">View All Projects on Behance →</a>
</div>
</div>
</section>
<!-- ABOUT -->
<section id="about">
<div class="container">
<div class="about-grid">
<div class="fade-up">
<div class="about-card-main">
<h3>I don't just design interfaces — I solve problems.</h3>
<p style="margin-bottom:14px">Every design decision I make is grounded in improving the user experience and driving real, measurable results for businesses.</p>
<p>I work closely with founders, product managers, and developers to deliver designs that are functional, beautiful, and built to convert.</p>
<div style="margin-top:24px;display:flex;gap:14px;flex-wrap:wrap;">
<div style="display:flex;align-items:center;gap:6px;font-family:var(--font-head);font-size:13px;font-weight:500;color:var(--ink-soft);"><span style="color:var(--green);font-weight:700;">✓</span> Figma Expert</div>
<div style="display:flex;align-items:center;gap:6px;font-family:var(--font-head);font-size:13px;font-weight:500;color:var(--ink-soft);"><span style="color:var(--green);font-weight:700;">✓</span> UI/UX Strategy</div>
<div style="display:flex;align-items:center;gap:6px;font-family:var(--font-head);font-size:13px;font-weight:500;color:var(--ink-soft);"><span style="color:var(--green);font-weight:700;">✓</span> Prototyping</div>
<div style="display:flex;align-items:center;gap:6px;font-family:var(--font-head);font-size:13px;font-weight:500;color:var(--ink-soft);"><span style="color:var(--green);font-weight:700;">✓</span> Design Systems</div>
</div>
</div>
<div class="about-badge-float">
<div class="big">3+</div>
<div class="small">Years of Design<br>Experience</div>
</div>
</div>
<div class="about-text-col fade-up d1">
<div class="section-label">About Me</div>
<h2 class="section-title">Obinna Ugwu,<br>UI/UX Designer</h2>
<p>I'm a UI/UX designer focused on building clean, functional, and conversion-driven digital products. Based in Enugu, Nigeria, I work with startups and businesses across Africa and beyond.</p>
<p>I don't just design interfaces — I solve problems. Every decision I make is based on improving user experience and driving real results for businesses.</p>
<div class="about-goal">
<div class="about-goal-icon">🎯</div>
<p>My goal is simple: create products that are easy to use, visually clean, and built to convert.</p>
</div>
<div style="margin-top:32px;">
<a href="#cta" class="btn-green">Work With Me →</a>
</div>
</div>
</div>
</div>
</section>
<!-- SERVICES -->
<section id="services">
<div class="container">
<div class="services-header fade-up">
<div class="section-label">What I Do</div>
<h2 class="section-title">Services built around<br>your business goals</h2>
<p class="section-sub">Every service I offer is focused on one outcome — helping your product perform better.</p>
</div>
<div class="services-grid">
<div class="service-card fade-up">
<div class="service-icon">🎨</div>
<h3>UI/UX Design</h3>
<p>Clean, modern interfaces designed to improve usability and engagement — from wireframes to polished high-fidelity screens.</p>
<div class="service-features">
<div class="sf">User Research & Strategy</div>
<div class="sf">Wireframing & Prototyping</div>
<div class="sf">High-Fidelity UI Design</div>
<div class="sf">Usability Testing</div>
</div>
</div>
<div class="service-card fade-up d1">
<div class="service-icon">📣</div>
<h3>Landing Page Design</h3>
<p>High-converting landing pages focused on turning visitors into customers. Every element is designed with conversion in mind.</p>
<div class="service-features">
<div class="sf">Conversion-Focused Layout</div>
<div class="sf">Clear Value Proposition</div>
<div class="sf">Strategic CTA Placement</div>
<div class="sf">Mobile-Responsive Design</div>
</div>
</div>
<div class="service-card fade-up d2">
<div class="service-icon">📦</div>
<h3>Product Design</h3>
<p>End-to-end design for web and mobile applications — from concept and research through to a fully designed, dev-ready product.</p>
<div class="service-features">
<div class="sf">Product Strategy</div>
<div class="sf">Design Systems</div>
<div class="sf">Web & Mobile Apps</div>
<div class="sf">Developer Handoff</div>
</div>
</div>
</div>
</div>
</section>
<!-- WHY -->
<section id="why">
<div class="container">
<div class="why-grid">
<div class="why-left fade-up">
<div class="section-label" style="background:rgba(46,139,87,0.15);color:#4ade80;">Why Work With Me</div>
<h2 class="section-title" style="color:var(--white);margin-top:12px;">Design that delivers<br>real business results</h2>
<p>I bring more than aesthetics to the table. Every project I take on is approached as a business problem first — and a design challenge second.</p>
<div style="margin-top:36px;"><a href="#cta" class="btn-green">Start a Project →</a></div>
</div>
<div class="why-items fade-up d1">
<div class="why-item">
<div class="why-num">01</div>
<div class="why-body"><h4>Business Goals Come First</h4><p>I design with your business objectives in mind. Every decision is made to move your numbers forward.</p></div>
</div>
<div class="why-item">
<div class="why-num">02</div>
<div class="why-body"><h4>Clarity, Usability, Conversion</h4><p>I focus on the three things that matter most — making your product clear, easy to use, and built to convert.</p></div>
</div>
<div class="why-item">
<div class="why-num">03</div>
<div class="why-body"><h4>Simple, Functional, Effective</h4><p>I keep designs clean and purposeful. No unnecessary complexity — just elegant solutions that work.</p></div>
</div>
<div class="why-item">
<div class="why-num">04</div>
<div class="why-body"><h4>Clear Communication Always</h4><p>You'll always know where your project stands. I keep clients informed at every stage of the process.</p></div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA -->
<section id="cta">
<div class="container">
<div class="cta-inner fade-up">
<h2>Let's Build Something<br>That Actually Works</h2>
<p>If you need a clean, high-converting design that delivers real results — let's talk. I'm ready when you are.</p>
<div class="cta-actions">
<a href="mailto:obinna.s.ugwu@gmail.com" class="btn-white">Send Me an Email →</a>
<a href="https://wa.me/2349039337507" target="_blank" class="btn-outline-white">Chat on WhatsApp</a>
</div>
<div class="cta-contact-links">
<a href="https://www.linkedin.com/in/obinnaugwu" target="_blank" class="cta-contact-link"><span>in</span> LinkedIn</a>
<a href="https://x.com/ObinnaUgwuUIUX" target="_blank" class="cta-contact-link"><span>𝕏</span> @ObinnaUgwuUIUX</a>
<a href="https://www.facebook.com/theobinnaugwu" target="_blank" class="cta-contact-link"><span>f</span> Facebook</a>
<a href="mailto:obinna.s.ugwu@gmail.com" class="cta-contact-link"><span>✉</span> obinna.s.ugwu@gmail.com</a>
</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="container">
<div class="footer-inner">
<a href="#" class="footer-logo">Obinna <span>Ugwu</span></a>
<div class="footer-links">
<a href="#work">Work</a>
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#cta">Contact</a>
</div>
<div class="footer-socials">
<a href="https://www.linkedin.com/in/obinnaugwu" target="_blank" class="fsoc">in</a>
<a href="https://x.com/ObinnaUgwuUIUX" target="_blank" class="fsoc">𝕏</a>
<a href="https://www.facebook.com/theobinnaugwu" target="_blank" class="fsoc">f</a>
<a href="https://wa.me/2349039337507" target="_blank" class="fsoc">✉</a>
</div>
</div>
<p class="footer-copy">© 2026 Obinna Ugwu. All rights reserved. · UI/UX Designer based in Enugu, Nigeria.</p>
</div>
</footer>
<script>
window.addEventListener('scroll', () => {
document.getElementById('mainNav').classList.toggle('scrolled', window.scrollY > 40);
});
function openMobileMenu() { document.getElementById('mobileMenu').classList.add('open'); }
function closeMobileMenu() { document.getElementById('mobileMenu').classList.remove('open'); }
const observer = new IntersectionObserver((entries) => {
entries.forEach(e => { if (e.isIntersecting) e.target.classList.add('visible'); });
}, { threshold: 0.12 });
document.querySelectorAll('.fade-up').forEach(el => observer.observe(el));
</script>
</body>
</html>