-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1029 lines (927 loc) · 49.5 KB
/
index.html
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_US" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- <base href="https://cyberoctane.lk/"> -->
<!-- Viewport -->
<meta name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<meta name="HandheldFriendly" content="true">
<!-- Page Title -->
<title>Cyber Octane - Digital Design Studio</title>
<meta name="author" content="Cyber Octane" />
<meta name="description"
content="We are a digital design studio that implements and enhances brand experience via digital solutions from branding to web design & development including vr solutions for brands and organizations." />
<link rel="canonical" href="https://cyberoctane.lk/">
<meta property="og:title" content="Cyber Octane - Digital Design Studio" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://cyberoctane.lk/" />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="Cyber Octane">
<meta property="og:image" content="https://cyberoctane.lk/img/favicons/cyber_octane_banner.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt"
content="A digital design studio that implements brand identities and enhances brand experiences on the digital medium via digital interactivity." />
<meta property="og:description"
content="We are a digital design studio that implements and enhances brand experience via digital solutions from branding to web design & development including vr solutions for brands and organizations." />
<meta property="twitter:card" content="summary" />
<meta property="twitter:url" content="https://cyberoctane.lk/" />
<meta property="twitter:title" content="Cyber Octane - Digital Design Studio" />
<meta property="twitter:image" content="https://cyberoctane.lk/img/favicons/cyber_octane_banner.png" />
<meta property="twitter:description"
content="We are a digital design studio that implements and enhances brand experience via digital solutions from branding to web design & development including vr solutions for brands and organizations." />
<!-- DNS Prefetching -->
<link rel="dns-prefetch" href="//fonts.googleapis.com" />
<link rel="dns-prefetch" href="//ajax.googleapis.com" />
<link rel="dns-prefetch" href="//cdnjs.cloudflare.com" />
<link rel="dns-prefetch" href="//stackpath.bootstrapcdn.com" />
<link rel="dns-prefetch" href="//www.google.com" />
<link rel="dns-prefetch" href="//www.google-analytics.com" />
<link rel="dns-prefetch" href="//www.gstatic.com" />
<!-- Appearance -->
<meta name="theme-color" content="#101315" />
<link rel="apple-touch-icon" sizes="57x57" href="https://cyberoctane.lk/img/favicons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="https://cyberoctane.lk/img/favicons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="https://cyberoctane.lk/img/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="https://cyberoctane.lk/img/favicons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114"
href="https://cyberoctane.lk/img/favicons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120"
href="https://cyberoctane.lk/img/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144"
href="https://cyberoctane.lk/img/favicons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152"
href="https://cyberoctane.lk/img/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180"
href="https://cyberoctane.lk/img/favicons/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="https://cyberoctane.lk/img/favicons/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="https://cyberoctane.lk/img/favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="https://cyberoctane.lk/img/favicons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="https://cyberoctane.lk/img/favicons/android-chrome-192x192.png"
sizes="192x192">
<link rel="manifest" href="https://cyberoctane.lk/manifest.json">
<meta name="msapplication-TileColor" content="#101315">
<meta name="msapplication-TileImage" content="https://cyberoctane.lk/img/favicons/mstile-144x144.png">
<meta name="keywords" content="">
<!-- Bootstrap v4.1.3 Core CSS -->
<link rel="stylesheet" id="bootstrap_v4.1.3_core_css"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<!-- Custom Fonts -->
<link rel="stylesheet" id="font_awesome_v5_css"
href="https://cyberoctane.lk/vendor/font-awesome/v5.10.1/css/all.min.css" type="text/css">
<!-- Google Fonts API -->
<link rel="stylesheet" id="barlow_semi_condensed"
href="https://fonts.googleapis.com/css?family=Barlow+Semi+Condensed:100,200,300,400,500,600,700,800,900&display=swap">
<!-- Plugin CSS -->
<link rel="stylesheet" id="swiper_v4.5.0_css" href="https://cyberoctane.lk/vendor/swiper/css/swiper.min.css"
type="text/css">
<link rel="stylesheet" id="iziToast_v1.4.0_css" href="https://cyberoctane.lk/vendor/iziToast/iziToast.min.css"
type="text/css">
<!-- Website CSS -->
<!-- <link rel="stylesheet" id="main_css" href="https://cyberoctane.lk/css/style.min.css" type="text/css"> -->
<link rel="stylesheet" id="main_css" href="/css/style.min.css" type="text/css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-145115788-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-145115788-1');
</script>
<!-- Facebook Pixel Code -->
<script>
! function (f, b, e, v, n, t, s) {
if (f.fbq) return;
n = f.fbq = function () {
n.callMethod ?
n.callMethod.apply(n, arguments) : n.queue.push(arguments)
};
if (!f._fbq) f._fbq = n;
n.push = n;
n.loaded = !0;
n.version = '2.0';
n.queue = [];
t = b.createElement(e);
t.async = !0;
t.src = v;
s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s)
}(window, document, 'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '502332683927488');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=502332683927488&ev=PageView&noscript=1" /></noscript>
<!-- End Facebook Pixel Code -->
</head>
<body>
<!------------------------------------------- Background Animation Starts ------------------------------------------->
<div id="threejs-container"></div>
<!-- Welcome-Globe-SVG Ends -->
<div id="dotted"></div>
<!------------------------------------------- Top Nav Bar Starts ------------------------------------------->
<nav id="home-navbar" class="page-nav">
<a class="nav-logo" href="https://cyberoctane.lk/">
<svg id="cyberlogo" viewBox="0 0 53.6 38.93">
<g>
<path d="M25.9,37.5c0-.7.1-5.6-4.2-5.6s-3.9,7,2.6,7A1.42,1.42,0,0,0,25.9,37.5Z"
transform="translate(0 0.03)" />
<path d="M27.8,37.5c0-.7-.1-5.6,4.2-5.6s3.9,7-2.6,7A1.42,1.42,0,0,1,27.8,37.5Z"
transform="translate(0 0.03)" />
<path
d="M44.3.6,31.7,8.1a1.59,1.59,0,0,0,0,2.7l7.2,4.1a1.16,1.16,0,0,0,1.7-1V11.7a3.13,3.13,0,0,1,1.3-2.5l2-1.3A1.37,1.37,0,0,1,46,9.1V21.2a1.52,1.52,0,0,1-2.3,1.3L29.9,14.6a6.05,6.05,0,0,0-6.1,0L10,22.4a1.52,1.52,0,0,1-2.3-1.3V9.1A1.41,1.41,0,0,1,9.8,7.9l2.9,1.8a.91.91,0,0,1,.4.8V14a1.07,1.07,0,0,0,1.6.9L22,10.7A1.59,1.59,0,0,0,22,8L9.4.5A3,3,0,0,0,6,.5L1.1,3.3A2.43,2.43,0,0,0,0,5.3V26.2a2.14,2.14,0,0,0,1.1,1.9L6,30.9a3.43,3.43,0,0,0,3.4,0l16.2-9.5a2.55,2.55,0,0,1,2.4,0l16.2,9.5a3.43,3.43,0,0,0,3.4,0L52.5,28a2.14,2.14,0,0,0,1.1-1.9V5.3a2.14,2.14,0,0,0-1.1-1.9L47.6.5A2.7,2.7,0,0,0,44.3.6Z"
transform="translate(0 0.03)" />
</g>
</svg>
<div class="hover-text">
<p>CYBER OCTANE</p>
</div>
</a>
<a id="menu-btn" class="closed">
<div class="menu-stroke burger"></div>
<div class="menu-stroke burger"></div>
<div class="menu-stroke burger"></div>
<div id="cross01" class="menu-stroke cross"></div>
<div id="cross02" class="menu-stroke cross"></div>
</a>
</nav>
<div id="nav-color"></div>
<!-- Top Nav Bar Ends -->
<!------------------------------------------- Menu Starts ------------------------------------------->
<div id="menu" class="section">
<div id="menu-links">
<a href="https://cyberoctane.lk/" onclick="menuOp()" class="menu-item">
<h3 class="plus">+</h3>
<h1>HOME</h1>
<h4>01</h4>
</a>
<a href="https://cyberoctane.lk/about_us.html" onclick="menuOp()" class="menu-item">
<h3 class="plus">+</h3>
<h1>ABOUT US</h1>
<h4>02</h4>
</a>
<a href="https://cyberoctane.lk/services.html" onclick="menuOp()" class="menu-item">
<h3 class="plus">+</h3>
<h1>SERVICES</h1>
<h4>03</h4>
</a>
<a href="https://cyberoctane.lk/projects.html" onclick="menuOp()" class="menu-item">
<h3 class="plus">+</h3>
<h1>PROJECTS</h1>
<h4>04</h4>
</a>
<a href="#team" onclick="menuOp()" class="menu-item">
<h3 class="plus">+</h3>
<h1>TEAM</h1>
<h4>05</h4>
</a>
<a href="#contact" onclick="menuOp()" class="menu-item">
<h3 class="plus">+</h3>
<h1>CONTACT US</h1>
<h4>06</h4>
</a>
</div>
<svg id="menu-svg" class="" viewbox="0 0 100 100">
<circle cx="50" cy="50" r="50"></circle>
</svg>
</div>
<!-- Menu Ends -->
<!------------------------------------------- Social Media Side Bar Starts ------------------------------------------->
<div id="social-bar-side" class="social-media side">
<div id="facebook" class="social-media-item">
<a class="link" href="https://www.facebook.com/cyberoctane/" target="_blank">
<i class="fab fa-facebook-f"></i>
</a>
</div>
<div id="twitter" class="social-media-item">
<a class="link" href="https://twitter.com/cyberoctaneHQ" target="_blank">
<i class="fab fa-twitter"></i>
</a>
</div>
<div id="linkedin" class="social-media-item">
<a class="link" href="https://www.linkedin.com/company/cyberoctane/" target="_blank">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
<div id="behance" class="social-media-item">
<a class="link" href="https://www.behance.net/cyberoctane" target="_blank">
<i class="fab fa-behance"></i>
</a>
</div>
<div id="instagram" class="social-media-item">
<a class="link" href="https://www.instagram.com/cyberoctanehq/" target="_blank">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
<!-- Social Media Side Bar Ends -->
<!------------------------------------------- Home Section Starts ------------------------------------------->
<div class="section" id="home">
<div id="home-wrap">
<!-- Hello Text Row Starts -->
<div id="hello">
<h2 id="we-are">WE<br>ARE</h2>
<div id="dash-1" class="dash"></div>
<h2 class="slashes">///</h2>
<h2 class="tilde">~<br>~<br>~</h2>
<div id="agency">
<h2 class="c-aligned">A</h2>
<div class="h1-wrap">
<h1 class="yellow">DIGITAL</h1>
</div>
<div id="dash-2" class="dash"></div>
<div class="h1-wrap r-aligned">
<h1 class="yellow r-aligned">DESIGN</h1>
</div>
<h2>AGENCY</h2>
</div>
<div id="co">
<div class="h1-wrap">
<h1 class="yellow">CYBER</h1>
</div>
<div class="h1-wrap r-aligned">
<h1 class="yellow r-aligned">OCTANE</h1>
</div>
<h2 class="tilde">~<br>~<br>~</h2>
<h2 class="dots">...</h2>
</div>
</div> <!-- / Hello Text Row -->
<!-- Home-Section-Nav Row Starts -->
<div id="home-nav">
<div class="nav">
<a href="https://cyberoctane.lk/about_us.html" class="nav-item">
<h6 class="plus"> + </h6>
<p class="nav-link">ABOUT US</p>
<hr class="nav-hr">
</a>
<a href="https://cyberoctane.lk/services.html" class="nav-item">
<h6 class="plus"> + </h6>
<p class="nav-link">SERVICES</p>
<hr id="about-us-hr" class="nav-hr">
</a>
<a href="https://cyberoctane.lk/projects.html" class="nav-item">
<h6 class="plus"> + </h6>
<p class="nav-link">PROJECTS</p>
<hr class="nav-hr">
</a>
<a href="#contact" class="nav-item">
<h6 class="plus"> + </h6>
<p class="nav-link">CONTACT</p>
<hr class="nav-hr">
</a>
</div>
<div id="scroll-down-arrow" class="col-md-12 text-center">
<img src="https://cyberoctane.lk/img/svg/arrow_left_01.svg">
</div>
</div><!-- / Home-Section-Nav Row-->
</div><!-- / Home-wrap-->
<!-- Home-Section-Tip Starts -->
<div class="section-tip">
<h4 class="yellow">01</h4>
<h4> | </h4>
<h4>WELCOME</h4>
</div>
<!-- Home-Section-Tip Ends -->
</div>
<!-- Home Section Ends -->
<!-------------------------------------------- About-Us Section Starts ------------------------------------------->
<div class="section" id="about-us" data-wow-delay="1s">
<div class="tick-line">
<img class="plusImg tick" src="https://cyberoctane.lk/img/svg/plus-mark.svg">
<img class="plusImg tick" src="https://cyberoctane.lk/img/svg/plus-mark.svg">
<img class="plusImg tick" src="https://cyberoctane.lk/img/svg/plus-mark.svg">
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-6" id="us-phrase">
<div class="dash lg-only"></div>
<div class="phrase">
<h1>WELCOME</h1>
<h1 class="">TO THE</h1>
<h1 class="">CYBER ERA!</h1>
</div>
<div class="dash lg-only"></div>
</div>
<div class="col-md-6" id="us-text">
<div class="dash lg-only"></div>
<div class="wrap">
<p class="text">
We are a digital design studio that implements brand identities and enhances brand
experiences on the digital medium via digital interactivity. We create websites and
web/mobile apps including VR solutions for brands and organizations, helping them to
stand-out in the cyber era.
</p>
<a href="https://cyberoctane.lk/about_us.html" class="link-btn">
<p>KNOW MORE</p>
<div class="btn-hov"></div>
<img src="https://cyberoctane.lk/img/svg/arrow_left_01.svg">
</a>
</div>
<div class="dash lg-only"></div>
</div>
</div>
</div>
<div class="tick-line bottom">
<img class="plusImg tick" src="https://cyberoctane.lk/img/svg/plus-mark.svg">
<img class="plusImg tick" src="https://cyberoctane.lk/img/svg/plus-mark.svg">
<img class="plusImg tick" src="https://cyberoctane.lk/img/svg/plus-mark.svg">
</div>
<!-- About-Us-Section-Tip Starts -->
<div class="section-tip">
<h4 class="yellow">02</h4>
<h4> | </h4>
<h4>ABOUT US</h4>
</div>
<!-- About-Us-Section-Tip Ends -->
</div>
<!-- About-Us Section Ends -->
<!-------------------------------- Services Section Starts ------------------------------------------->
<div class="section" id="services">
<div class="section-wrap">
<div class="phrase">
<div class="dash lg-only"></div>
<div class="wrap">
<h1>BE BOLD<br>IN<br>DIGITAL</h1>
<a href="https://cyberoctane.lk/services.html" class="link-btn">
<p>SEE ALL SERVICES</p>
<div class="btn-hov"></div>
<img src="https://cyberoctane.lk/img/svg/arrow_left_01.svg">
</a>
</div>
<div class="dash lg-only"></div>
</div>
<div id="services-wrap">
<div class="dash lg-only"></div>
<div id="service-nav">
<h2 id="DigitalExp" class="nav-text yellow">DIGITAL<br><span class="exp-nav">EXPERIENCE</span></h2>
<div id="service-separator"></div>
<h2 id="BrandExp" class="nav-text">BRAND<br><span class="exp-nav">EXPERIENCE</span></h2>
</div>
<!-- slider -->
<div id="services-slide" class="swiper-container service-swipe">
<div class="swiper-wrapper">
<div id="digital" class="swiper-slide experience">
<div class="services-list">
<div class="service">
<img src="https://cyberoctane.lk/img/svg/002-digital-marketing-6.svg">
<h4>WEB DESIGN <br> & DEVELOPMENT</h4>
<h6 class="plus">+</h6>
</div>
<div class="service">
<img src="https://cyberoctane.lk/img/svg/028-mobile.svg">
<h4>MOBILE / WEB APPS<br>DEVELOPMENT</h4>
<h6 class="plus">+</h6>
</div>
<div class="service">
<img src="https://cyberoctane.lk/img/svg/009-view.svg">
<h4>UI/UX DESIGN</h4>
<h6 class="plus">+</h6>
</div>
<div class="service">
<img src="https://cyberoctane.lk/img/svg/040-augmented-reality.svg">
<h4>VR/AR DEVELOPMENT</h4>
<h6 class="plus">+</h6>
</div>
</div>
</div>
<div id="branding" class="swiper-slide experience">
<div class="services-list">
<div class="service">
<img src="https://cyberoctane.lk/img/svg/040-visibility.svg">
<h4>LOGO DESIGN</h4>
<h6 class="plus">+</h6>
</div>
<div class="service">
<img src="https://cyberoctane.lk/img/svg/031-target.svg">
<h4>BRAND IDENTITY<br>DEVELOPMENT</h4>
<h6 class="plus">+</h6>
</div>
<div class="service">
<img src="https://cyberoctane.lk/img/svg/041-video-player.svg">
<h4>VIDEO & PHOTOGRAPHY</h4>
<h6 class="plus">+</h6>
</div>
<div class="service">
<img src="https://cyberoctane.lk/img/svg/043-cube.svg">
<h4>PACKAGE DESIGN</h4>
<h6 class="plus">+</h6>
</div>
</div>
</div><!-- /slide-2 -->
</div>
</div><!-- /slider -->
<div class="dash lg-only"></div>
</div><!-- /slider-wrap -->
</div>
<!-- Services-Section-Tip Starts -->
<div class="section-tip">
<h4 class="yellow">03</h4>
<h4> |</h4>
<h4> SERVICES</h4>
</div>
<!-- Servicess-Section-Tip Ends -->
</div>
<!-- Services Section Ends -->
<!------------------------------------------- Projects Section Starts ------------------------------------------->
<div class="section" id="works">
<div class="container-fluid">
<div id="work-phrase" class="row">
<div class="col-md-12">
<h2>CASE STUDIES</h2>
</div>
</div>
<div class="row">
<!----Carousel---->
<div id="works-slide" class="col-md-9">
<div class="swiper-container work-swiper">
<div class="swiper-wrapper">
<!----- slide 1 ----->
<div class="swiper-slide container">
<div class="row">
<!----- project 1 ----->
<div id="TDK" class="col-md-4 project">
<div class="project-content">
<a href="https://cyberoctane.lk/projects/tdk-architects.html"></a>
<div class="project-info">
<div class="project-name">
<h1>TDK ARCHITECTS</h1>
<hr>
<h5>UI/UX - Web Design</h5>
</div>
</div>
<div class="works-img">
<picture>
<source media="(min-width:768px)"
srcset="https://cyberoctane.lk/img/projects/tdk_ui/tdk_website_featured_pc.jpg">
<source
srcset="https://cyberoctane.lk/img/projects/tdk_ui/tdk_website_featured_mobile.jpg">
<img src="https://cyberoctane.lk/img/projects/tdk_ui/tdk_website_featured_pc.jpg"
alt="TDK Architects">
</picture>
</div>
</div>
</div>
<!----- project 2 ----->
<div id="hoppa" class="col-md-4 project">
<div class="project-content">
<a href="https://cyberoctane.lk/projects/hoppa-galle-fort.html"></a>
<div class="project-info">
<div class="project-name">
<h1>HOPPA<br>GALLE FORT</h1>
<hr>
<h5>Brand Identity</h5>
</div>
</div>
<div class="works-img">
<picture>
<source media="(min-width:768px)"
srcset="https://cyberoctane.lk/img/projects/hoppa_branding/hoppa_branding_featured_pc.jpg">
<source
srcset="https://cyberoctane.lk/img/projects/hoppa_branding/hoppa_branding_featured_mobile.jpg">
<img src="https://cyberoctane.lk/img/projects/hoppa_branding/hoppa_branding_featured_pc.jpg"
alt="Hoppa Galle Fort">
</picture>
</div>
</div>
</div>
<!----- project 3 ----->
<div id="eicher" class="col-md-4 project">
<div class="project-content">
<a href="https://cyberoctane.lk/projects/eicher-senok.html">
<div class="link-block"></div>
</a>
<div class="project-info">
<div class="project-name">
<h1>SNOK-EICHER</h1>
<hr>
<h5>UI/UX - Web Design</h5>
</div>
</div>
<div class="works-img">
<picture>
<source media="(min-width:768px)"
srcset="https://cyberoctane.lk/img/projects/senok_webdesign/senok_website_featured_pc.jpg">
<source
srcset="https://cyberoctane.lk/img/projects/senok_webdesign/senok_website_featured_mobile.jpg">
<img src="https://cyberoctane.lk/img/projects/senok_webdesign/senok_website_featured_pc.jpg"
alt="Senok Eicher">
</picture>
</div>
</div>
</div>
<!----- /project 3 ----->
</div>
</div><!-- /slide 1 -->
<!----- slide 2 ----->
<div class="swiper-slide container">
<div class="row">
<!----- project 1 ----->
<div id="coconut-magic" class="col-md-4 project">
<div class="project-content">
<a href="https://cyberoctane.lk/projects/coconut-magic.html"></a>
<div class="project-info">
<div class="project-name">
<h1>COCONUT MAGIC</h1>
<hr>
<h5>Packaging Design</h5>
</div>
</div>
<div class="works-img">
<picture>
<source media="(min-width:768px)"
srcset="https://cyberoctane.lk/img/projects/cbl_packaging/cbl_packaging_featured_pc.jpg">
<source
srcset="https://cyberoctane.lk/img/projects/cbl_packaging/cbl_packaging_featured_mobile.jpg">
<img src="https://cyberoctane.lk/img/projects/cbl_packaging/cbl_packaging_featured_pc.jpg"
alt="Ceylon Biscuits Limited">
</picture>
</div>
</div>
</div>
<!----- project 2 ----->
<div id="bay_villas" class="col-md-4 project">
<div class="project-content">
<a href="https://cyberoctane.lk/projects/bay-villas.html"></a>
<div class="project-info">
<div class="project-name">
<h1>BAY VILLAS</h1>
<hr>
<h5>Brand Identity</h5>
</div>
</div>
<div class="works-img">
<picture>
<source media="(min-width:768px)"
srcset="https://cyberoctane.lk/img/projects/bay_villas_branding/bay_villas_featured_pc.jpg">
<source
srcset="https://cyberoctane.lk/img/projects/bay_villas_branding/bay_villas_featured_mobile.jpg">
<img src="https://cyberoctane.lk/img/projects/bay_villas_branding/bay_villas_featured_pc.jpg"
alt="Bay Villa">
</picture>
</div>
</div>
</div>
<!----- project 3 ----->
<div id="coins" class="col-md-4 project">
<div class="project-content">
<a href="https://cyberoctane.lk/projects/coins.html">
<div class="link-block"></div>
</a>
<div class="project-info">
<div class="project-name">
<h1>COINS FESTIVAL</h1>
<hr>
<h5>UI/UX - Web Design</h5>
</div>
</div>
<div class="works-img">
<picture>
<source media="(min-width:768px)"
srcset="https://cyberoctane.lk/img/projects/coins_ui/coins_featured_pc.jpg">
<source
srcset="https://cyberoctane.lk/img/projects/coins_ui/coins_featured_mobile.jpg">
<img src="https://cyberoctane.lk/img/projects/coins_ui/coins_featured_pc.jpg"
alt="Coins Festival">
</picture>
</div>
</div>
</div>
<!----- /project 3 ----->
</div>
</div>
<!----- /slide 2 ----->
</div>
</div>
</div>
<!----/carousel---->
<!----See All---->
<div id="see-all" class="col-md-3 project">
<a href="https://cyberoctane.lk/projects.html">
<div class="link-text">
<img class="plusImg" src="https://cyberoctane.lk/img/svg/plus-mark_black.svg">
<p>SEE<br>ALL<br>PROJECTS</p>
</div>
<svg id="see-all-svg" viewbox="0 0 100 100">
<circle cx="50" cy="50" r="50"></circle>
</svg>
</a>
</div>
</div>
</div>
<!----/container---->
<!-- Projects-Section-Tip Starts -->
<div class="section-tip">
<h4 class="yellow">04</h4>
<h4> |</h4>
<h4> PROJECTS</h4>
</div>
<!-- Projects-Section-Tip Ends -->
</div>
<!-- Works Section Ends -->
<!------------------------------------------- Clients Section Starts ------------------------------------------->
<div class="section" id="clients">
<div class="container-fluid">
<div class="row">
<div class="col-md-6 phrase">
<div class="dash lg-only"></div>
<h1>BRANDS WE WORKED WITH</h1>
<div class="dash lg-only"></div>
</div>
<div class="col-md-6 d-flex client-list">
<img src="https://cyberoctane.lk/img/svg/plus-mark.svg" class="plusImg top-l">
<img src="https://cyberoctane.lk/img/svg/plus-mark.svg" class="plusImg top-r">
<div class="swiper-container client-swiper">
<div class="swiper-wrapper">
<div class="client-pack swiper-slide">
<img src="https://cyberoctane.lk/img/logo/clients/createrix_logo.png" alt="Createrix">
<img src="https://cyberoctane.lk/img/logo/clients/bay_villa_logo.png"
alt="Bay Villas Balapitiya">
<img src="https://cyberoctane.lk/img/logo/clients/mooniak_logo.png" alt="Mooniak">
</div>
<div class="client-pack swiper-slide">
<img src="https://cyberoctane.lk/img/logo/clients/seal_group_logo.png" alt="Seal Group">
<img src="https://cyberoctane.lk/img/logo/clients/kiss_logo.png"
alt="The Kiss Creatives">
<img src="https://cyberoctane.lk/img/logo/clients/hoppa_logo.png"
alt="Hoppa Galle Fort">
</div>
<div class="client-pack swiper-slide">
<img src="https://cyberoctane.lk/img/logo/clients/shore_by_hoppa_logo.png"
alt="Shore by Hoppa Unawatuna">
<img src="https://cyberoctane.lk/img/logo/clients/sense_logo.png" alt="Sense Imagery">
<img src="https://cyberoctane.lk/img/logo/clients/tdk_logo.png" alt="TDK Architects">
</div>
<div class="client-pack swiper-slide">
<img src="https://cyberoctane.lk/img/logo/clients/cbl_logo.png"
alt="Ceylon Biscuits Limited">
<img src="https://cyberoctane.lk/img/logo/clients/ij_interiors_logo.png"
alt="IJ Interiors">
<img src="https://cyberoctane.lk/img/logo/clients/senok_logo.png" alt="Senok">
</div>
</div>
</div>
<img src="https://cyberoctane.lk/img/svg/plus-mark.svg" class="plusImg bottom">
</div>
</div>
</div>
<!-- Clients-Section-Tip Starts -->
<div class="section-tip">
<h4 class="yellow">05</h4>
<h4> |</h4>
<h4> CLIENTS</h4>
</div>
<!-- Clients-Section-Tip Ends -->
</div>
<!-- Clients Section Ends -->
<!------------------------------------------- Team Section Starts ------------------------------------------->
<div class="section" id="team">
<div class="section-wrap">
<div class="phrase">
<h1>FUELLED BY PASSION</h1>
</div>
<div id="team-carousel" class="swiper-container team-swiper">
<div class="swiper-wrapper">
<div id="mmbr-01" class="member swiper-slide">
<div class="member-photo">
<img src="https://cyberoctane.lk/img/team/lasantha_premarathna.png"
alt="Lasantha Premarathna">
</div>
<div class="member-details">
<h5>LASANTHA<br>PREMARATHNA</h5>
<p>Operations Manager + VR/AR Engineer<br>Co-Founder</p>
</div>
</div>
<div id="mmbr-02" class="member swiper-slide">
<div class="member-photo">
<img src="https://cyberoctane.lk/img/team/rajitha_manamperi.png" alt="Rajitha Manamperi">
</div>
<div class="member-details">
<h5>RAJITHA<br>MANAMPERI</h5>
<p>Creative Producer + Front-End Developer<br>Co-Founder</p>
</div>
</div>
<div id="mmbr-03" class="member swiper-slide">
<div class="member-photo">
<img src="https://cyberoctane.lk/img/team/nuwan_wickramaarachchi.png"
alt="Nuwan Wickramaarachchi">
</div>
<div class="member-details">
<h5>NUWAN<br>WIKRAMAARACHCHI</h5>
<p>Technical Manager + Back-End Developer<br>Co-Founder</p>
</div>
</div>
<div id="mmbr-04" class="member swiper-slide">
<div class="member-photo">
<img src="https://cyberoctane.lk/img/team/muthumali_ponnamperuma.png"
alt="Muthumali Ponnamperuma">
</div>
<div class="member-details">
<h5>MUTHUMALI<br>PONNAMPERUMA</h5>
<p>Accountant + Business Development Strategist<br>Co-Founder</p>
</div>
</div>
</div>
<div class="swiper-nav swiper-button-prev"></div>
<div class="swiper-nav swiper-button-next"></div>
</div><!-- /swiper-container-->
</div>
<!-- Team-Section-Tip Starts -->
<div class="section-tip">
<h4 class="yellow">06</h4>
<h4> |</h4>
<h4> TEAM</h4>
</div>
<!-- Team-Section-Tip Ends -->
</div>
<!-- Team Section Ends -->
<!------------------------------------------- Contact Section Starts ------------------------------------------->
<div class="section" id="contact">
<div class="section-wrap">
<div class="phrase">
<div class="dash lg-only"></div>
<h1 class="">GET IN TOUCH<br>WITH<br>US</h1>
<div class="dash lg-only"></div>
</div>
<div class="contact-info">
<div id="locate">
<h3>LOCATE</h3>
<p>No. 193/34/1,<br>Hettiarachchi Mw,<br>Mattegoda,<br>Sri Lanka.</p>
</div>
<div class="dash lg-only"></div>
<div id="contact">
<h3>CONTACT</h3>
<p>[email protected] <br>+94 76 614 3360</p>
</div>
<div class="dash lg-only"></div>
<div id="social">
<h3>SOCIAL</h3>
<div id="social-bar-contact" class="social-media contact zero-width">
<div id="facebook" class="social-media-item">
<a class="link" href="https://www.facebook.com/cyberoctane/" target="_blank">
<i class="fab fa-facebook-f"></i>
</a>
</div>
<div id="twitter" class="social-media-item">
<a class="link" href="https://twitter.com/cyberoctaneHQ" target="_blank">
<i class="fab fa-twitter"></i>
</a>
</div>
<div id="linkedin" class="social-media-item">
<a class="link" href="https://www.linkedin.com/company/cyberoctane/" target="_blank">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
<div id="behance" class="social-media-item">
<a class="link" href="https://www.behance.net/cyberoctane" target="_blank">
<i class="fab fa-behance"></i>
</a>
</div>
<div id="instagram" class="social-media-item">
<a class="link" href="https://www.instagram.com/cyberoctanehq/" target="_blank">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
</div>
<img class="plusImg tick top" src="https://cyberoctane.lk/img/svg/plus-mark.svg">
<img class="plusImg tick bottom lg-only" src="https://cyberoctane.lk/img/svg/plus-mark.svg">
</div>
</div>
<!-- Contact-Section-Tip Starts -->
<div class="section-tip">
<h4 class="yellow">07</h4>
<h4> |</h4>
<h4 class=""> CONTACT</h4>
</div>
<!-- Contact-Section-Tip Ends -->
</div>
<!-- Contact Section Ends -->
<!------------------------------------------- Footer Starts ------------------------------------------->
<div id="home-footer" class="footer">
<p>©
<script>
document.write((new Date().getFullYear() - 1) + " - " + (new Date().getFullYear()));
</script>
CYBER OCTANE. All rights reserved<br>Developed with <i class="fas fa-heart"></i> in Sri
Lanka
</p>
</div>
<!-- Footer Ends -->
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Three.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/84/three.min.js"></script>
<!-- Popper.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script id="swiper_v4.5.0_js" src="https://cyberoctane.lk/vendor/swiper/js/swiper.min.js"></script>
<script id="iziToast_v1.4.0_js" src="https://cyberoctane.lk/vendor/iziToast/iziToast.min.js"></script>
<!-- Main Scripts -->
<script id="webgl_support_detector" src="https://cyberoctane.lk/js/detector.js"></script>
<script id="three.js_animation" src="https://cyberoctane.lk/js/animation.js"></script>
<script id="main_js" src="https://cyberoctane.lk/js/themeJS.js"></script>
<script id="cookie_popup" src="https://cyberoctane.lk/js/cookie_popup.js"></script>
<script>
var serviceSwiper = new Swiper('.service-swipe', {
pagination: {
el: '.service-pagination',
clickable: true,
},
autoplay: {
delay: 4000,
},
})
var Digital = document.getElementById("DigitalExp");
var Brand = document.getElementById("BrandExp");
Digital.onclick = function () {
servicePick(this, 0)
};
Brand.onclick = function () {
servicePick(this, 1)
};
function servicePick(service, slide) {
if (service.classList.contains("yellow")) {
return;
} else {
serviceSwiper.slideTo(slide);
}
}
serviceSwiper.on('slideChange', function () {
Digital.classList.toggle("yellow");
Brand.classList.toggle("yellow");
})
var workSwiper = new Swiper('.work-swiper', {
slidesPerView: 'auto',
pagination: {
el: '.work-pagination',
clickable: true,
},
autoplay: {
delay: 5000
}
})
var clientSwiper = new Swiper('.client-swiper', {
slidesPerView: 3,
loop: true,
breakpoints: {
576: {
slidesPerView: 1,
}
},
autoplay: {
delay: 2500,
}
})
var teamSwiper = new Swiper('.team-swiper', {
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
slidesPerView: 4,
breakpoints: {
992: {
slidesPerView: 2,
},
576: {
slidesPerView: 'auto',
},
},
autoplay: {
delay: 4000
},
})
</script>
<!-- Load Facebook SDK for JavaScript -->