-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1094 lines (957 loc) · 53.9 KB
/
Copy pathindex.html
File metadata and controls
1094 lines (957 loc) · 53.9 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>V Engineers </title>
<link rel="icon" href="./assets/imgs/logo.png" type="image">
<link rel="stylesheet" href="./assets/css/all.min.css">
<link rel="stylesheet" href="./assets/css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="./assets/css/style.css" type="text/css">
<link rel="stylesheet" href="./assets/css/flickity-docs.css" type="text/css">
<link rel="stylesheet" href="./assets/css/owl.carousel.min.css" type="text/css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<style>
.document-img {
display: none;
width: 100%;
margin-top: 10px;
}
.document-img:first-of-type {
display: block;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary bg-white fixed-top">
<div class="container">
<a class="navbar-brand" href="/">
<img src="./assets/imgs/logo.png" alt="logo" style="width: 5rem; padding: 5px;">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav__item"><a href="#home" class="nav__link active text-dark">Home</a>
</li>
<!-- <li class="nav__item"><a href="#about" class="nav__link text-dark">About Us</a> -->
</li>
<li class="nav__item"><a href="#service" class="nav__link text-dark">Services</a>
</li>
<li class="nav__item"><a href="#team" class="nav__link text-dark">Team</a> </li>
<li class="nav__item nav-item dropdown d-flex align-items-center justify-content-center">
<a class="nav__item nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Dropdown
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Structural-Engineering.html">Structural Engineering</a>
</li>
<li><a class="dropdown-item" href="Architectural-Work.html">Architectural Work</a></li>
<li><a class="dropdown-item" href="Real Estate & Construction.html">Real Estate &
Construction </a></li>
</ul>
</li>
</li>
<li class="nav__item"><a href="#contact" class="nav__link text-dark"> Contact
Us</a></li>
<li class="newclr">
<a href="https://wa.me/923123829428" target="_blank">
<button type="button" class="btn btn2">
Get In Touch
<i style="padding-left: 31px;" class="fa-solid fa-arrow-right-long"></i>
</button>
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Main -->
<div class="main" id="main">
<!-- Hero Section -->
<section id="hero" class="d-flex align-items-center background">
<div class="container" id="div1">
<div class=" row" id="div2">
<div class="col-md-1 col-12"></div>
<div class="col-md-6 col-sm-12 col-12 itm1">
<h1 class=" text-wrap" style="font-size: 2.5rem;font-family: Poppins , Ariel ">
<img class="img-fluid" src="./assets/imgs/herotext.png" alt="">
</h1>
<div class="row"></div>
<div class="col-md-10" style="padding: 15px 0 55px 0;">
<p class="text-wrap"
style=" font-weight:600; font-family: Poppins , ariel; font-size: 14px;">
We believe in building a strong foundation – be it for the building we constructor of
the
relationship with our clients.
</p>
</div>
<a href="https://www.facebook.com/profile.php?id=100085647856777">
<button type="button" class="btn btn3">Let's Discuss</button>
</a>
</div>
</div>
</div>
</section>
<!-- Hero Section End -->
<!-- Section 1-->
<section id="about" class="pt-5">
<div class="justify-content-lg-around" id="section1">
<div class="row r1">
<div class="col-md-2"></div>
<div class="col-md-4" id="maindiv">
<h4>
<img src="./assets/imgs/Frame.png" alt="" width="30px">
<!-- About <span style="color:#9B8048 ;">Us</span> -->
About <span style="color:#9B8048 ;">VENGINEERS BUILDERS AND REAL ESTATE (PRIVATE)
LIMITED</span>
</h4>
<p>
At VENGINEERS BUILDERS AND REAL ESTATE (PRIVATE) LIMITED, we are committed to providing
top-tier construction services across both private and government sectors. Our C5 government
construction license reflects our dedication to meeting high industry standards. With
expertise in new construction, renovations, residential, commercial, and hotel projects, we
bring precision, professionalism, and a focus on sustainable practices to every endeavor.
Whether transforming homes or executing large-scale government projects, our team is here to
deliver excellence.
</p>
<a href="https://www.facebook.com/profile.php?id=100085647856777">
<button type="button" class="btn btn3">Let's Discuss</button>
</a>
</div>
<div class="col-md-1"></div>
<div class="col-md-5 col-sm-12 col-12 main3itm d-flex justify-content-center">
<h1>
<img class="img-fluid" src="./assets/imgs/section1bg.png" alt="">
</h1>
</div>
</div>
</div>
</section>
<!-- Section 1 End -->
<!-- Section 2-->
<section id="service" class="pt-1">
<div class="justify-content-lg-around" id="section2">
<div class="row r1 justify-content-center">
<div class="col-md-2"></div>
<div class="col-md-8" id="maindiv">
<h4>
<img src="./assets/imgs/Frame.png" alt="" width="30px">
Our <span style="color:#9B8048 ;">Services</span>
</h4>
<div class="row" id="paradev">
<div class="col-md-7">
<p>
At V-Engineers, we offer a comprehensive range of services to meet all your
construction, renovation, and real estate needs. With a focus on quality,
innovation, and customer satisfaction, we're committed to delivering exceptional
results, every time. Explore our services below:
</p>
</div>
</div>
</div>
<div class="col-md-2"></div>
<div class="col-md-1"></div>
<div class="col-md-9 row" id="div1">
<div class="col-md-4 col-12 r3">
<img src="./assets/imgs/Vector1.png" alt="" width="30px">
<h4>
Structural Engineering Services
</h4>
<p>
At V-Engineers, we specialize in providing innovative and reliable structural
engineering solutions for projects of all sizes. Our expert team combines advanced
design techniques with a deep understanding of materials and construction practices to
deliver safe, sustainable, and cost-effective structures.
</p>
<!-- <a href="">
<button type="button" class="btn btn2 btn-primary btn-outline-light">
Read More
<i style="padding-left: 31px;" class="fa-solid fa-arrow-right-long"></i>
</button>
</a> -->
</div>
<div class="col-md-4 col-12 r3 ">
<img src="./assets/imgs/vector2.png" alt="" width="19px">
<h4>
Architectural
Work
</h4>
<p>
Our architectural design services are tailored to meet your unique needs and
preferences. From conceptualization to execution, our team of architects will work
closely with you to create spaces that reflect your style and vision.
</p>
<!-- <a href="">
<button type="button" class="btn btn2 btn-primary btn-outline-light">
Read More
<i style="padding-left: 31px;" class="fa-solid fa-arrow-right-long"></i>
</button>
</a> -->
</div>
<div class="col-md-4 col-12 r3">
<img src="./assets/imgs/Vector3.png" alt="" width="30px">
<h4>
Real
Estate & Construction
</h4>
<p>
Partner with us for your real estate development projects. From site selection to
project management, we offer comprehensive services to help you maximize the value of
your investment and bring your development plans to fruition.
</p>
<!-- <a href="">
<button type="button" class="btn btn2 btn-primary btn-outline-light">
Read More
<i style="padding-left: 31px;" class="fa-solid fa-arrow-right-long"></i>
</button>
</a> -->
</div>
</div>
</div>
</div>
</section>
<!-- Section 2 End -->
<!-- team -->
<!-- <section id="team">
<div class="justify-content-lg-around" id="section2">
<div class="row r1 justify-content-center">
<div class="col-md-2"></div>
<div class="col-md-8" id="maindiv">
<h4>
<img src="./assets/imgs/Frame.png" alt="" width="30px">
Our <span style="color:#9B8048 ;"> Team</span>
</h4>
<div class="row" id="paradev">
<div class="col-md-7">
<p> At V-Engineers, we're passionate about bringing your construction and renovation
visions to
life. With years of experience in the industry, our team is dedicated to delivering
top-quality craftsmanship and unparalleled customer service. From initial design
concepts to
the final touches, we're with you every step of the way..
</p>
</div>
</div>
</div>
<div class="col-md-2"></div>
<div class="col-md-1"></div>
<div class="container text-center mb-5">
<div class="row justify-content-center">
<div class="col-12 col-md-3 mb-4">
<div class="bg-primary text-white p-3 rounded">
<div class="team-image mb-3">
<img src="path/to/image1.jpg" class="rounded-circle img-fluid"
alt="Rehana Aziz">
</div>
<h5>Rehana Aziz</h5>
<p>Consultant Renewable Energy</p>
<p>(MS in Energy System Management)</p>
</div>
</div>
<div class="col-12 col-md-3 mb-4">
<div class="bg-primary text-white p-3 rounded">
<div class="team-image mb-3">
<img src="path/to/image2.jpg" class="rounded-circle img-fluid"
alt="Shahbaz Khan">
</div>
<h5>Shahbaz Khan</h5>
<p>Director MEP</p>
<p>(BE Mechanical)</p>
</div>
</div>
<div class="col-12 col-md-3 mb-4">
<div class="bg-success text-white p-3 rounded">
<div class="team-image mb-3">
<img src="path/to/image3.jpg" class="rounded-circle img-fluid" alt="Rani Habib">
</div>
<h5>Rani Habib</h5>
<p>Director Environment & Sustainability</p>
<p>(BE Environmental)</p>
</div>
</div>
<div class="col-12 col-md-3 mb-4">
<div class="bg-secondary text-white p-3 rounded">
<div class="team-image mb-3">
<img src="assets/imgs/team1.jpg" class="rounded-circle img-fluid"
alt="Basharat Jan">
</div>
<h5>Basharat Jan</h5>
<p>Director Civil</p>
<p>(BE Civil)</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<section id="team">
<div class="container text-center mb-5" id="section2">
<div class="row justify-content-center">
<div class="col-md-8" id="maindiv">
<h4>
<img src="./assets/imgs/Frame.png" alt="Frame Icon" width="30px">
Our <span style="color:#9B8048;"> Team</span>
</h4>
<div class="row" id="paradev">
<div class="col-md-12">
<p>
At V-Engineers, we're passionate about bringing your construction and renovation
visions to
life. With years of experience in the industry, our team is dedicated to delivering
top-quality craftsmanship and unparalleled customer service. From initial design
concepts to
the final touches, we're with you every step of the way.
</p>
</div>
</div>
</div>
</div>
<div class="row justify-content-start mt-4">
<!-- Team Member 2 -->
<div class="col-12 col-md-4 mb-4">
<div class="newclr text-white p-3">
<div class="team-image mb-3 m-auto"
style="width: 180px; height: 180px; overflow: hidden; border-radius: 50%;">
<img src="assets/imgs/saad alam.jpeg" class="img-fluid" alt="saad alam"
style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h5 class="mb-0">Engr. Saad Alam</h5>
<p class="mb-0">(BS Civil Engineering)</p>
<p class="mb-0">Director</p>
</div>
</div>
<!-- Team Member 1 -->
<div class="col-12 col-md-4 mb-4">
<div class="newclr text-white p-3">
<div class="team-image mb-3 m-auto"
style="width: 180px; height: 180px; overflow: hidden; border-radius: 50%;">
<img src="assets/imgs/Ijaz.jpeg" class="img-fluid" alt="Ijaz Ahmad"
style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h5 class="mb-0">Ijaz Ahmad</h5>
<p class="mb-0">Principal Architect</p>
<p class="mb-0">(M.Arch B.Arch)</p>
<small>Certified from Duke University in Renewable Energy and Green Building
Entrepreneurship</small>
<!-- <p class="fs-6">I'm Ijaz Ahmad, a passionate Architect with a Master's in Architecture and
experience in various projects across government and private sectors. My goal is to
design functional, aesthetic, and economical buildings that meet contemporary needs,
blending creativity, technical expertise, and sustainability.</p> -->
</div>
</div>
<!-- Team Member 3 -->
<div class="col-12 col-md-4 mb-4">
<div class="newclr text-white p-3">
<div class="team-image mb-3 m-auto"
style="width: 180px; height: 180px; overflow: hidden; border-radius: 50%;">
<img src="assets/imgs/sameeralam.jpeg" class="img-fluid" alt="Rehana Aziz"
style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h5 class="mb-0">Engr. Sameer Alam</h5>
<p class="mb-0">Remote Structural Engineer</p>
<p class="mb-0">(Ms structure Engineering)</p>
</div>
</div>
<!-- Team Member 4 -->
<div class="col-12 col-md-4 mb-4">
<div class="newclr text-white p-3">
<div class="team-image mb-3 m-auto"
style="width: 180px; height: 180px; overflow: hidden; border-radius: 50%;">
<img src="assets/imgs/fawad alam.jpeg" class="img-fluid" alt="Fawad Alam"
style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h5 class="mb-0">Fawad Alam</h5>
<p class="mb-0"> Real Estate agent</p>
<p class="mb-0">(M.phil Education )</p>
</div>
</div>
<!-- Team Member 5 -->
<div class="col-12 col-md-4 mb-4">
<div class="newclr text-white p-3">
<div class="team-image mb-3 m-auto"
style="width: 180px; height: 180px; overflow: hidden; border-radius: 50%;">
<img src="assets/imgs/Awais Ahmad Shah.jpeg" class="img-fluid" alt="Awais Ahmad Shah"
style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h5 class="mb-0">Awais Ahmad Shah</h5>
<p class="mb-0">Site Engineer</p>
<p class="mb-0">(Bs Mechanical Engineering)</p>
</div>
</div>
<div class="col-12 col-md-4 mb-4">
<div class="newclr text-white p-3">
<div class="team-image mb-3 m-auto"
style="width: 180px; height: 180px; overflow: hidden; border-radius: 50%;">
<img src="assets/imgs/WhatsApp Image 2025-01-12 at 5.49.45 PM.jpeg" class="img-fluid"
alt="Awais Ahmad Shah" style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h5 class="mb-0">Engr. Kashif nawaz</h5>
<p class="mb-0">Site Engineer</p>
<p class="mb-0">Ms Construction Engineering and Management</p>
</div>
</div>
<div class="col-12 col-md-4 mb-4">
<div class="newclr text-white p-3">
<div class="team-image mb-3 m-auto"
style="width: 180px; height: 180px; overflow: hidden; border-radius: 50%;">
<img src="assets/imgs/female.jpeg" class="img-fluid" alt="Awais Ahmad Shah"
style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h5 class="mb-0">Maryam Khan</h5>
<p class="mb-0">Graphics designer</p>
<!-- <p class="mb-0">Ms Construction Engineering and Management</p> -->
</div>
</div>
<div class="col-12 col-md-4 mb-4">
<div class="newclr text-white p-3">
<div class="team-image mb-3 m-auto"
style="width: 180px; height: 180px; overflow: hidden; border-radius: 50%;">
<img src="assets/imgs/MD (1).jpeg" class="img-fluid" alt="Awais Ahmad Shah"
style="width: 100%; height: 100%; object-fit: cover;">
</div>
<h5 class="mb-0">Hasnain Saifulallah</h5>
<p class="mb-0">Managing Director</p>
<p class="mb-0">Construction Engineering and Management</p>
</div>
</div>
</div>
</div>
</section>
<!-- team -->
<!-- Section 3 -->
<section>
<div class="justify-content-lg-around" id="section3">
<div class="row r1 justify-content-center">
<div class="col-md-2"></div>
<div class="col-md-8" id="maindiv">
<h4>
<img src="./assets/imgs/Frame.png" alt="" width="30px">
Available Trading <span style="color:#9B8048 ;">Properties</span>
</h4>
</div>
<div class="col-md-2"></div>
<div class="col-md-2"></div>
<div class="col-md-9 row d-flex justify-content-sm-center" id="div1" style="padding-top: 40px;">
<div class="col-md-4 col-12 r3">
<img src="./assets/imgs/Rectangle15.png" alt="" Style="width: 19rem;">
<span style="color:#9B8048; font-style: normal;font-weight: 700;line-height: 28px;display: flex;align-items: center; padding: 10px 0;
">
RS<span style="padding-left:10px;">9700000</span>
</span>
<h5>
Plot No 56
</h5>
<p>
Discover opportunity in the heart of Peshawar's Regi Model Town. This prime plot offers
convenient access to amenities, schools, and recreation. Whether envisioning a home or
business, its strategic location promises endless possibilities for your next venture in
this vibrant community.
</p>
<a href="#">
<p>
<img src="./assets/imgs/Vector4.png" alt="" width="14px">
<span>Plot No 56, 3C Street,Zone 3, Regi Model Towen Peshawar, Pakistan</span>
</p>
</a>
</div>
<div class="col-md-4 col-12 r3">
<img src="./assets/imgs/Rectangle16.png" alt="" Style="width: 19rem;">
<span style="color:#9B8048; font-style: normal;font-weight: 700;line-height: 28px;display: flex;align-items: center; padding: 10px 0;
">
Rs<span style="padding-left:10px;">9500000</span>
</span>
<h5>
Plot
</h5>
<p>
Discover opportunity in the heart of Peshawar's Regi Model Town. This prime plot offers
convenient access to amenities, schools, and recreation. Whether envisioning a home or
business, its strategic location promises endless possibilities for your next venture in
this vibrant community.
</p>
<a href="#">
<p>
<img src="./assets/imgs/Vector4.png" alt="" width="14px">
<span>Plot No 59, 3C Street,Zone 3, Regi Model Towen Peshawar, Pakistan</span>
</p>
</a>
</div>
<div class="col-md-4 col-12 r3">
<img src="./assets/imgs/Rectangle17.png" alt="" Style="width: 19rem;">
<span style="color:#9B8048; font-style: normal;font-weight: 700;line-height: 28px;display: flex;align-items: center; padding: 10px 0;
">
RS<span style="padding-left:10px;">70,000</span>
</span>
<h5>
DHA F Sector
</h5>
<p>
Experience luxury living in Peshawar's prestigious DHA F Sector. This prime plot offers
an exclusive opportunity to be part of a sought-after neighborhood known for its
serenity and modern amenities. Whether building your dream home or making an investment,
DHA F Sector promises a lifestyle of sophistication and convenience.
</p>
<a href="#">
<p>
<img src="./assets/imgs/Vector4.png" alt="" width="14px">
<span>Defense Housing Authority, Peshawar, Pakistan</span>
</p>
</a>
</div>
</div>
<div class="col-md-1"></div>
<div class="col-md-2"></div>
<div class="col-md-9 row" id="div1" style="padding-top: 40px;">
<div class="col-md-4 col-12 r3">
</div>
<div class="col-md-4 col-12 r3 row py-5">
<div class="col-md-2"></div>
<div class="col-md-8">
<!-- <a href="">
<button type="button" class="btn btn3">Let's Discuss</button>
</a> -->
</div>
<div class="col-md-2"></div>
</div>
<div class="col-md-4 col-12 r3">
</div>
</div>
<div class="col-md-1"></div>
</div>
</div>
</section>
<!-- Section 3 End -->
<!-- Section 4-->
<section>
<div class=" justify-content-lg-around" id="section4">
<div class="row container maindiv">
<div class="col-md-2"></div>
<div class="col-md-7 col-sm-12 col-12 item1 d-flex flex-column justify-content-sm-center">
<h1>
<img class="img-fluid" src="./assets/imgs/text.png" alt=""
style="padding: 59px 0 32px 0; width: 35rem;">
</h1>
</div>
<div class="col-md-3 col-12 item2 d-flex flex-column align-self-center justify-content-center">
<p style="color: white; padding:0 10px 0 0;">
Give us a signal. We will contact you back to discuss more.
</p>
<form action="#">
<input type="text" placeholder="example@gmail.com"
style="background: none; border:none; outline: 0; border-bottom:1px solid #fff; width: 100%;">
<button type="submit" class="btn btn3">Request Services</button>
</form>
</div>
<div class="col-md-1"></div>
</div>
</div>
</section>
<!-- Section 4 End -->
<!-- Section 5 -->
<section>
<div class="justify-content-lg-around" id="section5">
<div class="row r1">
<div class="col-md-2"></div>
<div class="col-md-4" id="maindiv">
<h4>
<img src="./assets/imgs/Frame.png" alt="" width="30px">
Sell Property <span style="color:#9B8048 ;">with us</span>
</h4>
<p>
Trust us to manage your property with care and expertise. From tenant placement to
maintenance and repairs, our property management services are designed to help you protect
and enhance the value of your investment.
</p>
<a href="https://www.facebook.com/profile.php?id=100085647856777">
<button type="button" class="btn btn3">Sell with us</button>
</a>
</div>
<div class="col-md-1"></div>
<div class="col-md-5 col-sm-12 col-12 main3itm d-flex justify-content-center">
<h1>
<img class="img-fluid" src="./assets/imgs/Group53.png" alt="">
</h1>
</div>
</div>
</div>
</section>
<!-- -->
<section class="mb-5">
<div class="justify-content-lg-around" id="section5">
<div class="row r1">
<div class="col-md-2"></div>
<div class="col-md-4" id="maindiv">
<h4>
<img src="./assets/imgs/Frame.png" alt="" width="30px">
Structural Engineering <span style="color:#9B8048;">Services</span>
</h4>
<p>
At V-Engineers, we specialize in providing innovative and reliable structural
engineering
solutions for projects of all sizes. Our expert team combines advanced design techniques
with a deep
understanding of materials and construction practices to deliver safe, sustainable, and
cost-effective structures.
</p>
<ul>
<li>1) Structural Design & Analysis</li>
<li>2) Seismic & Wind Load Design</li>
<li>3) Retrofitting & Strengthening</li>
<li>4) Steel, Concrete & Timber Structures</li>
<li>5) Foundation Engineering</li>
</ul>
<p>
Let us help bring your project to life with our professional structural engineering
services. Contact us today for a consultation.
</p>
</div>
<div class="col-md-1"></div>
<div class="col-md-5 col-sm-12 col-12 main3itm d-flex justify-content-center">
<!-- Image Section for 3 Images -->
<div class="d-flex justify-content-center align-items-center flex-column gap-3">
<div class="col-md-6">
<img class="img-fluid" src="./assets/imgs/Structure Engineering1.jpeg"
alt="Structural Design Image 1">
</div>
<div class="col-md-6">
<img class="img-fluid" src="./assets/imgs/Structure Engineering2.jpg"
alt="Structural Design Image 2">
</div>
<div class="col-md-6">
<img class="img-fluid" src="./assets/imgs/Structure Engineering3.jpg"
alt="Structural Design Image 3">
</div>
</div>
</div>
</div>
</div>
</section>
<section class="pt-5">
<div class="container" id="company-documents">
<div class="row r1">
<div class="col-md-12 text-center">
<h4>
<img src="./assets/imgs/Frame.png" alt="" width="30px">
Company <span style="color:#9B8048;">Registration Documents</span>
</h4>
<p class="w-75 m-auto">
We are a fully registered and certified company, adhering to the highest standards of
quality and compliance.
Below are our official registration documents.
</p>
</div>
</div>
<!-- <div class="container mt-5">
<div class="row p-4">
<div class="col-7 ">
<p class=" m-auto mb-5">
Our company is proudly certified, fully compliant with regulatory standards, and
committed to transparency and excellence. Below, you will find our official
registration
documents, reflecting our dedication to integrity and professionalism in every
aspect of
our operations.
</p>
<div class="d-flex flex-wrap align-items-start justify-content-start gap-2 mt-2">
<button type="button" class="btn newclr mb-2" onclick="showImage(0)">Pakistan
Engineering Council</button>
<button type="button" class="btn btn-secondary mb-2" onclick="showImage(1)">Constructor
Lisence</button>
<button type="button" class="btn newclr mb-2" onclick="showImage(2)">Registration
Certificate</button>
<button type="button" class="btn btn-secondary mb-2"
onclick="showImage(3)">Incorporation
Letter</button>
</div>
</div>
<div class="col-5 d-flex align-items-center justify-content-center">
<img src="assets/imgs/PEC.png" alt="Document 1" class="document-img img-fluid w-50">
<img src="assets/imgs/Constructor lisence.png" alt="Document 2"
class="document-img img-fluid w-50">
<img src="assets/imgs/registration Certificate.png" alt="Document 3"
class="document-img img-fluid w-50">
<img src="assets/imgs/Incorporation Letter.png" alt="Document 4"
class="document-img img-fluid w-50">
</div>
</div>
</div> -->
<div class="container mt-5">
<div class="row p-4">
<div class="col-12 col-md-7">
<p class="m-auto mb-5">
Our company is proudly certified, fully compliant with regulatory standards, and
committed to transparency and excellence. Below, you will find our official registration
documents, reflecting our dedication to integrity and professionalism in every aspect of
our operations.
</p>
<div class="d-flex flex-wrap align-items-start justify-content-start gap-2 mt-2">
<button type="button" class="btn newclr mb-2" onclick="showImage(0)">Pakistan
Engineering Council</button>
<button type="button" class="btn btn-secondary mb-2" onclick="showImage(1)">Constructor
License</button>
<button type="button" class="btn newclr mb-2" onclick="showImage(2)">Registration
Certificate</button>
<button type="button" class="btn btn-secondary mb-2"
onclick="showImage(3)">Incorporation Letter</button>
</div>
</div>
<!-- Image Column -->
<div class="col-12 col-md-5 d-flex align-items-center justify-content-center flex-wrap">
<img src="assets/imgs/PEC.png" alt="Document 1"
class="document-img img-fluid w-75 w-md-50 mb-3">
<img src="assets/imgs/Constructor lisence.png" alt="Document 2"
class="document-img img-fluid w-75 w-md-50 mb-3">
<img src="assets/imgs/registration Certificate.png" alt="Document 3"
class="document-img img-fluid w-75 w-md-50 mb-3">
<img src="assets/imgs/Incorporation Letter.png" alt="Document 4"
class="document-img img-fluid w-75 w-md-50 mb-3">
</div>
</div>
</div>
</div>
</section>
</div>
<!-- Section 6 -->
<section class="mt-5">
<div class="justify-content-lg-around" id="section6">
<div class="row r1">
<div class="col-md-2"></div>
<div class="col-md-8" id="maindiv">
<h4>
<img src="./assets/imgs/Frame.png" alt="" width="30px">
clients <span style="color:#9B8048 ;">Testimonial</span>
</h4>
</div>
<div class="col-md-2"></div>
<div class="col-md-2"></div>
<div class="col-md-9 row" id="div1" style="padding-top: 40px;">
<div class="col-md-6 col-12 r3">
<img src="./assets/imgs/quotes.png" alt="" Style="width: 30px;">
<p>
V-Engineers not only helped us find the perfect property for our new office space, but
they also performed exceptional renovations for us. Their extensive knowledge of the
market, coupled with their dedication to client satisfaction, made the entire process
stress-free. We couldn't be happier with our decision to work with them.
</p>
<div class="row r3div">
<div class="col-md-2" id="div1">
<img src="./assets/imgs/Rectangle9.png" alt="" width="70px">
</div>
<div class="col-md-10" id="div2">
<h4>
Mian Jawad Ahmad
</h4>
<p>
Founder and CEO Encoder Bytes
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12 r3">
<img src="./assets/imgs/quotes.png" alt="" Style="width: 30px;">
<p>
V-Engineers renovated my clinic and home impeccably. As an Orthopedic Surgeon, precision
is key, and they delivered flawlessly. Their professionalism and expertise were evident
throughout the process, and the results exceeded my expectations. I highly recommend
V-Engineers for any renovation needs.
</p>
<div class="row r3div">
<div class="col-md-2" id="div1">
<img src="./assets/imgs/Rectangle10.png" alt="" width="70px">
</div>
<div class="col-md-10" id="div2">
<h4>
Dr' Zahid Niaz
</h4>
<p>
Orthopedic Surgeon
</p>
</div>
</div>
</div>
</div>
<div class="col-md-1"></div>
</div>
</div>
</section>
<!-- Contact Form -->
<section id="contact" class="mt-5 pt-5">
<div class="justify-content-lg-around" id="section7" style="background-image: url('assets/imgs/Group14.png');
background-repeat: no-repeat;
background-position: center;
background-size: cover;">>
<div class="row r1">
<div class="col-md-2"></div>
<div class="col-md-4 text-white" id="maindiv">
<h4>
<img src="./assets/imgs/Frame2.png" alt="" width="30px">
Contact us
</h4>
<img src="./assets/imgs/contacttext.png" alt="" style="padding: 5rem 0;">
<p>
Send us a message and we will get your questions answered as soon as possible.
</p>
</div>
<div class="col-md-1"></div>
<div class="col-md-4 div2">
<div class="form p-5 formdiv">
<form action="./inc/contactprocess.php" class="form-horizontal form-material text-white"
method="POST">
<div class="form-group mb-4 ">
<div class="col-md-12 border-bottom mt-3">
<input placeholder="Name" type="text" name="fullname"
class="form-control p-3 border-0 ">
</div>
</div>
<div class="row ">
<div class="col-md-6 col-lg-6 col-sm-12 ">
<div class="form-group mb-4">
<div class="col-md-12 border-bottom mt-3">
<input placeholder="Email" type="email" name="email" required
class="form-control p-3 border-0">
</div>
</div>
</div>
<dic class="col-md-6 col-lg-6 col-sm-12">
<div class="form-group ">
<div class="col-md-12 border-bottom mt-3">
<input placeholder="Phone" type="phone" name="phone"
class="form-control p-3 border-0">
</div>
</div>
</dic>
</div>
<div class="form-group py-3">
<div class="col-md-12 p-0">
<textarea placeholder="Message" rows="8" cols="50" name="content"
class="form-control"></textarea>
</div>
</div>
<div class="col-md-6 col-12 item2 d-flex align-self-center justify-content-center py-2">
<div class="sec1_button">
<div class="out_btn2 ">
<button type="submit" name="submit" class="btn btn3 text-center">
<Span>
Send Message
</Span>
</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Form End -->
</div>
<!-- Main End -->
<!-- Footer -->
<footer class="text-center text-lg-start text-white" id="footer">
<div class="container p-4">
<section id="footer_main" class="d-flex align-items-center mt-5 background">
<div class="container mt-5" id="f_div1">
<div class=" row" id="div2">
<!-- <div class="col-md-1 col-12"></div> -->
<div class="mt-5 col-md-3 col-sm-12 col-12 itm1">
<img src="./assets/imgs/logo.png" alt="">
<p style="color: black; padding: 40px 0 0 0;">
We believe in building a strong foundation – be it for the building we constructor
of
the
relationship with our clients.
</p>
<div>
<a href="">
<img src="./assets/imgs/fb.png" alt="">
</a>
<a href="https://www.linkedin.com/company/encoderbytes">
<img src="./assets/imgs/in.png" alt="">