-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex22.html
More file actions
690 lines (568 loc) · 29.2 KB
/
index22.html
File metadata and controls
690 lines (568 loc) · 29.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Bevylabs - Official Website</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="https://bevylabs.org/favicon.png" rel="icon">
<link href="https://bevylabs.org/favicon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<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=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Variables CSS Files. Uncomment your preferred color scheme -->
<link href="assets/css/variables.css" rel="stylesheet">
<!-- <link href="assets/css/variables-blue.css" rel="stylesheet"> -->
<!-- <link href="assets/css/variables-green.css" rel="stylesheet"> -->
<!-- <link href="assets/css/variables-orange.css" rel="stylesheet"> -->
<!-- <link href="assets/css/variables-purple.css" rel="stylesheet"> -->
<!-- <link href="assets/css/variables-red.css" rel="stylesheet"> -->
<!-- <link href="assets/css/variables-pink.css" rel="stylesheet"> -->
<!-- Template Main CSS File -->
<link href="assets/css/main.css" rel="stylesheet">
<!-- =======================================================
* Template Name: HeroBiz - v2.1.0
* Template URL: https://bootstrapmade.com/herobiz-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="header fixed-top" data-scrollto-offset="0">
<div class="container-fluid d-flex align-items-center justify-content-between">
<a href="index.html" class="logo d-flex align-items-center scrollto me-auto me-lg-0">
<!-- Uncomment the line below if you also wish to use an image logo -->
<!-- <img src="assets/img/logo.png" alt=""> -->
<h1>Bevylabs<span>.</span></h1>
</a>
<nav id="navbar" class="navbar">
<ul>
<a class="nav-link scrollto" href="index.html#">Home</a>
<a class="nav-link scrollto" href="index.html#about">About</a>
<a class="nav-link scrollto" href="index.html#services">Services</a>
<a class="nav-link scrollto" href="index.html#portfolio">Works</a>
<a class="nav-link scrollto" href="index.html#team">News</a>
<a class="nav-link scrollto" href="index.html#recent-blog-posts">Blog</a>
<a class="nav-link scrollto" href="index.html#contact">Contact</a>
</ul>
<i class="bi bi-list mobile-nav-toggle d-none"></i>
</nav><!-- .navbar -->
<a class="btn-getstarted scrollto" href="index.html#about">Get Started</a>
</div>
</header><!-- End Header -->
<section id="hero-animated" class="hero-animated d-flex align-items-center">
<div class="container d-flex flex-column justify-content-center align-items-center text-center position-relative" data-aos="zoom-out">
<img src="assets/img/bevy (1)-1.png" class="img-fluid animated">
<h2>Welcome to <span>Bevylabs</span></h2>
<p>Make the Positive change in people’s mind to discover their passion using our inventions.</p>
<div class="d-flex">
<a href="#about" class="btn-get-started scrollto">Get Started</a
</div>
</div>
</section>
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>About Us</h2>
<p>As an excellent technology-driven company, we are delightedly conducting our continuous researches to invent modern technical equipment and technologies. In particular, we join with you to facilitate your technical necessities in collaboration with our sincere service excellence. We are very pleasing to welcome you to build up your routes over your challenges and competitors with our latest technologies and creations. Focus on us and we are BevyLabs!</p>
</div>
<div class="row g-4 g-lg-5" data-aos="fade-up" data-aos-delay="200">
<div class="col-lg-5">
<div class="about-img">
<img src="assets/img/grizzly.jpg" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-7">
<!-- Tabs -->
<ul class="nav nav-pills mb-3">
<li><a class="nav-link active" data-bs-toggle="pill" href="#tab1">Our Goal.</a></li>
<li><a class="nav-link" data-bs-toggle="pill" href="#tab2">Our Mission.</a></li>
</ul><!-- End Tabs -->
<!-- Tab Content -->
<div class="tab-content">
<div class="tab-pane fade show active" id="tab1">
<p>To become the world’s powerful virtual life coach for the human being.</p>
</div>
<div class="tab-pane fade show" id="tab2">
<p>Make the Positive change in people’s mind to discover their passion using our inventions.</p>
</div>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Our Services</h2>
<p>We proudly present some exceptional services that you are welcome to getting touch with. Up-to-date, our services are being used over 5000 individuals in numerous disciplines and that’s the inspiration we are seeking and receiving from our valued-clients. Stay in touch and focus with us.</p>
</div>
<div class="row gy-5">
<div class="col-xl-4 col-md-6" data-aos="zoom-in" data-aos-delay="200">
<div class="service-item"><br><br><br><br><br>
<div class="details position-relative">
<div class="icon">
<i class="bi bi-share"></i>
</div>
<a href="#" class="stretched-link">
<h3>Workshops</h3>
</a>
</div>
</div>
</div><!-- End Service Item -->
<div class="col-xl-4 col-md-6" data-aos="zoom-in" data-aos-delay="300">
<div class="service-item"><br><br><br><br><br>
<div class="details position-relative">
<div class="icon">
<i class="bi bi-graph-up"></i>
</div>
<a href="#" class="stretched-link">
<h3>Product Development and Engineering</h3>
</a>
</div>
</div>
</div><!-- End Service Item -->
<div class="col-xl-4 col-md-6" data-aos="zoom-in" data-aos-delay="400">
<div class="service-item"><br><br><br><br><br>
<div class="details position-relative">
<div class="icon">
<i class="bi bi-lightbulb"></i>
</div>
<a href="#" class="stretched-link">
<h3>Research and Innovation</h3>
</a>
</div>
</div>
</div><!-- End Service Item -->
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio" data-aos="fade-up">
<div class="container">
<div class="section-header">
<h2>Our Brands.</h2>
<p>Happy to say , More than 5K individuals are benefits from our products.</p>
</div>
</div>
<div class="container-fluid" data-aos="fade-up" data-aos-delay="200">
<div class="portfolio-isotope" data-portfolio-filter="*" data-portfolio-layout="masonry" data-portfolio-sort="original-order">
<div class="row g-0 portfolio-container">
<div class="col-xl-3 col-lg-4 col-md-6 portfolio-item filter-app">
<img src="assets/img/recyle.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Recycle-Media</h4>
<p>Mobile App.</p>
<a href="assets/img/recyle.png" title="Mobile App" data-gallery="portfolio-gallery" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="https://play.google.com/store/apps/details?id=in.tvac.bevylabs.photoblog" target="_blank" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div><!-- End Portfolio Item -->
<div class="col-xl-3 col-lg-4 col-md-6 portfolio-item filter-product">
<img src="assets/img/hithu.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Hithumathe-Jeewithe</h4>
<p>Mobile Game.</p>
<a href="assets/img/hithu.png" title="Mobile Game" data-gallery="portfolio-gallery" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="https://play.google.com/store/apps/details?id=com.BevyLabs.Hethumathe" target="_blank" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div><!-- End Portfolio Item -->
<div class="col-xl-3 col-lg-4 col-md-6 portfolio-item filter-branding">
<img src="assets/img/py.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Python-Sinhala</h4>
<p>Mobile App.</p>
<a href="assets/img/py.png" title="Mobile App" data-gallery="portfolio-gallery" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="https://play.google.com/store/apps/details?id=bevylabs.buddhika.pythonsinhala&hl=en_US" target="_blank" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div><!-- End Portfolio Item -->
<div class="col-xl-3 col-lg-4 col-md-6 portfolio-item filter-books">
<img src="assets/img/crush.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>cRush-OCR</h4>
<p>Mobile App.</p>
<a href="assets/img/crush.png" title="Mobile App" data-gallery="portfolio-gallery" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="https://play.google.com/store/apps/details?id=com.bevylabs.buddhika.crushocr" target="_blank" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div><!-- End Portfolio Item -->
<div class="col-xl-3 col-lg-4 col-md-6 portfolio-item filter-app">
<img src="assets/img/bevyscl.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>BevyLabs School</h4>
<p>Virtual Learning Environment</p>
<a href="assets/img/bevyscl.jpg" title="Virtual Learning Environment" data-gallery="portfolio-gallery" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="https://bevyscl.com/" target="_blank" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div><!-- End Portfolio Item -->
<div class="col-xl-3 col-lg-4 col-md-6 portfolio-item filter-product">
<img src="assets/img/pascal.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Pascal Sinhala</h4>
<p>Mobile App.</p>
<a href="assets/img/pascal.jpg" title="Mobile App" data-gallery="portfolio-gallery" class="glightbox preview-link"><i class="bi bi-zoom-in"></i></a>
<a href="https://play.google.com/store/apps/details?id=com.bevylabs.Pascal&hl=en_US" target="_blank" title="More Details" class="details-link"><i class="bi bi-link-45deg"></i></a>
</div>
</div><!-- End Portfolio Item -->
</div><!-- End Portfolio Container -->
</div>
</div>
</section><!-- End Portfolio Section -->
<!-- ======= Latest works Section ======= -->
<section id="services" class="services">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Our Latest Works.</h2>
<p>As an excellent technology-driven company, we are delightedly conducting our continuous researches to
invent modern technical equipment and technologies. In particular, we join with you to facilitate
your technical necessities in collaboration with our sincere service excellence.</p>
</div>
<div class="row gy-5">
<div class="col-xl-4 col-md-6" data-aos="zoom-in" data-aos-delay="200">
<div class="service-item">
<div class="img">
<img src="assets/img/grizzly.jpg" class="img-fluid" alt="">
</div>
</div>
</div><!-- End Service Item -->
<div class="col-xl-4 col-md-6" data-aos="zoom-in" data-aos-delay="200">
<div class="service-item">
<div class="img">
<img src="assets/img/hotel.jpg" class="img-fluid" alt="">
</div>
</div>
</div><!-- End Service Item -->
<div class="col-xl-4 col-md-6" data-aos="zoom-in" data-aos-delay="200">
<div class="service-item">
<div class="img">
<img src="assets/img/beetle.jpg" class="img-fluid" alt="">
</div>
</div>
</div><!-- End Service Item -->
<div class="col-xl-4 col-md-6" data-aos="zoom-in" data-aos-delay="200">
<div class="service-item">
<div class="img">
<img src="assets/img/banjo-player.jpg" class="img-fluid" alt="">
</div>
</div>
</div><!-- End Service Item -->
<div class="col-xl-4 col-md-6" data-aos="zoom-in" data-aos-delay="200">
<div class="service-item">
<div class="img">
<img src="assets/img/coffee.jpg" class="img-fluid" alt="">
</div>
</div>
</div><!-- End Service Item -->
<div class="col-xl-4 col-md-6" data-aos="zoom-in" data-aos-delay="200">
<div class="service-item">
<div class="img">
<img src="assets/img/mnm.png" class="img-fluid" alt="">
</div>
</div>
</div><!-- End Service Item -->
<div class="col-xl-4 col-md-6" data-aos="zoom-in" data-aos-delay="200">
<div class="service-item">
<div class="img">
<img src="assets/img/judah.jpg" class="img-fluid" alt="">
</div>
</div>
</div><!-- End Service Item -->
<div class="col-xl-4 col-md-6" data-aos="zoom-in" data-aos-delay="200">
<div class="service-item">
<div class="img">
<img src="assets/img/embossed-paper.jpg" class="img-fluid" alt="">
</div>
</div>
</div><!-- End Service Item -->
</div>
</div>
</section>
<!-- ======= News Section ======= -->
<section id="team" class="team">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Our Achievements.</h2>
<p>In last few years, We achived more than 10+ awards including International awards with highly recognition for our products.</p>
</div>
<div class="row gy-5">
<div class="col-xl-4 col-md-6 d-flex" data-aos="zoom-in" data-aos-delay="200">
<div class="team-member">
<div class="member-img">
<img src="assets/img/sahasak.png" class="img-fluid" alt="">
</div>
<div class="member-info">
<h4>teamBevyLabs awarded in Sahasak Nimaum 2018 National Competiton.</h4>
<span>We are happy to announce that teamBevyLabs from Uva Wellassa University won,
The First Place (Gold Medal) under the field of ICT and The 3rd Place (Bronze Medal)
under the field of Applied Science & Technology of "Sahasak Nimavum 2018" - National
Exhibition among all Universities and Tertiary Educational Institutes of Sri Lanka.</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-4 col-md-6 d-flex" data-aos="zoom-in" data-aos-delay="600">
<div class="team-member">
<div class="member-img">
<img src="assets/img/mobitel-001.jpg" class="img-fluid" alt="">
</div>
<div class="member-info">
<h4>Team BevyLabs won the 1st Runner-UP Smart Sri Lanka Hackathon</h4>
<span>Team BevyLabs won the 1st Runner-UP Smart Sri Lanka Hackathon which was organized by Sri Lanka Telecom Mobitel.</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-4 col-md-6 d-flex" data-aos="zoom-in" data-aos-delay="400">
<div class="team-member">
<div class="member-img">
<img src="assets/img/award.jpg" class="img-fluid" alt="">
</div>
<div class="member-info">
<h4>Team BevyLabs Awarded as the Best Startup Company from the United State Ambassador</h4>
<span>Team BevyLabs Awarded as the Best Startup Company
from the United State Ambassador to Sri_Lanka and Maldives</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-4 col-md-6 d-flex" data-aos="zoom-in" data-aos-delay="600">
<div class="team-member">
<div class="member-img">
<img src="assets/img/ipitex.png" class="img-fluid" alt="">
</div>
<div class="member-info">
<h4>BevyLabs won Gold at IPITEx 2019</h4>
<span>Team BevyLabs from Uva Wellassa University of Sri Lanka has been awarded IPITEx Gold Medal
and a
Special award from Indian Innovators Association at Bangkok International Intellectual
Property Invention, "Innovation and Technology Exposition on 6th Feb 2019.”</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-xl-4 col-md-6 d-flex" data-aos="zoom-in" data-aos-delay="600">
<div class="team-member">
<div class="member-img">
<img src="assets/img/nbqsa.png" class="img-fluid" alt="">
</div>
<div class="member-info">
<h4>NBQSA 2018 Award Ceremony</h4>
<span>teamBevyLabs awarded in National Best Quality ICT Awards 2018.</span>
</div>
</div>
</div><!-- End Team Member -->
</div>
</div>
</section><!-- End Team Section -->
<!-- ======= Recent Blog Posts Section ======= -->
<section id="recent-blog-posts" class="recent-blog-posts">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Join With Us</h2>
<p>Our projects are aiming towards solving timely social issues through innovation and technology.
Therefore, the
BevyLabs also functioning as Social Entrepreneurs.</p>
</div>
<div class="row">
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="200">
<div class="post-box">
<div class="post-img">
<img src="assets/img/277679552_361914465949076_6667519074598961632_n.png" class="img-fluid" alt="">
</div>
<div class="blog-link">
<div class="icon">
<a href="https://www.facebook.com/BevyLabs/" target="_blank"><i class="bi bi-facebook"></i></a>
</div>
<h4>BevyLabs</h4>
<span>Follow Page</span>
</div>
</div>
</div>
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="400">
<div class="post-box">
<div class="post-img">
<img src="assets/img/80243250_2560544083994098_8035799736831180800_n.jpg" class="img-fluid" alt="">
</div>
<div class="blog-link">
<div class="icon">
<a href="https://www.facebook.com/groups/bevylabs/" target="_blank"><i class="bi bi-facebook"></i></a>
</div>
<h4>බේවි විද්යාගාරයේ විද්යාඥයින්ගේ එකමුතුව</h4>
<span>Visit Group</span>
</div>
</div>
</div>
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="600">
<div class="post-box">
<div class="post-img">
<img src="assets/img/91226460_109213547397299_709339081867264000_n.png" class="img-fluid" alt="">
</div>
<div class="blog-link">
<div class="icon">
<a href="https://www.facebook.com/BevyLabsSchool/" target="_blank"><i class="bi bi-facebook"></i></a>
</div>
<h4>BevyLabs School</h4>
<span>Like Page</span>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Recent Blog Posts Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container">
<div class="section-header">
<h2>Contact Us</h2>
<p>Let's talk about your ideas. We are very pleased to listen to you as friends.</p>
</div>
</div>
<div class="channel">
<a href="https://www.youtube.com/c/bevylabs" target="_blank">
<img src="assets/img/youtube.jpg" alt="BevyLabsTV"></a>
</div><!-- End channel -->
<div class="container">
<div class="row gy-5 gx-lg-5">
<div class="col-lg-4">
<div class="info">
<h3>About BevyLabs</h3>
<p>As an excellent technology-driven company, we are delightedly conducting our continuous
researches to invent
modern technical equipment and technologies. In particular, we join with you to facilitate your
technical
necessities in collaboration with our sincere service excellence.
</p>
<p>Stay Focus with us, We are Bevylabs.</p>
<div class="info-item d-flex">
<i class="bi bi-geo-alt flex-shrink-0"></i>
<div>
<h4>Location:</h4>
<p>No 14/4B,Wegiriya Mountain, Gohagoda Road, Katugastota, 20800 SL</p><br>
<p>No 53,1st Lane,Koggalawatta, Thiththawella, Kurunegala, 60000 SL</p>
</div>
</div><!-- End Info Item -->
<div class="info-item d-flex">
<i class="bi bi-envelope flex-shrink-0"></i>
<div>
<h4>Email:</h4>
<p>bevylabs@gmail.com</p>
</div>
</div><!-- End Info Item -->
<div class="info-item d-flex">
<i class="bi bi-phone flex-shrink-0"></i>
<div>
<h4>Call:</h4>
<p>+94785272114</p>
<p>+94712671566</p>
</div>
</div><!-- End Info Item -->
</div>
</div>
<div class="col-lg-8">
<form action="forms/contact.php" method="post" role="form" class="php-email-form">
<div class="row">
<div class="col-md-6 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" required>
</div>
<div class="col-md-6 form-group mt-3 mt-md-0">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" required>
</div>
</div>
<div class="form-group mt-3">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" required>
</div>
<div class="form-group mt-3">
<textarea class="form-control" name="message" placeholder="Message" required></textarea>
</div>
<div class="my-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your message has been sent. Thank you!</div>
</div>
<div class="text-center"><button type="submit">Send Message</button></div>
</form>
</div><!-- End Contact Form -->
</div>
</div>
</section><!-- End Contact Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer" class="footer">
<div class="footer-content">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="footer-info">
<h3>BevyLabs</h3>
<p><p>No 14/4B,Wegiriya Mountain<br>Gohagoda Road, Katugastota.<br>20800 SL</p><br>
<p>No 53,1st Lane,Koggalawatta<br>Thiththawella, Kurunegala.<br>60000 SL</p><br>
<strong>Phone:</strong> +94785272114 / +94712671566<br><br>
<strong>Email:</strong> bevylabs@gmail.com<br>
</p>
</div>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="bi bi-chevron-right"></i> <a href="index.html#">Home</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="index.html#about">About us</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="index.html#services">Services</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="index.html#portfolio">Works</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="index.html#team"">News</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Our Services</h4>
<ul>
<li><i class="bi bi-chevron-right"></i> <a href="index.html#services">Workshops</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="index.html#services">Product Development and Engineering</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="index.html#services">Research and Innovation</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer-legal text-center">
<div class="container d-flex flex-column flex-lg-row justify-content-center justify-content-lg-between align-items-center">
<div class="d-flex flex-column align-items-center align-items-lg-start">
<div class="copyright">
© Copyright <strong><span>BevyLabs</span></strong>. All Rights Reserved
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/herobiz-bootstrap-business-template/ -->
Designed by <a href="https://bevylabs.org/">Team BevyLabs.</a>
</div>
</div>
<div class="social-links order-first order-lg-last mb-3 mb-lg-0">
<a href="https://bevylabs.org/" class="twitter"><i class="bi bi-twitter"></i></a>
<a href="https://www.facebook.com/BevyLabs/" class="facebook"><i class="bi bi-facebook"></i></a>
<a href="https://bevylabs.org/" class="instagram"><i class="bi bi-instagram"></i></a>
<a href="https://bevylabs.org/" class="google-plus"><i class="bi bi-skype"></i></a>
<a href="https://bevylabs.org/" class="linkedin"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</footer><!-- End Footer -->
<a href="#" class="scroll-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<div id="preloader"></div>
<!-- Vendor JS Files -->
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>