-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhomepage.html
1347 lines (1147 loc) · 58.7 KB
/
homepage.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">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Nexulean </title>
<meta name="description" content="">
<meta name="keywords" content="">
<!-- Favicons -->
<link href="assets/img/189521217.jpeg" rel="icon">
<link href="assets/img/189521217.jpeg" rel="apple-touch-icon">
<!-- Fonts -->
<link href="https://fonts.googleapis.com" rel="preconnect">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&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">
<!-- Main CSS File -->
<link href="assets/css/main.css" rel="stylesheet">
</head>
<body class="index-page">
<header id="header" class="header d-flex align-items-center sticky-top">
<div class="container-fluid container-xl position-relative d-flex align-items-center">
<a href="index.html" class="logo d-flex align-items-center me-auto">
<!-- Uncomment the line below if you also wish to use an image logo -->
<!-- <img src="assets/img/logo.png" alt=""> -->
<h1 class="sitename">Nexulean</h1>
</a>
<nav id="navmenu" class="navmenu">
<ul>
<li><a href="#hero" class="active">Home<br></a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<!-- <li><a href="wish.html">wish</a></li> -->
<li><a href="wish.html" target="_blank">New Year</a></li>
<li><a href="#team">Team</a></li>
<li class="dropdown"><a href="#"><span>Details</span> <i class="bi bi-chevron-down toggle-dropdown"></i></a>
<ul>
<li><a href="#">Dropdown 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Dropdown</span> <i class="bi bi-chevron-down toggle-dropdown"></i></a>
<ul>
<li><a href="#">Deep Dropdown 1</a></li>
<li><a href="#">Deep Dropdown 2</a></li>
<li><a href="#">Deep Dropdown 3</a></li>
<li><a href="#">Deep Dropdown 4</a></li>
<li><a href="#">Deep Dropdown 5</a></li>
</ul>
</li>
<li><a href="#">Dropdown 2</a></li>
<li><a href="#">Dropdown 3</a></li>
<li><a href="#">Dropdown 4</a></li>
</ul>
</li>
<li><a href="#contact">Contact</a></li>
</ul>
<i class="mobile-nav-toggle d-xl-none bi bi-list"></i>
</nav>
<a class="btn-getstarted" href="index.html#about">Get Started</a>
</div>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Card</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <!-- Google Material Icons -->
<style>
/* Global styles */
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}
/* Profile card container */
.profile-container {
position: absolute;
top: 20px;
right: 20px;
background-color: #3498db; /* Professional blue */
border-radius: 50%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
width: 50px; /* Small size */
height: 50px; /* Small size */
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
z-index: 10;
transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animations */
}
/* Hover effect */
.profile-container:hover {
transform: scale(1.1); /* Slightly enlarge the card */
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}
/* Profile image using Material Icon (Human silhouette) */
.profile-container i {
font-size: 30px; /* Icon size */
color: #fff; /* Icon color */
}
/* Profile details container */
.profile-details {
display: none;
position: absolute;
top: 100%;
right: 0;
background-color: #2c3e50; /* Darker professional background */
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
padding: 15px;
width: 200px;
text-align: center;
opacity: 0;
visibility: hidden;
transform: translateY(10px); /* Starting position below the profile card */
transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s; /* Smooth transition */
}
/* Show profile details on hover */
.profile-container:hover .profile-details {
display: block;
opacity: 1;
visibility: visible;
transform: translateY(0); /* Slide up effect */
transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition */
}
/* Profile details text styling */
.profile-details h4 {
margin: 0;
font-size: 18px;
font-weight: bold;
color: #ecf0f1; /* Light color for readability */
}
.profile-details p {
margin-top: 5px;
font-size: 14px;
color: #bdc3c7; /* Lighter text color */
}
</style>
</head>
<body>
<!-- Profile card wrapped in a link for redirection -->
<a href="/inn.html" target="_blank">
<div class="profile-container">
<i class="material-icons">account_circle</i> <!-- Material icon for a user -->
<!-- Hidden profile details, visible on hover -->
<div class="profile-details">
<h4>User Name</h4>
<p>Client</p>
</div>
</div>
</a>
</body>
</html>
</header>
<main class="main">
<!-- Hero Section -->
<section id="hero" class="hero section">
<div class="container">
<div class="row gy-4">
<div class="col-lg-6 order-2 order-lg-1 d-flex flex-column justify-content-center">
<h1>Grow your business with Nexulean</h1>
<p>Nexulean empowers businesses to thrive in the digital age by offering robust cybersecurity solutions and expert guidance. Safeguard your digital assets, build trust with your clients, and achieve uninterrupted growth with our cutting-edge technologies and proactive approach to cyber defense.
</p>
<div class="d-flex">
<a href="#about" class="btn-get-started">Get Started</a>
<a href="https://www.youtube.com/@Python.py_143" class="glightbox btn-watch-video d-flex align-items-center"></a>
</div>
</div>
<div class="col-lg-6 order-1 order-lg-2 hero-img">
<img src="assets/img/hero-img.png" class="img-fluid animated" alt="">
</div>
</div>
</div>
</section><!-- /Hero Section -->
<!-- Clients Section
<section id="clients" class="clients section light-background">
<div class="container" data-aos="fade-up">
<div class="row gy-4">
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-1.png" class="img-fluid" alt="">
</div><!-- End Client Item --
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-2.png" class="img-fluid" alt="">
</div><!-- End Client Item --
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-3.png" class="img-fluid" alt="">
</div><!-- End Client Item --
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-4.png" class="img-fluid" alt="">
</div><!-- End Client Item --
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-5.png" class="img-fluid" alt="">
</div><!-- End Client Item --
<div class="col-xl-2 col-md-3 col-6 client-logo">
<img src="assets/img/clients/client-6.png" class="img-fluid" alt="">
</div><!-- End Client Item --
</div>
</div>
</section><!-- /Clients Section -->
<!-- About Section -->
<section id="about" class="about section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>About Us</h2>
<p>At Nexulen, we are dedicated to protecting the digital world through innovative cybersecurity solutions. Our mission is to combat cyber threats, empower individuals and organizations, and foster a safer, more resilient online environment</p>
</div><!-- End Section Title -->
<div class="container">
<div class="row gy-5">
<div class="content col-xl-5 d-flex flex-column" data-aos="fade-up" data-aos-delay="100">
<h3>Securing the Digital Future</h3>
<p>
Nexulen is a leading cybersecurity firm committed to safeguarding the digital realm for individuals, businesses, and governments. By leveraging advanced technology, ethical hacking practices, and expert insights, we provide comprehensive solutions to counter cyber threats. Our mission extends beyond protection—we strive to empower our clients with the knowledge and tools needed to secure their online presence, foster trust, and thrive in a connected world. With Nexulen, you can confidently embrace the digital future, knowing your assets are protected by a dedicated partner in cybersecurity.
</p>
<a href="#" class="about-btn align-self-center align-self-xl-start"><span>About us</span> <i class="bi bi-chevron-right"></i></a>
</div>
<div class="col-xl-7" data-aos="fade-up" data-aos-delay="200">
<div class="row gy-4">
<div class="col-md-6 icon-box position-relative">
<i class="bi bi-briefcase"></i>
<h4><a href="" class="stretched-link">Your Security, Anywhere You Go</a></h4>
<p>Nexulean safeguards your digital assets, ensuring you stay secure in an ever-changing world.</p>
</div><!-- Icon-Box -->
<div class="col-md-6 icon-box position-relative">
<i class="bi bi-gem"></i>
<h4><a href="" class="stretched-link">Security That Shines Like a Diamond</a></h4>
<p>Just as a diamond is unyielding and precious, we provide unwavering protection for your digital assets. Our solutions are designed to reflect precision and excellence, ensuring your security sparkles in the ever-evolving digital landscape.</p>
</div><!-- Icon-Box -->
<div class="col-md-6 icon-box position-relative">
<i class="bi bi-broadcast"></i>
<h4><a href="" class="stretched-link">Networking</a></h4>
<p>Networking is the backbone of modern communication, enabling devices, systems, and people to share information seamlessly. It forms the foundation of the digital world, powering everything from personal interactions to global business operations. With robust networking, organizations can enhance collaboration, improve efficiency, and unlock new opportunities. Whether through wired or wireless systems, networking ensures that data flows securely and reliably, connecting the world like never before.</p>
</div><!-- Icon-Box -->
<div class="col-md-6 icon-box position-relative">
<i class="bi bi-easel"></i>
<h4><a href="" class="stretched-link">Monitoring </a></h4>
<p>Monitoring is the proactive process of observing systems, networks, and applications to ensure they operate efficiently, securely, and without interruption. By continuously analyzing performance and detecting anomalies, monitoring helps identify potential issues before they become critical. It plays a vital role in maintaining uptime, optimizing resources, and enhancing cybersecurity. Effective monitoring empowers organizations to stay informed, react swiftly to changes, and maintain control over their digital environment.</p>
</div><!-- Icon-Box -->
</div>
</div>
</div>
</div>
</section><!-- /About Section -->
<!-- Stats Section -->
<section id="stats" class="stats section">
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row gy-4 align-items-center">
<div class="col-lg-5">
<img src="assets/img/stats-img.svg" alt="" class="img-fluid">
</div>
<div class="col-lg-7">
<div class="row gy-4">
<div class="col-lg-6">
<div class="stats-item d-flex">
<i class="bi bi-emoji-smile flex-shrink-0"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="1" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Happy Clients</strong> <span></span></p>
</div>
</div>
</div><!-- End Stats Item -->
<div class="col-lg-6">
<div class="stats-item d-flex">
<i class="bi bi-journal-richtext flex-shrink-0"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="21" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Projects</strong> <span></span></p>
</div>
</div>
</div><!-- End Stats Item -->
<div class="col-lg-6">
<div class="stats-item d-flex">
<i class="bi bi-headset flex-shrink-0"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="1453" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Hours Of Support</strong> <span></span></p>
</div>
</div>
</div><!-- End Stats Item -->
<div class="col-lg-6">
<div class="stats-item d-flex">
<i class="bi bi-people flex-shrink-0"></i>
<div>
<span data-purecounter-start="0" data-purecounter-end="2" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Hard Workers</strong> <span></span></p>
</div>
</div>
</div><!-- End Stats Item -->
</div>
</div>
</div>
</div>
</section><!-- /Stats Section -->
<!-- Services Section -->
<section id="services" class="services section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Services</h2>
<p>Nexulen provides expert cybersecurity services to safeguard your digital assets and ensure seamless business operations.</p>
</div><!-- End Section Title -->
<div class="container">
<div class="row gy-4">
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="100">
<div class="service-item position-relative">
<i class="bi bi-activity"></i>
<h4><a href="services.html" class="stretched-link">Risk Assessment </a></h4>
<p> Identifying vulnerabilities and providing strategies to reduce risks to your digital infrastructure.
</p>
</div>
</div><!-- End Service Item -->
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="200">
<div class="service-item position-relative">
<i class="bi bi-bounding-box-circles"></i>
<h4><a href="services.html" class="stretched-link">Threat Monitoring</a></h4>
<p>Continuously monitoring systems to detect and respond to potential security risks.</p>
</div>
</div><!-- End Service Item -->
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="300">
<div class="service-item position-relative">
<i class="bi bi-calendar4-week"></i>
<h4><a href="services.html" class="stretched-link">Incident Response</a></h4>
<p>Rapidly addressing and mitigating the impact of security breaches and cyberattacks.</p>
</div>
</div><!-- End Service Item -->
<div class="col-xl-3 col-md-6 d-flex" data-aos="fade-up" data-aos-delay="400">
<div class="service-item position-relative">
<i class="bi bi-broadcast"></i>
<h4><a href="services.html" class="stretched-link">Network Security</a></h4>
<p>Protecting your networks from cyber threats and unauthorized access.</p>
</div>
</div><!-- End Service Item -->
</div>
</div>
</section><!-- /Services Section -->
<!-- Alt Services Section -->
<section id="alt-services" class="alt-services section">
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row gy-4">
<div class="col-lg-6" data-aos="zoom-in" data-aos-delay="200">
<div class="service-item position-relative">
<div class="img">
<img src="assets/img/services-1.jpg" class="img-fluid" alt="">
</div>
<div class="details">
<a href="services.html" class="stretched-link">
<h3>Threat Monitoring</h3>
</a>
<p>Continuous monitoring is essential to stay ahead of evolving cyber threats. By tracking systems, networks, and data flows in real-time, threat monitoring identifies vulnerabilities and unusual activities, ensuring swift action to prevent potential security breaches. It’s the first line of defense in a proactive cybersecurity strategy.
</p>
</div>
</div>
</div><!-- End Service Item -->
<div class="col-lg-6" data-aos="zoom-in" data-aos-delay="300">
<div class="service-item position-relative">
<div class="img">
<img src="assets/img/services-2.jpg" class="img-fluid" alt="">
</div>
<div class="details">
<a href="services.html" class="stretched-link">
<h3>Risk Assessment</h3>
</a>
<p>Understanding vulnerabilities is key to a robust security strategy. Risk assessment identifies potential threats and evaluates their impact on your systems, allowing you to implement targeted measures. By prioritizing risks and addressing gaps, it strengthens your organization’s defenses against cyberattacks.</p>
</div>
</div>
</div><!-- End Service Item -->
<div class="col-lg-6" data-aos="zoom-in" data-aos-delay="400">
<div class="service-item position-relative">
<div class="img">
<img src="assets/img/services-3.jpg" class="img-fluid" alt="">
</div>
<div class="details">
<a href="services.html" class="stretched-link">
<h3>Capturing Security: Where Vision Meets Protection</h3>
</a>
<p>Photographic security combines advanced imaging technology with robust protection measures to safeguard assets and environments. It ensures accurate surveillance and monitoring, enhancing safety and security in any setting.</p>
</div>
</div>
</div><!-- End Service Item -->
<div class="col-lg-6" data-aos="zoom-in" data-aos-delay="500">
<div class="service-item position-relative">
<div class="img">
<img src="assets/img/services-4.jpg" class="img-fluid" alt="">
</div>
<div class="details">
<a href="services.html" class="stretched-link">
<h3>Incident Response</h3>
</a>
<p>When a cyberattack occurs, rapid action is crucial to minimize its impact. Incident response involves detecting, analyzing, and mitigating threats promptly to reduce damage and downtime. A well-executed response plan ensures your organization recovers quickly and learns from each incident to enhance future resilience.</p>
<a href="services.html" class="stretched-link"></a>
</div>
</div>
</div><!-- End Service Item -->
</div>
</div>
</section><!-- /Alt Services Section -->
<!-- Features Section -->
<section id="features" class="features section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Features</h2>
<p>Nexulen is dedicated to empowering individuals and organizations with innovative cybersecurity solutions to create a safer digital future.</p>
</div><!-- End Section Title -->
<div class="container">
<div class="row gy-4">
<div class="col-lg-3 col-md-4" data-aos="fade-up" data-aos-delay="100">
<div class="features-item">
<i class="bi bi-shield-lock" style="color: #ffbb2c;"></i>
<h3><a href="services.html" class="stretched-link">Advanced Threat Detection</a></h3>
</div>
</div><!-- End Feature Item -->
<div class="col-lg-3 col-md-4" data-aos="fade-up" data-aos-delay="200">
<div class="features-item">
<i class="bi bi-graph-up" style="color: #5578ff;"></i>
<h3><a href="services.html" class="stretched-link">Risk Assessment</a></h3>
</div>
</div><!-- End Feature Item -->
<div class="col-lg-3 col-md-4" data-aos="fade-up" data-aos-delay="300">
<div class="features-item">
<i class="bi bi-tools" style="color: #e80368;"></i>
<h3><a href="services.html" class="stretched-link">Incident Response</a></h3>
</div>
</div><!-- End Feature Item -->
<div class="col-lg-3 col-md-4" data-aos="fade-up" data-aos-delay="400">
<div class="features-item">
<i class="bi bi-cloud-check" style="color: #e361ff;"></i>
<h3><a href="services.html" class="stretched-link">Cloud Security</a></h3>
</div>
</div><!-- End Feature Item -->
<div class="col-lg-3 col-md-4" data-aos="fade-up" data-aos-delay="500">
<div class="features-item">
<i class="bi bi-bug" style="color: #47aeff;"></i>
<h3><a href="services.html" class="stretched-link">Vulnerability Assessments</a></h3>
</div>
</div><!-- End Feature Item -->
<div class="col-lg-3 col-md-4" data-aos="fade-up" data-aos-delay="600">
<div class="features-item">
<i class="bi bi-file-lock" style="color: #ffa76e;"></i>
<h3><a href="services.html" class="stretched-link">Data Encryption</a></h3>
</div>
</div><!-- End Feature Item -->
<div class="col-lg-3 col-md-4" data-aos="fade-up" data-aos-delay="700">
<div class="features-item">
<i class="bi bi-chat-square-text" style="color: #11dbcf;"></i>
<h3><a href="services.html" class="stretched-link">Security Awareness Training</a></h3>
</div>
</div><!-- End Feature Item -->
<div class="col-lg-3 col-md-4" data-aos="fade-up" data-aos-delay="800">
<div class="features-item">
<i class="bi bi-person-check" style="color: #4233ff;"></i>
<h3><a href="services.html" class="stretched-link">Compliance Assistance</a></h3>
</div>
</div><!-- End Feature Item -->
<div class="col-lg-3 col-md-4" data-aos="fade-up" data-aos-delay="900">
<div class="features-item">
<i class="bi bi-shield-check" style="color: #b2904f;"></i>
<h3><a href="services.html" class="stretched-link">Firewall Management</a></h3>
</div>
</div><!-- End Feature Item -->
<div class="col-lg-3 col-md-4" data-aos="fade-up" data-aos-delay="1000">
<div class="features-item">
<i class="bi bi-bullseye" style="color: #b20969;"></i>
<h3><a href="services.html" class="stretched-link">Penetration Testing</a></h3>
</div>
</div><!-- End Feature Item -->
<div class="col-lg-3 col-md-4" data-aos="fade-up" data-aos-delay="1100">
<div class="features-item">
<i class="bi bi-shield-plus" style="color: #ff5828;"></i>
<h3><a href="services.html" class="stretched-link">Customized Security</a></h3>
</div>
</div><!-- End Feature Item -->
<div class="col-lg-3 col-md-4" data-aos="fade-up" data-aos-delay="1200">
<div class="features-item">
<i class="bi bi-lightning-charge" style="color: #29cc61;"></i>
<h3><a href="services.html" class="stretched-link">Real-Time Monitoring</a></h3>
</div>
</div><!-- End Feature Item -->
</div><!-- End Row -->
</div><!-- End Container -->
</div>
</div>
</section><!-- /Features Section -->
<!-- Testimonials Section -->
<section id="testimonials" class="testimonials section light-background">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Insights from Cybersecurity Experts</h2>
<p>Our experts share their knowledge and experiences to help build a safer digital world.</p>
</div><!-- End Section Title -->
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="swiper init-swiper">
<script type="application/json" class="swiper-config">
{
"loop": true,
"speed": 600,
"autoplay": {
"delay": 5000
},
"slidesPerView": "auto",
"pagination": {
"el": ".swiper-pagination",
"type": "bullets",
"clickable": true
},
"breakpoints": {
"320": {
"slidesPerView": 1,
"spaceBetween": 40
},
"1200": {
"slidesPerView": 2,
"spaceBetween": 20
}
}
}
</script>
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/Untitled design.jpg" class="testimonial-img" alt="">
<h3>ShadowFox</h3>
<h4>Ethical Hacker</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
<span>"Every breach begins with a single overlooked vulnerability."</span>
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/Untitled design.jpg" class="testimonial-img" alt="">
<h3>CyberPhantom</h3>
<h4>Penetration Tester</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
<span>"Breaking in is easy; building secure defenses takes skill."</span>
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/Untitled design.jpg" class="testimonial-img" alt="">
<h3>NullByte</h3>
<h4>Malware Analyst</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
<span>"The most dangerous code is the one you never see coming."</span>
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/Untitled design.jpg" class="testimonial-img" alt="">
<h3>ByteHunter</h3>
<h4>Cybersecurity Consultant</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
<span>"The strongest firewalls are built with human awareness and vigilance."</span>
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item">
<img src="assets/img/testimonials/Untitled design.jpg" class="testimonial-img" alt="">
<h3>ZeroTrace</h3>
<h4>Incident Responder</h4>
<div class="stars">
<i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i><i class="bi bi-star-fill"></i>
</div>
<p>
<i class="bi bi-quote quote-icon-left"></i>
<span>"A successful response isn't about speed—it's about precision."</span>
<i class="bi bi-quote quote-icon-right"></i>
</p>
</div>
</div>
</div><!-- End testimonial item -->
</div>
<div class="swiper-pagination"></div>
</section><!-- /Testimonials Section -->
<!-- Team Section -->
<section id="team" class="team section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Best Employee</h2>
<p>We are a passionate team dedicated to crafting innovative solutions and driving success through collaboration, creativity, and expertise.</p>
</div><!-- End Section Title -->
<div class="container">
<div class="row gy-4">
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="100">
<div class="team-member">
<div class="member-img">
<img src="assets/img/team/team.webp" class="img-fluid" alt="">
<div class="social">
<a href="https://github.com/Stalin-143" class="github-button" target="_blank"><i class = "bi bi-github"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href="https://www.instagram.com/stali.n_"><i class="bi bi-instagram"></i></a>
<a href="https://www.linkedin.com/in/stalin-s-a310882a0/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Stalin</h4>
<span>Founder & CEO</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="200">
<div class="team-member">
<div class="member-img">
<img src="assets/img/team/team.webp" class="img-fluid" alt="">
<div class="social">
<a href="https://github.com/RohitSurya2809" class="github-button" target="_blank"><i class = "bi bi-github"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Rohit Surya A T</h4>
<span>Chief Executive Officer</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="300">
<div class="team-member">
<div class="member-img">
<img src="assets/img/team/team.webp" class="img-fluid" alt="">
<div class="social">
<a href="https://github.com/reginaldalfret" class="github-button" target="_blank"><i class = "bi bi-github"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Reginald Alfret</h4>
<span>Chief Executive Officer</span>
</div>
</div>
</div><!-- End Team Member -->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="team-member">
<div class="member-img">
<img src="assets/img/team/team.webp" class="img-fluid" alt="">
<div class="social">
<a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Stana</h4>
<span>Security Officer</span>
</div>
</div>
</div><!-- End Team Member -->
</div>
</div>
</section><!-- /Team Section -->
<!-- Pricing Section -->
<section id="pricing" class="pricing section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Pricing</h2>
<p>Unlock More, Pay Less – Choose the Plan That Fits You Best!</p>
</div><!-- End Section Title -->
<div class="container">
<div class="row gy-4">
<!-- Free Plan -->
<div class="col-lg-4" data-aos="zoom-in" data-aos-delay="100">
<div class="pricing-item">
<h3>Free Plan</h3>
<h4><sup>$</sup>0<span> / month</span></h4>
<ul>
<li><i class="bi bi-check"></i> <span>Limited functionality or restricted access to core services.</span></li>
<li><i class="bi bi-check"></i> <span>Basic support (e.g., email only).</span></li>
<li><i class="bi bi-check"></i> <span>Limited usage or credits per month.</span></li>
<li class="na"><i class="bi bi-x"></i> <span>Personalized consultations or services</span></li>
<li class="na"><i class="bi bi-x"></i> <span>Access to special offers or events</span></li>
</ul>
<a href="payment_information.html" class="buy-btn">Buy Now</a>
</div>
</div><!-- End Free Plan -->
<!-- Silver Plan -->
<div class="col-lg-4" data-aos="zoom-in" data-aos-delay="200">
<div class="pricing-item featured">
<h3>Silver Plan</h3>
<h4><sup>$</sup>9<span> / month</span></h4>
<ul>
<li><i class="bi bi-check"></i> <span>Everything in Free Plan, plus</span></li>
<li><i class="bi bi-check"></i> <span>Access to more advanced features.</span></li>
<li><i class="bi bi-check"></i> <span>Increased usage limits or credits.</span></li>
<li><i class="bi bi-check"></i> <span>Priority support (faster response times).</span></li>
<li><i class="bi bi-check"></i> <span>Additional tools or integrations.</span></li>
</ul>
<a href="payment_information.html" class="buy-btn">Buy Now</a>
</div>
</div><!-- End Silver Plan -->
<!-- Premium Experience Plan -->
<div class="col-lg-4" data-aos="zoom-in" data-aos-delay="300">
<div class="pricing-item">
<h3>Premium Experience</h3>
<h4><sup>$</sup>19<span> / month</span></h4>
<ul>
<li><i class="bi bi-check"></i> <span>Everything in Silver Plan, plus:</span></li>
<li><i class="bi bi-check"></i> <span>Unlimited usage or credits.</span></li>
<li><i class="bi bi-check"></i> <span>Exclusive features or premium tools.</span></li>
<li><i class="bi bi-check"></i> <span>24/7 dedicated support.</span></li>
<li><i class="bi bi-check"></i> <span>Personalized consultations or services.</span></li>
<li><i class="bi bi-check"></i> <span>Access to special offers or events.</span></li>
</ul>
<a href="payment_information.html" class="buy-btn">Buy Now</a>
</div>
</div><!-- End Premium Experience Plan -->
</div><!-- End row -->
</div><!-- End container -->
</section><!-- End Pricing Section -->
<!-- Faq Section -->
<section id="faq" class="faq section light-background">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Frequently Asked Questions</h2>
<p>Your Go-To Guide for Answers – Explore Our Frequently Asked Questions to Find Quick, Clear, and Helpful Solutions!</p>
</div><!-- End Section Title -->
<div class="container">
<div class="row faq-item" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-5 d-flex">
<i class="bi bi-question-circle"></i>
<h4> What services does Nexulen offer?</h4>
</div>
<div class="col-lg-7">
<p>
Nexulen specializes in cybersecurity solutions, including threat detection and prevention, incident response, vulnerability assessments, penetration testing, and cybersecurity training for individuals and organizations.
</p>
</div>
</div><!-- End F.A.Q Item-->
<div class="row faq-item" data-aos="fade-up" data-aos-delay="200">
<div class="col-lg-5 d-flex">
<i class="bi bi-question-circle"></i>
<h4>How does Nexulen ensure data security for its clients?</h4>
</div>
<div class="col-lg-7">
<p>
Nexulen leverages advanced encryption, multi-factor authentication, continuous monitoring, and real-time threat intelligence to safeguard client data and systems. Our team of experts also conducts regular security audits to ensure optimal protection.
</p>
</div>
</div><!-- End F.A.Q Item-->
<div class="row faq-item" data-aos="fade-up" data-aos-delay="300">
<div class="col-lg-5 d-flex">
<i class="bi bi-question-circle"></i>
<h4>Who can benefit from Nexulen’s services?</h4>
</div>
<div class="col-lg-7">
<p>
Nexulen's services are ideal for individuals, small businesses, enterprises, and government organizations looking to strengthen their digital security and protect their assets from cyber threats.
</p>
</div>
</div><!-- End F.A.Q Item-->
<div class="row faq-item" data-aos="fade-up" data-aos-delay="400">
<div class="col-lg-5 d-flex">
<i class="bi bi-question-circle"></i>
<h4>What is the process for requesting a cybersecurity consultation?</h4>
</div>
<div class="col-lg-7">
<p>
To request a consultation, visit our website and fill out the consultation form. Alternatively, you can contact us via email or phone, and our team will get in touch to schedule a session tailored to your needs.
</p>
</div>
</div><!-- End F.A.Q Item-->
<div class="row faq-item" data-aos="fade-up" data-aos-delay="500">
<div class="col-lg-5 d-flex">
<i class="bi bi-question-circle"></i>
<h4>How does Nexulen stay ahead of emerging cyber threats?</h4>
</div>
<div class="col-lg-7">
<p>
Nexulen stays ahead of emerging cyber threats by continuously monitoring the digital landscape, leveraging cutting-edge threat intelligence, and participating in research and collaboration with other industry experts. We use advanced technologies, such as machine learning and predictive analytics, to identify potential risks and develop proactive defense strategies. Additionally, our team of experienced security professionals stays updated through continuous training and knowledge-sharing to address the latest threats effectively.
</p>
</div>
</div><!-- End F.A.Q Item-->
</div>
</section><!-- /Faq Section -->
<!-- Contact Section -->
<section id="contact" class="contact section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Contact</h2>
<p>Get in touch with Nexulen for expert cybersecurity solutions and personalized support tailored to your needs!</p>
</div><!-- End Section Title -->
<div class="container position-relative" data-aos="fade-up" data-aos-delay="100">
<div class="row gy-4">
<div class="col-lg-5">
<div class="info-item d-flex" data-aos="fade-up" data-aos-delay="200">
<i class="bi bi-geo-alt flex-shrink-0"></i>
<div>
<h3>Address</h3>
<p>Chennai</p>
</div>
</div><!-- End Info Item -->
<div class="info-item d-flex" data-aos="fade-up" data-aos-delay="300">
<i class="bi bi-telephone flex-shrink-0"></i>
<div>
<h3>Call Us</h3>
<p>+91 9655293238</p>
</div>