-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNexus-Tech.html
More file actions
874 lines (770 loc) · 29.4 KB
/
Copy pathNexus-Tech.html
File metadata and controls
874 lines (770 loc) · 29.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NexusTech - Innovative Technology Solutions</title>
<style>
/* Global Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #f8f9fa;
color: #333;
line-height: 1.6;
}
.container {
width: 85%;
max-width: 1200px;
margin: 0 auto;
}
/* Header */
header {
background-color: #0a192f;
color: white;
padding: 1.5rem 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.8rem;
font-weight: 700;
color: #64ffda;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-left: 2rem;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
nav ul li a:hover {
color: #64ffda;
}
.cta-button {
background-color: #64ffda;
color: #0a192f;
padding: 0.8rem 1.5rem;
border-radius: 4px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
}
.cta-button:hover {
background-color: #4cd2b3;
transform: translateY(-2px);
}
/* Hero Section */
.hero {
padding: 150px 0 100px;
background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
color: white;
}
.hero-content {
display: flex;
align-items: center;
justify-content: space-between;
}
.hero-text {
width: 50%;
}
.hero-text h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
line-height: 1.2;
}
.hero-text p {
font-size: 1.2rem;
margin-bottom: 2rem;
color: #ccd6f6;
}
.highlight {
color: #64ffda;
}
.hero-image {
width: 45%;
}
.hero-image img {
width: 100%;
border-radius: 8px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
/* Services Section */
.services {
padding: 100px 0;
background-color: white;
}
.section-title {
text-align: center;
margin-bottom: 3rem;
}
.section-title h2 {
font-size: 2.5rem;
color: #0a192f;
margin-bottom: 1rem;
}
.section-title p {
color: #666;
font-size: 1.1rem;
max-width: 700px;
margin: 0 auto;
}
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}
.service-card {
background-color: #f8f9fa;
border-radius: 8px;
padding: 2rem;
transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service-icon {
font-size: 3rem;
color: #64ffda;
margin-bottom: 1.5rem;
}
.service-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #0a192f;
}
.service-card p {
color: #666;
margin-bottom: 1.5rem;
}
/* About Section */
.about {
padding: 100px 0;
background-color: #f8f9fa;
}
.about-content {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 3rem;
}
.about-text {
width: 50%;
}
.about-text h2 {
font-size: 2.5rem;
color: #0a192f;
margin-bottom: 1.5rem;
}
.about-text p {
margin-bottom: 1.5rem;
color: #666;
}
.about-stats {
display: flex;
margin-top: 2rem;
}
.stat {
margin-right: 3rem;
}
.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: #0a192f;
}
.stat-label {
color: #666;
font-size: 1rem;
}
.about-image {
width: 45%;
}
.about-image img {
width: 100%;
border-radius: 8px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
/* Testimonials */
.testimonials {
padding: 100px 0;
background-color: #0a192f;
color: white;
}
.testimonials .section-title h2 {
color: white;
}
.testimonials .section-title p {
color: #ccd6f6;
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}
.testimonial-card {
background-color: #112240;
padding: 2rem;
border-radius: 8px;
position: relative;
}
.testimonial-text {
font-style: italic;
margin-bottom: 1.5rem;
color: #ccd6f6;
}
.testimonial-author {
display: flex;
align-items: center;
}
.author-image {
width: 50px;
height: 50px;
border-radius: 50%;
overflow: hidden;
margin-right: 1rem;
}
.author-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.author-info h4 {
color: white;
margin-bottom: 0.2rem;
}
.author-info p {
color: #8892b0;
font-size: 0.9rem;
}
/* Contact Section */
.contact {
padding: 100px 0;
background-color: white;
}
.contact-content {
display: flex;
margin-top: 3rem;
}
.contact-info {
width: 50%;
padding-right: 3rem;
}
.contact-info h2 {
font-size: 2.5rem;
color: #0a192f;
margin-bottom: 1.5rem;
}
.contact-info p {
margin-bottom: 2rem;
color: #666;
}
.contact-details {
margin-bottom: 2rem;
}
.contact-item {
display: flex;
align-items: center;
margin-bottom: 1.5rem;
}
.contact-icon {
color: #64ffda;
font-size: 1.5rem;
margin-right: 1rem;
}
.contact-text h3 {
color: #0a192f;
margin-bottom: 0.2rem;
}
.contact-text p {
color: #666;
}
.contact-form {
width: 50%;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
color: #0a192f;
font-weight: 500;
}
.form-control {
width: 100%;
padding: 0.8rem;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 1rem;
}
textarea.form-control {
min-height: 150px;
resize: vertical;
}
.submit-btn {
background-color: #64ffda;
color: #0a192f;
border: none;
padding: 0.8rem 2rem;
font-size: 1rem;
font-weight: 600;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s;
}
.submit-btn:hover {
background-color: #4cd2b3;
transform: translateY(-2px);
}
/* Footer */
footer {
background-color: #0a192f;
color: #ccd6f6;
padding: 4rem 0 2rem;
}
.footer-content {
display: flex;
justify-content: space-between;
margin-bottom: 3rem;
}
.footer-logo {
width: 30%;
}
.footer-logo .logo {
font-size: 2rem;
margin-bottom: 1rem;
display: block;
}
.footer-about p {
margin-bottom: 1.5rem;
color: #8892b0;
}
.social-links {
display: flex;
}
.social-links a {
color: white;
margin-right: 1rem;
font-size: 1.5rem;
transition: color 0.3s;
}
.social-links a:hover {
color: #64ffda;
}
.footer-links {
width: 20%;
}
.footer-links h3 {
color: white;
margin-bottom: 1.5rem;
font-size: 1.3rem;
}
.footer-links ul {
list-style: none;
}
.footer-links ul li {
margin-bottom: 0.8rem;
}
.footer-links ul li a {
color: #8892b0;
text-decoration: none;
transition: color 0.3s;
}
.footer-links ul li a:hover {
color: #64ffda;
}
.footer-contact {
width: 30%;
}
.footer-contact h3 {
color: white;
margin-bottom: 1.5rem;
font-size: 1.3rem;
}
.footer-contact p {
display: flex;
align-items: center;
margin-bottom: 0.8rem;
color: #8892b0;
}
.footer-contact i {
color: #64ffda;
margin-right: 0.8rem;
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #1d3557;
color: #8892b0;
}
/* Responsive Design */
@media (max-width: 992px) {
.hero-content,
.about-content,
.contact-content {
flex-direction: column;
}
.hero-text,
.hero-image,
.about-text,
.about-image,
.contact-info,
.contact-form {
width: 100%;
}
.hero-text {
margin-bottom: 3rem;
}
.hero-text h1 {
font-size: 2.8rem;
}
.services-grid {
grid-template-columns: repeat(2, 1fr);
}
.footer-content {
flex-direction: column;
}
.footer-logo,
.footer-links,
.footer-contact {
width: 100%;
margin-bottom: 2rem;
}
}
@media (max-width: 768px) {
.services-grid {
grid-template-columns: 1fr;
}
.testimonials-grid {
grid-template-columns: 1fr;
}
nav ul {
display: none;
}
.hero-text h1 {
font-size: 2.5rem;
}
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<!-- Header -->
<header>
<div class="container header-content">
<a href="#" class="logo">NexusTech</a>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<a href="#contact" class="cta-button">Get Started</a>
</div>
</header>
<!-- Hero Section -->
<section class="hero" id="home">
<div class="container hero-content">
<div class="hero-text">
<h1>Transforming <span class="highlight">Business</span> Through Technology</h1>
<p>We create innovative digital solutions that drive growth, efficiency, and competitive advantage for forward-thinking organizations.</p>
<a href="#contact" class="cta-button">Request a Consultation</a>
</div>
<div class="hero-image">
<img src="https://images.unsplash.com/photo-1581091226033-d5c48150dbaa?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80" alt="Technology solutions">
</div>
</div>
</section>
<!-- Services Section -->
<section class="services" id="services">
<div class="container">
<div class="section-title">
<h2>Our Services</h2>
<p>We offer comprehensive technology solutions tailored to meet the unique challenges of modern businesses.</p>
</div>
<div class="services-grid">
<div class="service-card">
<div class="service-icon">
<i class="fas fa-code"></i>
</div>
<h3>Custom Software Development</h3>
<p>Custom-built applications designed to streamline your operations and solve specific business challenges.</p>
<a href="#" class="cta-button">Learn More</a>
</div>
<div class="service-card">
<div class="service-icon">
<i class="fas fa-mobile-alt"></i>
</div>
<h3>Mobile App Development</h3>
<p>Native and cross-platform mobile applications that engage users and extend your business reach.</p>
<a href="#" class="cta-button">Learn More</a>
</div>
<div class="service-card">
<div class="service-icon">
<i class="fas fa-cloud"></i>
</div>
<h3>Cloud Solutions</h3>
<p>Scalable cloud infrastructure and migration services to enhance performance and reduce costs.</p>
<a href="#" class="cta-button">Learn More</a>
</div>
<div class="service-card">
<div class="service-icon">
<i class="fas fa-shield-alt"></i>
</div>
<h3>Cybersecurity</h3>
<p>Comprehensive security solutions to protect your data, systems, and reputation from evolving threats.</p>
<a href="#" class="cta-button">Learn More</a>
</div>
<div class="service-card">
<div class="service-icon">
<i class="fas fa-chart-line"></i>
</div>
<h3>Data Analytics</h3>
<p>Transform your data into actionable insights with advanced analytics and visualization tools.</p>
<a href="#" class="cta-button">Learn More</a>
</div>
<div class="service-card">
<div class="service-icon">
<i class="fas fa-robot"></i>
</div>
<h3>AI & Machine Learning</h3>
<p>Intelligent systems that learn from data to automate processes and enhance decision-making.</p>
<a href="#" class="cta-button">Learn More</a>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section class="about" id="about">
<div class="container">
<div class="section-title">
<h2>About NexusTech</h2>
<p>Learn more about our company, mission, and the team driving innovation forward.</p>
</div>
<div class="about-content">
<div class="about-text">
<h2>Innovating the Future of Technology</h2>
<p>Founded in 2010, NexusTech has been at the forefront of technological innovation, helping businesses across industries leverage digital transformation to achieve their goals.</p>
<p>Our team of experts combines deep technical knowledge with industry insights to deliver solutions that not only meet today's challenges but also anticipate future needs.</p>
<p>We believe in building long-term partnerships with our clients, focusing on sustainable growth and continuous improvement.</p>
<div class="about-stats">
<div class="stat">
<div class="stat-number">10+</div>
<div class="stat-label">Years Experience</div>
</div>
<div class="stat">
<div class="stat-number">250+</div>
<div class="stat-label">Projects Completed</div>
</div>
<div class="stat">
<div class="stat-number">50+</div>
<div class="stat-label">Happy Clients</div>
</div>
</div>
</div>
<div class="about-image">
<img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80" alt="Our team">
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="testimonials" id="testimonials">
<div class="container">
<div class="section-title">
<h2>Client Testimonials</h2>
<p>Don't just take our word for it. Hear what our clients have to say about working with us.</p>
</div>
<div class="testimonials-grid">
<div class="testimonial-card">
<p class="testimonial-text">"NexusTech transformed our outdated systems into a modern, efficient platform. Their team was professional, responsive, and delivered beyond our expectations. Our operational efficiency has improved by 40% since implementation."</p>
<div class="testimonial-author">
<div class="author-image">
<img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah Johnson">
</div>
<div class="author-info">
<h4>Sarah Johnson</h4>
<p>CTO, InnovateCorp</p>
</div>
</div>
</div>
<div class="testimonial-card">
<p class="testimonial-text">"We partnered with NexusTech for our mobile app development, and the results have been outstanding. User engagement has increased by 150%, and the app has received excellent reviews. Their attention to detail and user experience expertise is impressive."</p>
<div class="testimonial-author">
<div class="author-image">
<img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Michael Chen">
</div>
<div class="author-info">
<h4>Michael Chen</h4>
<p>CEO, MobileFirst Inc.</p>
</div>
</div>
</div>
<div class="testimonial-card">
<p class="testimonial-text">"The cybersecurity solutions implemented by NexusTech gave us peace of mind we didn't know we were missing. Their proactive approach identified vulnerabilities we weren't aware of, and their ongoing monitoring has prevented several potential breaches."</p>
<div class="testimonial-author">
<div class="author-image">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emily Rodriguez">
</div>
<div class="author-info">
<h4>Emily Rodriguez</h4>
<p>Director of IT, SecureBank</p>
</div>
</div>
</div>
<div class="testimonial-card">
<p class="testimonial-text">"As a startup, we needed a technology partner who could scale with us. NexusTech not only built our initial platform but has continued to support our growth. Their team feels like an extension of our own company."</p>
<div class="testimonial-author">
<div class="author-image">
<img src="https://randomuser.me/api/portraits/men/22.jpg" alt="David Kim">
</div>
<div class="author-info">
<h4>David Kim</h4>
<p>Founder, NextGen Solutions</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact" id="contact">
<div class="container">
<div class="section-title">
<h2>Get In Touch</h2>
<p>Have a project in mind? We'd love to hear from you. Contact us to discuss your technology needs.</p>
</div>
<div class="contact-content">
<div class="contact-info">
<h2>Let's Start a Conversation</h2>
<p>Reach out to us with your project requirements, and one of our technology consultants will get back to you within 24 hours.</p>
<div class="contact-details">
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="contact-text">
<h3>Our Location</h3>
<p>123 Tech Avenue, San Francisco, CA 94107</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-phone"></i>
</div>
<div class="contact-text">
<h3>Call Us</h3>
<p>+1 (555) 123-4567</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-envelope"></i>
</div>
<div class="contact-text">
<h3>Email Us</h3>
<p>info@nexus-tech.com</p>
</div>
</div>
</div>
</div>
<div class="contact-form">
<form>
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" id="name" class="form-control" required>
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" class="form-control" required>
</div>
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" class="form-control">
</div>
<div class="form-group">
<label for="service">Service Interested In</label>
<select id="service" class="form-control">
<option value="">Select a service</option>
<option value="software">Custom Software Development</option>
<option value="mobile">Mobile App Development</option>
<option value="cloud">Cloud Solutions</option>
<option value="security">Cybersecurity</option>
<option value="analytics">Data Analytics</option>
<option value="ai">AI & Machine Learning</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" class="form-control" required></textarea>
</div>
<button type="submit" class="submit-btn">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-logo">
<a href="#" class="logo">NexusTech</a>
<div class="footer-about">
<p>Innovating the future with cutting-edge technology solutions for businesses of all sizes.</p>
<div class="social-links">
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<div class="footer-links">
<h3>Quick Links</h3>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="footer-contact">
<h3>Contact Info</h3>
<p><i class="fas fa-map-marker-alt"></i> 123 Tech Avenue, San Francisco, CA 94107</p>
<p><i class="fas fa-phone"></i> +1 (555) 123-4567</p>
<p><i class="fas fa-envelope"></i> info@nexus-tech.com</p>
<p><i class="fas fa-clock"></i> Mon-Fri: 9:00 AM - 6:00 PM</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 NexusTech. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>