-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1189 lines (1132 loc) · 61.1 KB
/
Copy pathindex.html
File metadata and controls
1189 lines (1132 loc) · 61.1 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
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Mohammad Samir — 5D BIM & Cost Integration Specialist. Model-to-BoQ quantification, BIM commercial audits, Power BI dashboards, and remote QS support across the GCC.">
<title>Mohammad Samir — 5D BIM & Cost Integration</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@300;400&family=IBM+Plex+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<style>
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
--bg:#f7f6f2;
--bg2:#f0ede6;
--bg3:#eae6dd;
--white:#ffffff;
--ink:#111214;
--ink2:#3d4147;
--ink3:#7a8390;
--ink4:#b0b8c1;
--accent:#0a6e61;
--accent2:#0d8a7a;
--accent-l:rgba(10,110,97,0.08);
--accent-l2:rgba(10,110,97,0.14);
--accent-l3:rgba(10,110,97,0.22);
--border:rgba(0,0,0,0.07);
--border2:rgba(0,0,0,0.12);
--border3:rgba(0,0,0,0.18);
--shadow-s:0 2px 12px rgba(0,0,0,0.06);
--shadow-m:0 8px 32px rgba(0,0,0,0.08);
--shadow-l:0 20px 60px rgba(0,0,0,0.1);
--mono:'IBM Plex Mono',monospace;
--sans:'IBM Plex Sans',sans-serif;
--disp:'Syne',sans-serif;
--r:8px;
--r2:14px;
--r3:20px;
--ease:cubic-bezier(.4,0,.2,1);
--ease-out:cubic-bezier(0,0,.2,1);
}
html{scroll-behavior:smooth}
body{font-family:var(--sans);background:var(--bg);color:var(--ink);line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased}
::selection{background:var(--accent);color:#fff}
a{color:inherit;text-decoration:none}
::-webkit-scrollbar{width:4px}
::-webkit-scrollbar-track{background:var(--bg2)}
::-webkit-scrollbar-thumb{background:var(--ink4);border-radius:4px}
nav{
position:fixed;top:0;left:0;right:0;z-index:200;height:64px;
display:flex;justify-content:space-between;align-items:center;padding:0 3rem;
background:rgba(247,246,242,0.9);backdrop-filter:blur(20px);
border-bottom:1px solid var(--border);transition:box-shadow .3s var(--ease)
}
nav.scrolled{box-shadow:var(--shadow-s)}
.nav-id{display:flex;flex-direction:column;gap:1px}
.nav-name{font-family:var(--disp);font-size:14px;font-weight:700;color:var(--ink);letter-spacing:-.01em}
.nav-role{font-family:var(--mono);font-size:9px;color:var(--ink3);letter-spacing:.14em;text-transform:uppercase}
.nav-links{display:flex;gap:2rem;align-items:center}
.nav-links a{font-family:var(--mono);font-size:10px;color:var(--ink3);letter-spacing:.1em;text-transform:uppercase;transition:color .18s var(--ease)}
.nav-links a:hover{color:var(--accent)}
.nav-cta{
padding:8px 20px;background:var(--ink);color:#fff!important;border-radius:var(--r);
font-family:var(--mono);font-size:10px;letter-spacing:.08em;text-transform:uppercase;
transition:background .2s var(--ease),transform .15s var(--ease),box-shadow .2s!important
}
.nav-cta:hover{background:var(--accent)!important;transform:translateY(-1px);box-shadow:0 4px 16px rgba(10,110,97,.3)!important}
section{position:relative;z-index:1}
.wrap{max-width:1080px;margin:0 auto;padding:0 2.5rem}
.sw{padding:100px 0}
.eyebrow{
font-family:var(--mono);font-size:9.5px;letter-spacing:.28em;text-transform:uppercase;
color:var(--accent);margin-bottom:.9rem;display:inline-flex;align-items:center;gap:10px
}
.eyebrow::before{content:'';display:block;width:18px;height:1.5px;background:var(--accent);flex-shrink:0}
h2.sh{font-family:var(--disp);font-size:clamp(1.8rem,3.2vw,2.75rem);font-weight:700;line-height:1.08;letter-spacing:-.025em;color:var(--ink);margin-bottom:1rem}
p.sub{font-size:15px;color:var(--ink2);line-height:1.82;font-weight:300}
.btn{
display:inline-flex;align-items:center;gap:8px;
font-family:var(--mono);font-size:11px;letter-spacing:.07em;text-transform:uppercase;
padding:14px 28px;border-radius:var(--r);cursor:pointer;
transition:all .2s var(--ease);white-space:nowrap;font-weight:400
}
.btn-p{background:var(--ink);color:#fff;border:1.5px solid var(--ink)}
.btn-p:hover{background:var(--accent);border-color:var(--accent);transform:translateY(-2px);box-shadow:0 8px 24px rgba(10,110,97,.25)}
.btn-s{background:transparent;color:var(--ink2);border:1.5px solid var(--border2)}
.btn-s:hover{border-color:var(--accent);color:var(--accent);transform:translateY(-2px)}
.btn-lg{padding:16px 34px;font-size:12px}
#hero{
min-height:100vh;display:flex;align-items:center;
padding-top:64px;overflow:hidden;position:relative;
background:linear-gradient(160deg,#fff 0%,var(--bg) 55%,var(--bg2) 100%)
}
.hero-texture{
position:absolute;inset:0;pointer-events:none;z-index:0;
background-image:
linear-gradient(rgba(10,110,97,.04) 1px,transparent 1px),
linear-gradient(90deg,rgba(10,110,97,.04) 1px,transparent 1px);
background-size:40px 40px;
mask-image:radial-gradient(ellipse 80% 80% at 70% 40%,#000 0%,transparent 70%)
}
.hero-dots{position:absolute;inset:0;pointer-events:none;z-index:0}
.hero-dot{
position:absolute;border-radius:50%;
animation:heroDot ease-in-out infinite;
}
@keyframes heroDot{
0%,100%{transform:translateY(0);opacity:.5}
50%{transform:translateY(-18px);opacity:1}
}
.blueprint{
position:absolute;right:0;top:0;bottom:0;width:52%;
pointer-events:none;z-index:0;overflow:hidden;opacity:.7
}
.blueprint svg{width:100%;height:100%}
.hero-inner{position:relative;z-index:1;padding:100px 0 80px;max-width:780px}
.hero-badge{
display:inline-flex;align-items:center;gap:9px;
font-family:var(--mono);font-size:10px;color:var(--accent);
background:var(--accent-l);border:1px solid var(--accent-l3);border-radius:100px;
padding:6px 16px;margin-bottom:2.5rem;letter-spacing:.07em;text-transform:uppercase
}
.badge-dot{width:7px;height:7px;border-radius:50%;background:var(--accent);animation:badgePulse 2s ease-in-out infinite}
@keyframes badgePulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.35;transform:scale(.7)}}
h1.hn{
font-family:var(--disp);font-size:clamp(2.8rem,6vw,5rem);
font-weight:800;line-height:1.02;letter-spacing:-.035em;color:var(--ink);margin-bottom:.4rem
}
h1.hn em{color:var(--accent);font-style:normal}
.hero-spec{
font-family:var(--disp);font-size:clamp(1rem,2vw,1.4rem);
font-weight:500;color:var(--ink3);margin-bottom:2rem;letter-spacing:-.01em
}
.hero-desc{
font-size:16px;color:var(--ink2);line-height:1.8;
max-width:600px;font-weight:300;margin-bottom:2.5rem
}
.hero-desc strong{color:var(--ink);font-weight:500}
.hero-outcomes{list-style:none;display:flex;flex-direction:column;gap:.7rem;margin-bottom:3rem}
.hero-outcomes li{
display:flex;align-items:flex-start;gap:12px;
font-size:14.5px;color:var(--ink2);font-weight:300;
padding:.75rem 1rem;background:var(--white);border:1px solid var(--border);
border-radius:var(--r);
transition:border-color .2s var(--ease),box-shadow .2s var(--ease),transform .2s var(--ease)
}
.hero-outcomes li:hover{border-color:var(--accent-l3);box-shadow:var(--shadow-s);transform:translateX(4px)}
.hero-outcomes li .arrow{
flex-shrink:0;width:22px;height:22px;border-radius:5px;
background:var(--accent-l);display:flex;align-items:center;justify-content:center;margin-top:1px
}
.hero-outcomes li .arrow svg{width:11px;height:11px;stroke:var(--accent);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.hero-outcomes li strong{color:var(--ink);font-weight:500}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:4rem}
.hero-trust{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;padding-top:2rem;border-top:1px solid var(--border2)}
.trust-label{font-family:var(--mono);font-size:9px;color:var(--ink4);letter-spacing:.16em;text-transform:uppercase;white-space:nowrap}
.trust-pills{display:flex;gap:.5rem;flex-wrap:wrap}
.trust-pill{
font-family:var(--mono);font-size:9px;padding:4px 11px;
border:1px solid var(--border2);color:var(--ink3);border-radius:100px;
letter-spacing:.04em;background:var(--white);
transition:border-color .18s,color .18s,background .18s
}
.trust-pill:hover{border-color:var(--accent);color:var(--accent);background:var(--accent-l)}
#trust-bar{background:var(--ink);position:relative;overflow:hidden}
.trust-bar-texture{
position:absolute;inset:0;pointer-events:none;
background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
background-size:32px 32px
}
.trust-bar-inner{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(255,255,255,.06)}
.tb-cell{
padding:2.5rem 2rem;display:flex;flex-direction:column;gap:8px;
transition:background .2s var(--ease)
}
.tb-cell:hover{background:rgba(255,255,255,.04)}
.tb-num{
font-family:var(--disp);font-size:2.25rem;font-weight:800;color:#fff;
letter-spacing:-.04em;line-height:1;
}
.tb-num em{color:var(--accent2);font-style:normal}
.tb-label{font-family:var(--mono);font-size:9px;color:rgba(255,255,255,.4);letter-spacing:.14em;text-transform:uppercase}
#problem{background:var(--white)}
.prob-g{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.prob-left p.sub{margin-bottom:2rem}
.prob-items{display:flex;flex-direction:column;gap:1.1rem}
.prob-item{
display:flex;gap:14px;align-items:flex-start;
padding:1.25rem 1.25rem;background:var(--bg);border:1px solid var(--border);border-radius:var(--r2);
transition:border-color .2s var(--ease),box-shadow .2s var(--ease),transform .2s var(--ease)
}
.prob-item:hover{border-color:var(--accent-l3);box-shadow:var(--shadow-m);transform:translateY(-3px)}
.prob-icon{
flex-shrink:0;width:36px;height:36px;border-radius:var(--r);
background:var(--accent-l);border:1px solid var(--accent-l3);
display:flex;align-items:center;justify-content:center;margin-top:1px
}
.prob-icon svg{width:15px;height:15px;stroke:var(--accent);fill:none;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.pi-title{font-size:13.5px;font-weight:600;color:var(--ink);margin-bottom:3px}
.pi-desc{font-size:12.5px;color:var(--ink2);line-height:1.65;font-weight:300}
.prob-panel{
background:var(--ink);border-radius:var(--r3);padding:3rem;
position:relative;overflow:hidden
}
.prob-panel-texture{
position:absolute;inset:0;pointer-events:none;
background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
background-size:28px 28px
}
.prob-panel-accent{
position:absolute;top:-60px;right:-60px;width:180px;height:180px;border-radius:50%;
background:radial-gradient(circle,rgba(10,110,97,.25) 0%,transparent 70%)
}
.pp-content{position:relative;z-index:1}
.pp-label{font-family:var(--mono);font-size:9px;letter-spacing:.22em;text-transform:uppercase;color:var(--accent2);margin-bottom:1rem}
.pp-quote{font-family:var(--disp);font-size:1.2rem;font-weight:600;color:#fff;line-height:1.42;margin-bottom:1.5rem}
.pp-body{font-size:13px;color:rgba(255,255,255,.55);line-height:1.82;font-weight:300}
.pp-body p+p{margin-top:.85rem}
.pp-divider{border:none;border-top:1px solid rgba(255,255,255,.1);margin:1.5rem 0}
.pp-stat{display:flex;gap:2rem;flex-wrap:wrap}
.pp-stat-n{font-family:var(--disp);font-size:1.5rem;font-weight:700;color:#fff}
.pp-stat-l{font-family:var(--mono);font-size:9px;color:rgba(255,255,255,.4);letter-spacing:.1em;text-transform:uppercase}
#services{background:var(--bg)}
.svc-header{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:3rem;gap:2rem;flex-wrap:wrap}
.pkg-list{display:flex;flex-direction:column;gap:1rem}
.pkg{
background:var(--white);border:1px solid var(--border);border-radius:var(--r2);
padding:2.25rem 2.5rem;display:grid;grid-template-columns:2.5rem 1.6fr 1fr 1fr;gap:2rem;align-items:start;
transition:border-color .22s var(--ease),box-shadow .22s var(--ease),transform .22s var(--ease);
cursor:default;position:relative;overflow:hidden
}
.pkg::before{
content:'';position:absolute;left:0;top:0;bottom:0;width:3px;
background:var(--accent);transform:scaleY(0);transform-origin:bottom;
transition:transform .25s var(--ease)
}
.pkg:hover{border-color:rgba(10,110,97,.25);box-shadow:var(--shadow-m);transform:translateY(-3px)}
.pkg:hover::before{transform:scaleY(1)}
.pkg-num{font-family:var(--mono);font-size:10px;color:var(--ink4);padding-top:3px;letter-spacing:.05em}
.pkg-name{font-family:var(--disp);font-size:1.05rem;font-weight:700;color:var(--ink);margin-bottom:.4rem;line-height:1.2}
.pkg-tagline{font-size:12.5px;color:var(--ink2);font-weight:300;line-height:1.6;margin-bottom:.85rem}
.pkg-pills{display:flex;flex-wrap:wrap;gap:4px}
.pill{
font-family:var(--mono);font-size:9px;padding:3px 8px;
border:1px solid var(--border2);color:var(--ink3);border-radius:100px;
letter-spacing:.04em;text-transform:uppercase;background:var(--bg);
transition:border-color .18s,color .18s,background .18s
}
.pill:hover,.pkg:hover .pill{border-color:var(--accent-l3);color:var(--accent);background:var(--accent-l)}
.pkg-col-label{font-family:var(--mono);font-size:9px;color:var(--ink4);letter-spacing:.14em;text-transform:uppercase;margin-bottom:.6rem}
.pkg-col-list{list-style:none;display:flex;flex-direction:column;gap:.4rem}
.pkg-col-list li{font-size:12.5px;color:var(--ink2);font-weight:300;display:flex;gap:7px;align-items:flex-start;line-height:1.5}
.pkg-col-list li::before{content:'·';color:var(--accent);flex-shrink:0;font-weight:700}
.pkg-outcome{
background:var(--accent-l);border:1px solid var(--accent-l3);
border-radius:var(--r);padding:.9rem 1rem;
transition:background .2s var(--ease)
}
.pkg:hover .pkg-outcome{background:var(--accent-l2)}
.pkg-outcome-label{font-family:var(--mono);font-size:8px;color:var(--accent);letter-spacing:.18em;text-transform:uppercase;margin-bottom:.35rem}
.pkg-outcome-text{font-size:12.5px;color:var(--ink);font-weight:500;line-height:1.55}
#proof{background:var(--white)}
.proof-header{margin-bottom:3rem}
.cases{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-bottom:3rem}
.case{
background:var(--bg);border:1px solid var(--border);border-radius:var(--r2);
padding:2rem;display:flex;flex-direction:column;
transition:border-color .22s var(--ease),box-shadow .22s var(--ease),transform .22s var(--ease)
}
.case:hover{border-color:rgba(10,110,97,.25);box-shadow:var(--shadow-l);transform:translateY(-6px)}
.case-type{font-family:var(--mono);font-size:9px;letter-spacing:.2em;text-transform:uppercase;color:var(--accent);margin-bottom:.85rem}
.case-title{font-family:var(--disp);font-size:1rem;font-weight:700;color:var(--ink);margin-bottom:1.25rem;line-height:1.25}
.case-row{margin-bottom:.85rem}
.case-row-label{font-family:var(--mono);font-size:8.5px;color:var(--ink4);letter-spacing:.16em;text-transform:uppercase;margin-bottom:.3rem}
.case-row-text{font-size:12.5px;color:var(--ink2);line-height:1.65;font-weight:300}
.case-result{margin-top:auto;padding-top:1.25rem;border-top:1px solid var(--border2)}
.case-result-label{font-family:var(--mono);font-size:8.5px;color:var(--accent);letter-spacing:.16em;text-transform:uppercase;margin-bottom:.3rem}
.case-result-text{font-size:13px;color:var(--ink);font-weight:600;line-height:1.5}
.visual-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:0}
.visual-card{
border-radius:var(--r2);overflow:hidden;position:relative;
aspect-ratio:16/10;background:var(--bg2);border:1px solid var(--border);
transition:box-shadow .22s var(--ease),transform .22s var(--ease)
}
.visual-card:hover{box-shadow:var(--shadow-l);transform:translateY(-4px) scale(1.01)}
.visual-card-bg{
position:absolute;inset:0;
display:flex;align-items:center;justify-content:center;overflow:hidden
}
.visual-card-bg svg{width:100%;height:100%;opacity:.15}
.visual-card-content{
position:absolute;inset:0;display:flex;flex-direction:column;
justify-content:flex-end;padding:1.5rem;
background:linear-gradient(to top,rgba(17,18,20,.7) 0%,transparent 55%)
}
.vc-label{font-family:var(--mono);font-size:9px;color:rgba(255,255,255,.6);letter-spacing:.16em;text-transform:uppercase;margin-bottom:.3rem}
.vc-title{font-family:var(--disp);font-size:.95rem;font-weight:700;color:#fff}
.vc-file{font-family:var(--mono);font-size:8px;color:rgba(255,255,255,.4);margin-top:.25rem}
#clients{background:var(--bg2)}
.clients-g{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;margin-top:3rem}
.client-card{
background:var(--white);border:1px solid var(--border);border-radius:var(--r2);
padding:2rem 1.75rem;position:relative;overflow:hidden;
transition:border-color .22s var(--ease),box-shadow .22s var(--ease),transform .22s var(--ease)
}
.client-card::after{
content:'';position:absolute;bottom:0;left:0;right:0;height:3px;
background:linear-gradient(90deg,var(--accent),var(--accent2));
transform:scaleX(0);transform-origin:left;transition:transform .25s var(--ease)
}
.client-card:hover{border-color:rgba(10,110,97,.2);box-shadow:var(--shadow-m);transform:translateY(-4px)}
.client-card:hover::after{transform:scaleX(1)}
.cc-icon{
width:40px;height:40px;border-radius:var(--r);background:var(--accent-l);
border:1px solid var(--accent-l3);display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem
}
.cc-icon svg{width:18px;height:18px;stroke:var(--accent);fill:none;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.cc-tag{font-family:var(--mono);font-size:9px;letter-spacing:.2em;text-transform:uppercase;color:var(--accent);margin-bottom:.6rem}
.cc-title{font-family:var(--disp);font-size:1rem;font-weight:700;color:var(--ink);margin-bottom:.65rem;line-height:1.2}
.cc-desc{font-size:12.5px;color:var(--ink2);line-height:1.68;font-weight:300}
#process{background:var(--white)}
.process-g{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;margin-top:3rem;position:relative}
.process-g::before{
content:'';position:absolute;top:2rem;left:calc(12.5% + 1rem);right:calc(12.5% + 1rem);
height:1px;background:linear-gradient(90deg,transparent,var(--accent-l3) 20%,var(--accent-l3) 80%,transparent);
pointer-events:none;z-index:0
}
.proc-step{
background:var(--bg);border:1px solid var(--border);border-radius:var(--r2);
padding:2rem 1.75rem;position:relative;z-index:1;
transition:border-color .22s var(--ease),box-shadow .22s var(--ease),transform .22s var(--ease)
}
.proc-step:hover{border-color:rgba(10,110,97,.25);box-shadow:var(--shadow-m);transform:translateY(-4px)}
.proc-n-wrap{
width:38px;height:38px;border-radius:50%;background:var(--white);border:2px solid var(--border2);
display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem;
transition:border-color .2s,background .2s
}
.proc-step:hover .proc-n-wrap{border-color:var(--accent);background:var(--accent-l)}
.proc-n{font-family:var(--mono);font-size:10px;color:var(--ink3);letter-spacing:.05em;font-weight:400}
.proc-step:hover .proc-n{color:var(--accent)}
.proc-title{font-family:var(--disp);font-size:.98rem;font-weight:700;color:var(--ink);margin-bottom:.55rem}
.proc-desc{font-size:12.5px;color:var(--ink2);line-height:1.68;font-weight:300}
#tools{background:var(--bg2)}
.tools-g{display:grid;grid-template-columns:repeat(5,1fr);gap:1rem;margin-top:3rem}
.tool{
background:var(--white);border:1px solid var(--border);border-radius:var(--r2);
padding:1.6rem 1.4rem;display:flex;flex-direction:column;gap:7px;
transition:border-color .22s var(--ease),box-shadow .22s var(--ease),transform .22s var(--ease)
}
.tool:hover{border-color:rgba(10,110,97,.25);box-shadow:var(--shadow-m);transform:translateY(-4px)}
.tool-n{font-family:var(--disp);font-size:13.5px;font-weight:700;color:var(--ink)}
.tool-r{font-family:var(--mono);font-size:9px;color:var(--ink3);letter-spacing:.06em;text-transform:uppercase;line-height:1.5}
.tool-dot{width:5px;height:5px;border-radius:50%;background:var(--accent);margin-top:auto}
#cta{background:var(--ink);position:relative;overflow:hidden}
.cta-texture{
position:absolute;inset:0;pointer-events:none;
background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
background-size:44px 44px
}
.cta-glow{
position:absolute;top:-200px;left:50%;transform:translateX(-50%);
width:600px;height:600px;border-radius:50%;
background:radial-gradient(circle,rgba(10,110,97,.18) 0%,transparent 65%);
pointer-events:none
}
.cta-orb{
position:absolute;border-radius:50%;pointer-events:none;
animation:orbFloat ease-in-out infinite
}
@keyframes orbFloat{
0%,100%{transform:translateY(0) scale(1)}
50%{transform:translateY(-24px) scale(1.04)}
}
.cta-inner{max-width:720px;margin:0 auto;text-align:center;padding:100px 0;position:relative;z-index:1}
.cta-badge{
display:inline-flex;align-items:center;gap:8px;font-family:var(--mono);font-size:10px;
color:rgba(255,255,255,.5);border:1px solid rgba(255,255,255,.12);border-radius:100px;
padding:6px 16px;margin-bottom:2rem;letter-spacing:.08em;text-transform:uppercase
}
.cta-badge-dot{width:5px;height:5px;border-radius:50%;background:var(--accent2)}
h2.cta-h{
font-family:var(--disp);font-size:clamp(2rem,4.5vw,3.5rem);font-weight:800;
letter-spacing:-.035em;line-height:1.06;color:#fff;margin-bottom:1rem
}
h2.cta-h em{color:var(--accent2);font-style:normal}
.cta-sub{font-size:15px;color:rgba(255,255,255,.5);line-height:1.8;font-weight:300;margin-bottom:2.5rem}
.cta-options{
display:grid;grid-template-columns:repeat(3,1fr);gap:1px;
background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);
border-radius:var(--r2);overflow:hidden;margin-bottom:3rem;text-align:left
}
.cta-opt{padding:1.5rem;transition:background .2s var(--ease)}
.cta-opt:hover{background:rgba(255,255,255,.04)}
.cta-opt-title{font-family:var(--mono);font-size:10px;color:var(--accent2);letter-spacing:.12em;text-transform:uppercase;margin-bottom:.4rem}
.cta-opt-desc{font-size:12px;color:rgba(255,255,255,.4);font-weight:300;line-height:1.6}
.cta-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-bottom:2.5rem}
.btn-light{background:#fff;color:var(--ink);border:1.5px solid #fff}
.btn-light:hover{background:var(--accent2);color:#fff;border-color:var(--accent2);transform:translateY(-2px);box-shadow:0 8px 24px rgba(10,110,97,.4)}
.btn-ghost-light{background:transparent;color:rgba(255,255,255,.6);border:1.5px solid rgba(255,255,255,.18)}
.btn-ghost-light:hover{border-color:rgba(255,255,255,.5);color:#fff;transform:translateY(-2px)}
.cta-divider{border:none;border-top:1px solid rgba(255,255,255,.08);margin:2rem 0}
.cta-meta{
font-family:var(--mono);font-size:11px;color:rgba(255,255,255,.35);
letter-spacing:.05em;display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap;align-items:center
}
.cta-meta a{transition:color .15s}
.cta-meta a:hover{color:var(--accent2)}
.cta-meta span{color:rgba(255,255,255,.15)}
.response-note{
display:inline-flex;align-items:center;gap:6px;margin-top:1.5rem;
font-family:var(--mono);font-size:9px;color:rgba(255,255,255,.3);
letter-spacing:.1em;text-transform:uppercase
}
.response-dot{width:5px;height:5px;border-radius:50%;background:var(--accent2);animation:badgePulse 2.5s ease-in-out infinite}
footer{
background:var(--bg2);border-top:1px solid var(--border);
padding:1.5rem 2.5rem;display:flex;justify-content:space-between;align-items:center;gap:1rem;flex-wrap:wrap
}
.ft-l{display:flex;flex-direction:column;gap:3px}
.ft-name{font-family:var(--disp);font-size:13px;font-weight:700;color:var(--ink)}
.ft-spec{font-family:var(--mono);font-size:9px;color:var(--ink3);letter-spacing:.1em;text-transform:uppercase}
.ft-r{font-family:var(--mono);font-size:9px;color:var(--ink4);letter-spacing:.07em;text-align:right}
.reveal{opacity:0;transform:translateY(22px);transition:opacity .65s var(--ease-out),transform .65s var(--ease-out)}
.reveal.vis{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:.08s}
.reveal-delay-2{transition-delay:.16s}
.reveal-delay-3{transition-delay:.24s}
.reveal-delay-4{transition-delay:.32s}
@media(max-width:1020px){
.pkg{grid-template-columns:2.5rem 1fr}.pkg-col,.pkg-outcome{display:none}
.prob-g{grid-template-columns:1fr;gap:3rem}
.cases{grid-template-columns:1fr 1fr}
.visual-strip{grid-template-columns:1fr 1fr}
.clients-g{grid-template-columns:repeat(2,1fr)}
.process-g{grid-template-columns:repeat(2,1fr)}.process-g::before{display:none}
.tools-g{grid-template-columns:repeat(3,1fr)}
.trust-bar-inner{grid-template-columns:repeat(2,1fr)}
.cta-options{grid-template-columns:1fr}
.sw{padding:72px 0}
}
@media(max-width:680px){
nav{padding:0 1.5rem}
.nav-links a:not(.nav-cta){display:none}
.wrap{padding:0 1.5rem}
.cases,.visual-strip{grid-template-columns:1fr}
.clients-g,.process-g,.tools-g{grid-template-columns:1fr}
.trust-bar-inner{grid-template-columns:repeat(2,1fr)}
.hero-trust{flex-direction:column;align-items:flex-start;gap:1rem}
.sw{padding:56px 0}
footer{flex-direction:column;align-items:flex-start}.ft-r{text-align:left}
}
</style>
</head>
<body>
<nav id="main-nav">
<div class="nav-id">
<span class="nav-name">Mohammad Samir</span>
<span class="nav-role">5D BIM & Cost Integration</span>
</div>
<div class="nav-links">
<a href="services.html">Services</a>
<a href="#proof">Work</a>
<a href="#process">Process</a>
<a href="#cta" class="nav-cta">Send Your Model</a>
</div>
</nav>
<section id="hero">
<div class="hero-texture" aria-hidden="true"></div>
<div class="blueprint" aria-hidden="true">
<svg viewBox="0 0 600 800" preserveAspectRatio="xMidYMid slice" xmlns="http://www.w3.org/2000/svg">
<defs>
<style>.bl{stroke:rgba(10,110,97,.12);fill:none;stroke-width:1}</style>
</defs>
<rect class="bl" x="80" y="80" width="200" height="160" rx="2"/>
<rect class="bl" x="80" y="80" width="90" height="70"/>
<rect class="bl" x="170" y="80" width="110" height="70"/>
<rect class="bl" x="80" y="150" width="200" height="90"/>
<line class="bl" x1="80" y1="150" x2="280" y2="150"/>
<line class="bl" x1="170" y1="80" x2="170" y2="150"/>
<line class="bl" x1="80" y1="260" x2="280" y2="260"/>
<line class="bl" x1="80" y1="255" x2="80" y2="265"/>
<line class="bl" x1="280" y1="255" x2="280" y2="265"/>
<rect class="bl" x="320" y="120" width="240" height="200" rx="2"/>
<rect class="bl" x="320" y="120" width="120" height="80"/>
<rect class="bl" x="440" y="120" width="120" height="80"/>
<rect class="bl" x="320" y="200" width="240" height="120"/>
<line class="bl" x1="440" y1="120" x2="440" y2="200"/>
<line class="bl" x1="80" y1="60" x2="560" y2="60" stroke-dasharray="4 8"/>
<line class="bl" x1="60" y1="80" x2="60" y2="700" stroke-dasharray="4 8"/>
<line class="bl" x1="200" y1="60" x2="200" y2="700" stroke-dasharray="4 8" opacity=".5"/>
<line class="bl" x1="400" y1="60" x2="400" y2="700" stroke-dasharray="4 8" opacity=".5"/>
<rect class="bl" x="100" y="380" width="160" height="220" rx="2"/>
<line class="bl" x1="100" y1="470" x2="260" y2="470"/>
<line class="bl" x1="100" y1="520" x2="260" y2="520"/>
<rect class="bl" x="300" y="400" width="200" height="180" rx="2"/>
<rect class="bl" x="300" y="400" width="200" height="80"/>
<line class="bl" x1="400" y1="400" x2="400" y2="580"/>
<circle class="bl" cx="180" cy="130" r="8"/>
<circle class="bl" cx="440" cy="160" r="8"/>
<circle class="bl" cx="180" cy="430" r="6"/>
<path class="bl" d="M300 360 L320 380 M300 360 L280 380" stroke-width=".8"/>
</svg>
</div>
<div class="hero-dots" aria-hidden="true" id="hero-dots"></div>
<div class="wrap">
<div class="hero-inner">
<div class="hero-badge">
<span class="badge-dot"></span>
Taking on new project engagements · GCC & Remote
</div>
<h1 class="hn">Your BIM model.<br><em>Commercial-ready.</em></h1>
<p class="hero-spec">5D BIM & Cost Integration Specialist</p>
<p class="hero-desc">
I turn BIM models, raw BoQs, and project data into
<strong>structured quantities, cost plans, and decision dashboards</strong> —
built to the standards your consultants, contractors, and clients require.
</p>
<ul class="hero-outcomes">
<li>
<span class="arrow"><svg viewBox="0 0 24 24"><polyline points="9 18 15 12 9 6"/></svg></span>
<span><strong>Model-linked BoQs</strong> coded to NRM / POMI / WBS — ready for tender or post-contract use</span>
</li>
<li>
<span class="arrow"><svg viewBox="0 0 24 24"><polyline points="9 18 15 12 9 6"/></svg></span>
<span><strong>Power BI dashboards</strong> connecting live cost data, design changes, and model revisions</span>
</li>
<li>
<span class="arrow"><svg viewBox="0 0 24 24"><polyline points="9 18 15 12 9 6"/></svg></span>
<span><strong>Remote QS & BIM support</strong> structured around your deliverables, not a day rate</span>
</li>
</ul>
<div class="hero-actions">
<a href="mailto:mohammad7samir.ahmad@gmail.com" class="btn btn-p btn-lg">Send Your Model →</a>
<a href="services.html" class="btn btn-s btn-lg">View Services</a>
</div>
<div class="hero-trust">
<span class="trust-label">Worked on projects for</span>
<div class="trust-pills">
<span class="trust-pill">Dubai Airports</span>
<span class="trust-pill">NEOM</span>
<span class="trust-pill">Emaar</span>
<span class="trust-pill">Aldar</span>
<span class="trust-pill">Majid Al Futtaim</span>
<span class="trust-pill">AECOM Middle East</span>
</div>
</div>
</div>
</div>
</section>
<section id="trust-bar">
<div class="trust-bar-texture" aria-hidden="true"></div>
<div class="wrap">
<div class="trust-bar-inner reveal">
<div class="tb-cell">
<span class="tb-num" data-target="5">0<em>+</em></span>
<span class="tb-label">Years in practice</span>
</div>
<div class="tb-cell">
<span class="tb-num" data-target="12">0<em>+</em></span>
<span class="tb-label">Major projects delivered</span>
</div>
<div class="tb-cell">
<span class="tb-num" data-target="4000">0<em>+</em></span>
<span class="tb-label">Villa units quantified (Aldar)</span>
</div>
<div class="tb-cell">
<span class="tb-num" data-target="50">0<em>km+</em></span>
<span class="tb-label">APM systems quantified (AMIA)</span>
</div>
</div>
</div>
</section>
<section id="problem">
<div class="wrap sw">
<div class="prob-g">
<div class="prob-left reveal">
<div class="eyebrow">The problem</div>
<h2 class="sh">BIM teams produce models.<br>Cost teams need numbers.<br>Most projects bridge this badly.</h2>
<p class="sub" style="margin-bottom:2rem">Quantities re-measured manually from models that already contain the geometry. Cost plans disconnected from live design. Dashboards rebuilt from scratch each cycle. This practice closes that gap.</p>
<div class="prob-items">
<div class="prob-item reveal reveal-delay-1">
<div class="prob-icon"><svg viewBox="0 0 24 24"><polyline points="20 6 9 17 4 12"/></svg></div>
<div>
<div class="pi-title">Model data structured for commercial use</div>
<div class="pi-desc">Quantities coded to NRM, POMI, or WBS from the model — traceable and reconcilable against contract documents, not re-measured separately.</div>
</div>
</div>
<div class="prob-item reveal reveal-delay-2">
<div class="prob-icon"><svg viewBox="0 0 24 24"><polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/></svg></div>
<div>
<div class="pi-title">Cost reporting that updates with the design</div>
<div class="pi-desc">Power BI dashboards connected to live cost data — design change impact tracked automatically, not rebuilt manually each month.</div>
</div>
</div>
<div class="prob-item reveal reveal-delay-3">
<div class="prob-icon"><svg viewBox="0 0 24 24"><rect x="2" y="3" width="20" height="14" rx="2"/><path d="M8 21h8M12 17v4"/></svg></div>
<div>
<div class="pi-title">QS standards behind every model output</div>
<div class="pi-desc">NRM, POMI, contract administration — the commercial framework that makes BIM outputs defensible, not just technically correct.</div>
</div>
</div>
</div>
</div>
<div class="prob-panel reveal reveal-delay-2">
<div class="prob-panel-texture" aria-hidden="true"></div>
<div class="prob-panel-accent" aria-hidden="true"></div>
<div class="pp-content">
<div class="pp-label">Background</div>
<div class="pp-quote">"Three years at AECOM Middle East — airports, NEOM, 4,000-unit residential schemes. Now I deliver the same capability directly to project teams."</div>
<div class="pp-body">
<p>Cost Manager at AECOM Middle East 2022–2025. BSc Civil Engineering (Hons). Five years across UAE, Malaysia, and Iraq.</p>
<p>Delivered model-to-BoQ workflows, Power BI cost reporting, and post-contract administration on projects from Dubai International Airport Terminal 2 to NEOM Sindalah Island.</p>
</div>
<hr class="pp-divider">
<div class="pp-stat">
<div class="pp-stat-item">
<div class="pp-stat-n">AECOM</div>
<div class="pp-stat-l">Former employer</div>
</div>
<div class="pp-stat-item">
<div class="pp-stat-n">Dubai</div>
<div class="pp-stat-l">Based in UAE</div>
</div>
<div class="pp-stat-item">
<div class="pp-stat-n">Remote</div>
<div class="pp-stat-l">Available globally</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="services">
<div class="wrap sw">
<div class="svc-header reveal">
<div>
<div class="eyebrow">Services</div>
<h2 class="sh">Five specialist services.<br>Each with a defined output.</h2>
</div>
<p class="sub" style="max-width:340px">Each service is scoped around a specific deliverable — not an open-ended day rate.</p>
</div>
<div class="pkg-list">
<div class="pkg reveal">
<span class="pkg-num">01</span>
<div class="pkg-main">
<div class="pkg-name">Model-to-BoQ Quantification</div>
<p class="pkg-tagline">Revit / IFC model → structured Bills of Quantities, coded and ready for tender or post-contract use.</p>
<div class="pkg-pills"><span class="pill">Revit</span><span class="pill">CostX</span><span class="pill">IFC</span><span class="pill">NRM</span><span class="pill">POMI</span></div>
</div>
<div class="pkg-col">
<div class="pkg-col-label">You provide</div>
<ul class="pkg-col-list">
<li>Revit or IFC model file</li>
<li>Scope / trade coverage</li>
<li>Preferred coding standard</li>
</ul>
</div>
<div class="pkg-outcome">
<div class="pkg-outcome-label">You receive</div>
<div class="pkg-outcome-text">Structured BoQ — coded, verified, reconciled. Excel or CostX format.</div>
</div>
</div>
<div class="pkg reveal reveal-delay-1">
<span class="pkg-num">02</span>
<div class="pkg-main">
<div class="pkg-name">BIM Model Commercial Audit</div>
<p class="pkg-tagline">Assessment of contractor or design-team model submissions for commercial accuracy — before quantities are accepted.</p>
<div class="pkg-pills"><span class="pill">Navisworks</span><span class="pill">BIM 360</span><span class="pill">Clash Review</span></div>
</div>
<div class="pkg-col">
<div class="pkg-col-label">You provide</div>
<ul class="pkg-col-list">
<li>Contractor BIM submission</li>
<li>Contract scope / spec</li>
<li>Design documentation</li>
</ul>
</div>
<div class="pkg-outcome">
<div class="pkg-outcome-label">You receive</div>
<div class="pkg-outcome-text">Audit report — parameter gaps, clash cost impact, quantity inconsistencies. Structured for commercial response.</div>
</div>
</div>
<div class="pkg reveal reveal-delay-2">
<span class="pkg-num">03</span>
<div class="pkg-main">
<div class="pkg-name">Revit Parameter Classification</div>
<p class="pkg-tagline">Model configured for reliable quantity extraction — shared parameters, NRM / WBS coding, ISO 19650-aligned naming.</p>
<div class="pkg-pills"><span class="pill">Revit</span><span class="pill">ISO 19650</span><span class="pill">WBS</span><span class="pill">ACC</span></div>
</div>
<div class="pkg-col">
<div class="pkg-col-label">You provide</div>
<ul class="pkg-col-list">
<li>Current Revit model file</li>
<li>Required coding standard</li>
<li>CDE / ACC access if needed</li>
</ul>
</div>
<div class="pkg-outcome">
<div class="pkg-outcome-label">You receive</div>
<div class="pkg-outcome-text">Classified model + parameter documentation — ready for 5D quantification and handover compliance.</div>
</div>
</div>
<div class="pkg reveal reveal-delay-3">
<span class="pkg-num">04</span>
<div class="pkg-main">
<div class="pkg-name">Power BI Cost Dashboard</div>
<p class="pkg-tagline">Live cost reporting dashboard connecting BoQ data, design changes, and model revisions — built and handed over to your team.</p>
<div class="pkg-pills"><span class="pill">Power BI</span><span class="pill">Excel</span><span class="pill">Automation</span></div>
</div>
<div class="pkg-col">
<div class="pkg-col-label">You provide</div>
<ul class="pkg-col-list">
<li>Cost data / BoQ files</li>
<li>Reporting requirements</li>
<li>Design change log</li>
</ul>
</div>
<div class="pkg-outcome">
<div class="pkg-outcome-label">You receive</div>
<div class="pkg-outcome-text">Live Power BI file — trade breakdowns, design change tracking, benchmarks. Fully documented.</div>
</div>
</div>
<div class="pkg reveal reveal-delay-4">
<span class="pkg-num">05</span>
<div class="pkg-main">
<div class="pkg-name">Remote BIM / QS Support</div>
<p class="pkg-tagline">Ongoing specialist support across pre- and post-contract stages — scoped per deliverable, not by the hour.</p>
<div class="pkg-pills"><span class="pill">Cost Planning</span><span class="pill">Variations</span><span class="pill">Valuations</span><span class="pill">Reporting</span></div>
</div>
<div class="pkg-col">
<div class="pkg-col-label">You provide</div>
<ul class="pkg-col-list">
<li>Project brief and scope</li>
<li>Contract documents</li>
<li>Model / CDE access</li>
</ul>
</div>
<div class="pkg-outcome">
<div class="pkg-outcome-label">You receive</div>
<div class="pkg-outcome-text">Defined deliverables on agreed schedule — cost plans, variation assessments, BoQs, or reporting. Fully remote.</div>
</div>
</div>
</div>
</div>
</section>
<section id="proof">
<div class="wrap sw">
<div class="proof-header reveal">
<div class="eyebrow">Selected work</div>
<h2 class="sh">Representative project experience</h2>
<p class="sub">Delivered in cost management and BIM specialist roles at AECOM Middle East.</p>
</div>
<div class="cases">
<div class="case reveal">
<div class="case-type">Aviation · Cost Management</div>
<div class="case-title">Dubai International Airport — Terminal 2 Expansion</div>
<div class="case-row">
<div class="case-row-label">Problem</div>
<div class="case-row-text">Cost data and BIM model updates were tracked separately — design changes were not captured in cost estimates in real time.</div>
</div>
<div class="case-row">
<div class="case-row-label">What I did</div>
<div class="case-row-text">Built a Power BI dashboard from project inception, connected to live CostX data. Led full BoQ production and value engineering through design development to tender.</div>
</div>
<div class="case-result">
<div class="case-result-label">Result</div>
<div class="case-result-text">Cost position tracked in real time through design iterations. Single source of cost truth for team and client.</div>
</div>
</div>
<div class="case reveal reveal-delay-1">
<div class="case-type">Residential · BIM Automation</div>
<div class="case-title">Aldar — 4,000+ Villa Residential Development</div>
<div class="case-row">
<div class="case-row-label">Problem</div>
<div class="case-row-text">10 villa designs across 3 finish specifications — manual re-measurement each design cycle was not scalable for the programme.</div>
</div>
<div class="case-row">
<div class="case-row-label">What I did</div>
<div class="case-row-text">Built an automated CostX model-mapping system — each design variant mapped once, quantities extracted automatically on model update.</div>
</div>
<div class="case-result">
<div class="case-result-label">Result</div>
<div class="case-result-text">BoQ production time reduced significantly across 30 design-finish combinations. VE decisions supported by live cost data.</div>
</div>
</div>
<div class="case reveal reveal-delay-2">
<div class="case-type">Mixed-Use · BoQ Revalidation</div>
<div class="case-title">NEOM — Sindalah Island</div>
<div class="case-row">
<div class="case-row-label">Problem</div>
<div class="case-row-text">10+ work orders across marine, commercial, retail, and infrastructure packages required BoQ revalidation against updated model versions.</div>
</div>
<div class="case-row">
<div class="case-row-label">What I did</div>
<div class="case-row-text">Led BIM-integrated BoQ revalidation — quantities extracted from updated models, reconciled against previous BoQ versions, differences documented for commercial review.</div>
</div>
<div class="case-result">
<div class="case-result-label">Result</div>
<div class="case-result-text">Full commercial traceability across 10+ work orders. Design changes quantified and ready for contract adjustment.</div>
</div>
</div>
</div>
<div class="visual-strip">
<div class="visual-card reveal">
<div class="visual-card-bg">
<svg viewBox="0 0 400 250" xmlns="http://www.w3.org/2000/svg">
<rect fill="#0a6e61" x="30" y="180" width="40" height="50" opacity=".6"/>
<rect fill="#0a6e61" x="90" y="140" width="40" height="90" opacity=".7"/>
<rect fill="#0a6e61" x="150" y="100" width="40" height="130" opacity=".8"/>
<rect fill="#0a6e61" x="210" y="60" width="40" height="170" opacity=".9"/>
<rect fill="#0a6e61" x="270" y="120" width="40" height="110" opacity=".7"/>
<rect fill="#0a6e61" x="330" y="160" width="40" height="70" opacity=".5"/>
<polyline points="50,170 110,130 170,90 230,50 290,110 350,150" fill="none" stroke="#2dd4bf" stroke-width="2" stroke-dasharray="4 3" opacity=".8"/>
<circle cx="50" cy="170" r="4" fill="#2dd4bf" opacity=".9"/>
<circle cx="110" cy="130" r="4" fill="#2dd4bf" opacity=".9"/>
<circle cx="170" cy="90" r="4" fill="#2dd4bf" opacity=".9"/>
<circle cx="230" cy="50" r="4" fill="#2dd4bf" opacity=".9"/>
<circle cx="290" cy="110" r="4" fill="#2dd4bf" opacity=".9"/>
<circle cx="350" cy="150" r="4" fill="#2dd4bf" opacity=".9"/>
<line x1="20" y1="230" x2="380" y2="230" stroke="#0a6e61" stroke-width="1" opacity=".3"/>
<rect x="20" y="20" width="80" height="30" rx="4" fill="#0a6e61" opacity=".15"/>
<rect x="110" y="20" width="60" height="30" rx="4" fill="#0a6e61" opacity=".1"/>
<rect x="180" y="20" width="100" height="30" rx="4" fill="#0a6e61" opacity=".1"/>
</svg>
</div>
<div class="visual-card-content">
<div class="vc-label">Output example</div>
<div class="vc-title">Power BI Cost Dashboard</div>
<div class="vc-file">→ Replace with: dashboard-screenshot.png</div>
</div>
</div>
<div class="visual-card reveal reveal-delay-1">
<div class="visual-card-bg">
<svg viewBox="0 0 400 250" xmlns="http://www.w3.org/2000/svg">
<rect fill="none" stroke="#0a6e61" stroke-width="1.5" x="30" y="30" width="340" height="190" opacity=".4"/>
<rect fill="#0a6e61" x="30" y="30" width="340" height="28" opacity=".2"/>
<line x1="30" y1="78" x2="370" y2="78" stroke="#0a6e61" stroke-width=".8" opacity=".3"/>
<line x1="30" y1="108" x2="370" y2="108" stroke="#0a6e61" stroke-width=".8" opacity=".3"/>
<line x1="30" y1="138" x2="370" y2="138" stroke="#0a6e61" stroke-width=".8" opacity=".3"/>
<line x1="30" y1="168" x2="370" y2="168" stroke="#0a6e61" stroke-width=".8" opacity=".3"/>
<line x1="150" y1="58" x2="150" y2="220" stroke="#0a6e61" stroke-width=".8" opacity=".25"/>
<line x1="270" y1="58" x2="270" y2="220" stroke="#0a6e61" stroke-width=".8" opacity=".25"/>
<rect fill="#0a6e61" x="38" y="83" width="100" height="16" rx="2" opacity=".25"/>
<rect fill="#0a6e61" x="38" y="113" width="80" height="16" rx="2" opacity=".2"/>
<rect fill="#0a6e61" x="38" y="143" width="110" height="16" rx="2" opacity=".25"/>
<rect fill="#2dd4bf" x="158" y="83" width="60" height="16" rx="2" opacity=".3"/>
<rect fill="#2dd4bf" x="158" y="113" width="80" height="16" rx="2" opacity=".25"/>
<rect fill="#2dd4bf" x="158" y="143" width="50" height="16" rx="2" opacity=".3"/>
<rect fill="#0a6e61" x="278" y="83" width="80" height="16" rx="2" opacity=".2"/>
<rect fill="#0a6e61" x="278" y="113" width="60" height="16" rx="2" opacity=".15"/>
</svg>
</div>
<div class="visual-card-content">
<div class="vc-label">Output example</div>
<div class="vc-title">Revit Parameter Setup</div>
<div class="vc-file">→ Replace with: revit-parameters.png</div>
</div>
</div>
<div class="visual-card reveal reveal-delay-2">
<div class="visual-card-bg">
<svg viewBox="0 0 400 250" xmlns="http://www.w3.org/2000/svg">
<polygon points="200,30 320,80 320,180 200,220 80,170 80,70" fill="none" stroke="#0a6e61" stroke-width="1.5" opacity=".5"/>
<polygon points="200,30 320,80 200,120 80,70" fill="#0a6e61" opacity=".08"/>
<polygon points="80,70 200,120 200,220 80,170" fill="#0a6e61" opacity=".12"/>
<polygon points="320,80 200,120 200,220 320,180" fill="#0a6e61" opacity=".1"/>
<line x1="200" y1="30" x2="200" y2="120" stroke="#0a6e61" stroke-width="1" opacity=".4"/>
<line x1="80" y1="70" x2="200" y2="120" stroke="#0a6e61" stroke-width="1" opacity=".4"/>
<line x1="320" y1="80" x2="200" y2="120" stroke="#0a6e61" stroke-width="1" opacity=".4"/>
<line x1="200" y1="120" x2="200" y2="220" stroke="#0a6e61" stroke-width="1" stroke-dasharray="3 3" opacity=".3"/>
<line x1="70" y1="70" x2="70" y2="170" stroke="#2dd4bf" stroke-width="1.5" opacity=".6"/>
<line x1="65" y1="70" x2="75" y2="70" stroke="#2dd4bf" stroke-width="1.5" opacity=".6"/>
<line x1="65" y1="170" x2="75" y2="170" stroke="#2dd4bf" stroke-width="1.5" opacity=".6"/>
<line x1="80" y1="235" x2="320" y2="235" stroke="#2dd4bf" stroke-width="1.5" opacity=".6"/>
<line x1="80" y1="230" x2="80" y2="240" stroke="#2dd4bf" stroke-width="1.5" opacity=".6"/>
<line x1="320" y1="230" x2="320" y2="240" stroke="#2dd4bf" stroke-width="1.5" opacity=".6"/>
<circle cx="200" cy="30" r="4" fill="#2dd4bf" opacity=".8"/>
<circle cx="320" cy="80" r="4" fill="#2dd4bf" opacity=".8"/>
<circle cx="80" cy="70" r="4" fill="#2dd4bf" opacity=".8"/>
<circle cx="200" cy="220" r="4" fill="#2dd4bf" opacity=".7"/>
<circle cx="320" cy="180" r="4" fill="#2dd4bf" opacity=".7"/>
<circle cx="80" cy="170" r="4" fill="#2dd4bf" opacity=".7"/>
</svg>
</div>
<div class="visual-card-content">
<div class="vc-label">Output example</div>
<div class="vc-title">CostX Model Mapping</div>
<div class="vc-file">→ Replace with: costx-mapping.png</div>
</div>
</div>
</div>
</div>
</section>
<section id="clients">
<div class="wrap sw">
<div class="reveal">
<div class="eyebrow">Who I support</div>
<h2 class="sh">Built for teams with BIM models<br>and commercial requirements.</h2>
</div>
<div class="clients-g">
<div class="client-card reveal">
<div class="cc-icon"><svg viewBox="0 0 24 24"><path d="M17 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 00-3-3.87M16 3.13a4 4 0 010 7.75"/></svg></div>
<div class="cc-tag">Consultants</div>
<div class="cc-title">Cost & Project Consultancies</div>
<p class="cc-desc">Specialist capacity for BoQ production, 5D quantification, and Power BI reporting — structured to integrate with your delivery process and client reporting cycle.</p>
</div>
<div class="client-card reveal reveal-delay-1">
<div class="cc-icon"><svg viewBox="0 0 24 24"><rect x="2" y="7" width="20" height="14" rx="2"/><path d="M16 21V5a2 2 0 00-2-2h-4a2 2 0 00-2 2v16"/></svg></div>
<div class="cc-tag">Contractors</div>
<div class="cc-title">Main Contractors</div>
<p class="cc-desc">Model-based quantity take-offs, BIM commercial audit, and variation documentation — giving your commercial team structured data for pricing and post-contract claim support.</p>
</div>
<div class="client-card reveal reveal-delay-2">
<div class="cc-icon"><svg viewBox="0 0 24 24"><path d="M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z"/><polyline points="9 22 9 12 15 12 15 22"/></svg></div>
<div class="cc-tag">Developers</div>
<div class="cc-title">Real Estate & Infrastructure Developers</div>
<p class="cc-desc">Pre-contract cost intelligence, feasibility estimates, and live dashboards — keeping your cost position current through every stage of design evolution.</p>
</div>
<div class="client-card reveal reveal-delay-3">
<div class="cc-icon"><svg viewBox="0 0 24 24"><polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/></svg></div>
<div class="cc-tag">PM / CM Teams</div>
<div class="cc-title">Project & Commercial Managers</div>
<p class="cc-desc">Cost reporting infrastructure, design change tracking, and model-linked quantity validation — the commercial data structure required for informed programme decisions.</p>
</div>
</div>
</div>
</section>
<section id="process">
<div class="wrap sw">
<div class="reveal">
<div class="eyebrow">How it works</div>
<h2 class="sh">Four steps from model to output.</h2>
</div>
<div class="process-g">
<div class="proc-step reveal">
<div class="proc-n-wrap"><span class="proc-n">01</span></div>
<div class="proc-title">Send your project data</div>
<p class="proc-desc">Model files, BoQ, drawings, or brief — share what you have. Scope is reviewed and confirmed before any work begins.</p>
</div>
<div class="proc-step reveal reveal-delay-1">
<div class="proc-n-wrap"><span class="proc-n">02</span></div>
<div class="proc-title">Scope & classify</div>
<p class="proc-desc">Data structured to NRM, POMI, WBS, or project-specific coding. Deliverables agreed and timeline confirmed.</p>
</div>
<div class="proc-step reveal reveal-delay-2">
<div class="proc-n-wrap"><span class="proc-n">03</span></div>
<div class="proc-title">Quantify & validate</div>
<p class="proc-desc">Quantities extracted from model, cross-checked against documentation, reconciled. Anomalies flagged before delivery.</p>
</div>
<div class="proc-step reveal reveal-delay-3">
<div class="proc-n-wrap"><span class="proc-n">04</span></div>
<div class="proc-title">Deliver & hand over</div>
<p class="proc-desc">Final output issued in agreed format — BoQ, dashboard, or audit report — fully documented for immediate commercial use.</p>