-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
869 lines (756 loc) · 36 KB
/
index.html
File metadata and controls
869 lines (756 loc) · 36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>WorkSphere - SME & Startup Consultancy</title>
<meta name="description" content="WorkSphere is a consultancy dedicated to empowering SMEs and startups in Kenya with expert business strategy, digital transformation, cloud solutions, and growth support.">
<meta name="keywords" content="WorkSphere, SME consultancy, startup support, business consulting Kenya, digital transformation, cloud services, business growth, entrepreneurship support">
<!-- Favicons -->
<!-- <link href="assets/img/favicon.png" rel="icon">-->
<link href="assets/img/apple-touch-icon.png" 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=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">
<!-- =======================================================
* Template Name: Instant
* Template URL: https://bootstrapmade.com/newtemplate-bootstrap-website-template/
* Updated: Jun 11 2025 with Bootstrap v5.3.6
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body class="index-page">
<header id="header" class="header d-flex align-items-center fixed-top">
<div class="container position-relative d-flex align-items-center justify-content-between">
<a href="index.html" class="logo d-flex align-items-center me-auto me-xl-0">
<!-- Uncomment the line below if you also wish to use an image logo -->
<!-- <img src="assets/img/logo.webp" alt=""> -->
<h1 class="sitename">WorkSphere</h1>
</a>
<nav id="navmenu" class="navmenu">
<ul>
<li><a href="#hero" class="active">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#faq">FAQ</a></li>
<li class="dropdown"><a href="#"><span>Dropdown</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>
</header>
<main class="main">
<!-- Hero Section -->
<section id="hero" class="hero section">
<div class="container">
<div class="hero-wrapper">
<div class="hero-main-content text-center">
<h1 class="hero-title" data-aos="zoom-in" data-aos-delay="200">
Transform Your Business Through<br>
<span class="typed" data-typed-items="Strategic Consulting,Digital Transformation,Cloud & Data Solutions"></span>
</h1>
<p class="hero-description" data-aos="fade-up" data-aos-delay="300">
We help organizations unlock their full potential with tailored consulting services, enabling smarter decisions, streamlined operations, and sustainable success.
</p>
<div class="hero-actions" data-aos="fade-up" data-aos-delay="400">
<a href="#services" class="action-btn primary">
<span>Explore Our Services</span>
<i class="bi bi-arrow-right"></i>
</a>
</div>
</div>
<div class="hero-image-showcase" data-aos="fade-up" data-aos-delay="500">
<div class="image-wrapper">
<!-- Replacing image with Lottie animation -->
<script src="https://unpkg.com/@dotlottie/player-component@2.7.12/dist/dotlottie-player.mjs" type="module"></script>
<dotlottie-player src="https://lottie.host/05310ce1-873d-4109-9b9e-548ae29146f7/iXMbxaovde.lottie" background="transparent" speed="1" style="width: 600px; height: 600px"
loop autoplay></dotlottie-player>
<!-- Floating Card 1 -->
<div class="floating-card card-1" data-aos="fade-right" data-aos-delay="600">
<div class="card-content">
<div class="card-icon">
<i class="bi bi-graph-up-arrow"></i>
</div>
<div class="card-info">
<h4><span data-purecounter-start="0" data-purecounter-end="89" class="purecounter"></span>%</h4>
<p>Success Benchmark</p>
</div>
</div>
</div>
<!-- Floating Card 2 -->
<div class="floating-card card-2" data-aos="fade-left" data-aos-delay="700">
<div class="card-content">
<div class="card-icon">
<i class="bi bi-people"></i>
</div>
<div class="card-info">
<h4><span data-purecounter-start="0" data-purecounter-end="500" class="purecounter"></span>+</h4>
<p>Satisfied Clients</p>
</div>
</div>
</div>
</div>
</section><!-- /Hero Section -->
<!-- About Section -->
<section id="about" class="about section">
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row align-items-center justify-content-between g-lg-5">
<!-- Image Section -->
<div class="col-lg-6" data-aos="fade-right" data-aos-delay="200">
<div class="image-wrapper">
<img src="assets/img/about/about-portrait-7.webp" class="img-fluid rounded" alt="Founder Emmah Wanjiru Ng'ang'a">
</div>
</div>
<!-- Text Content Section -->
<div class="col-lg-6" data-aos="fade-left" data-aos-delay="300">
<div class="content">
<h2 class="mb-4">Our Founder’s Story</h2>
<h5 class="mb-4">Meet Emmah Wanjiru Ng'ang'a, the Visionary Behind WorkSphere Solutions</h5>
<p>
With a strong background in strategic business development and a passion for authentic growth,
<strong>Emmah Wanjiru Ng'ang'a</strong> founded <strong>WorkSphere Solutions</strong> to revolutionize how consultancy is approached in Africa.
She identified a critical gap in the industry—one lacking identity-focused, emotionally intelligent strategies that support meaningful, sustainable business growth.
</p>
<p>
Her journey began after witnessing how countless small businesses in Kenya had tremendous potential,
but lacked the systems and strategic frameworks needed to scale while preserving their unique identity.
</p>
<p>
Today, she leads a dynamic team committed to transforming African enterprises through intentional,
ecosystem-driven growth strategies—not just quick fixes. At WorkSphere, we believe in building from within,
nurturing both vision and values.
</p>
<!-- CTA Buttons -->
<div class="mt-5" data-aos="fade-up" data-aos-delay="600">
<a href="#services" class="btn btn-primary me-3">Learn More</a>
<a href="#contact" class="btn btn-outline-primary">Contact Us</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- /About Section -->
<!-- Features Section -->
<section id="features" class="features section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Our Vision & Mission</h2>
<p>Driven by purpose. Grounded in identity. Empowering sustainable growth.</p>
</div>
<!-- End Section Title -->
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row align-items-start mb-5">
<!-- Vision -->
<div class="col-lg-6" data-aos="fade-right" data-aos-delay="150">
<div class="mission-vision-box box-left p-4 rounded h-100">
<h3 class="mb-3"><i class="bi bi-eye"></i> Our Vision</h3>
<p>
To be the catalyst that transforms African businesses into globally competitive enterprises
while preserving their authentic identity and creating sustainable ecosystems.
</p>
<p>
We envision a future where African businesses lead with innovative, identity-rooted systems
that scale beyond borders while creating meaningful impact in their communities.
</p>
</div>
</div>
<!-- Mission -->
<div class="col-lg-6" data-aos="fade-left" data-aos-delay="200">
<div class="mission-vision-box box-right p-4 rounded h-100">
<h3 class="mb-3"><i class="bi bi-bullseye"></i> Our Mission</h3>
<p>
To provide visionary founders with strategic consulting that honors their authentic business identity
while implementing practical systems for sustainable growth.
</p>
<p>
We commit to delivering emotionally intelligent strategies that connect businesses with their ideal clients
while optimizing operations for long-term success.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="features section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Our Consultancy Services</h2>
<p>We provide strategic guidance and innovative solutions to help businesses grow, adapt, and lead in their industries.</p>
</div><!-- End Section Title -->
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row align-items-center mb-5">
<div class="col-lg-6" data-aos="fade-right" data-aos-delay="150">
<div class="intro-content">
<h2>Strategic Consulting to Accelerate Business Growth</h2>
<p>Our expert team provides tailored advice, market insights, and performance solutions to elevate your organization’s impact and efficiency.</p>
<div class="feature-stats">
<div class="stat-item">
<span class="stat-number">150+</span>
<span class="stat-label">Projects</span>
</div>
<div class="stat-item">
<span class="stat-number">99.9%</span>
<span class="stat-label">Client Satisfaction</span>
</div>
<div class="stat-item">
<span class="stat-number">24/7</span>
<span class="stat-label">Support</span>
</div>
</div>
</div>
</div>
<div class="col-lg-6" data-aos="fade-left" data-aos-delay="200">
<div class="intro-image">
<img src="assets/img/features/features-2.webp" alt="Features" class="img-fluid">
</div>
</div>
</div>
<div class="features-grid">
<div class="feature-item" data-aos="flip-up" data-aos-delay="250">
<div class="feature-number">01</div>
<div class="feature-content">
<div class="feature-icon">
<i class="bi bi-lightning-charge"></i>
</div>
<h4>Business Process Optimization</h4>
<p>Streamline operations and improve productivity through tailored process improvement strategies that drive results.</p>
<div class="feature-tags">
<span class="tag">Efficiency</span>
<span class="tag">Productivity</span>
</div>
</div>
</div>
<div class="feature-item" data-aos="flip-up" data-aos-delay="300">
<div class="feature-number">02</div>
<div class="feature-content">
<div class="feature-icon">
<i class="bi bi-shield-check"></i>
</div>
<h4>Risk and Compliance Advisory</h4>
<p>We help businesses identify potential risks, develop mitigation strategies, and ensure regulatory compliance.</p>
<div class="feature-tags">
<span class="tag">Governance</span>
<span class="tag">Compliance</span>
</div>
</div>
</div>
<div class="feature-item" data-aos="flip-up" data-aos-delay="350">
<div class="feature-number">03</div>
<div class="feature-content">
<div class="feature-icon">
<i class="bi bi-people-fill"></i>
</div>
<h4>Organizational Development</h4>
<p>Empower your workforce through structured training, team building, and change management consulting.</p>
<div class="feature-tags">
<span class="tag">Teamwork</span>
<span class="tag">Culture</span>
</div>
</div>
</div>
<div class="feature-item" data-aos="flip-up" data-aos-delay="400">
<div class="feature-number">04</div>
<div class="feature-content">
<div class="feature-icon">
<i class="bi bi-graph-up-arrow"></i>
</div>
<h4>Market & Financial Analytics</h4>
<p>Get detailed insights and data-driven forecasts to guide investment decisions and market expansion strategies.</p>
<div class="feature-tags">
<span class="tag">Data</span>
<span class="tag">Insights</span>
</div>
</div>
</div>
<div class="feature-item" data-aos="flip-up" data-aos-delay="450">
<div class="feature-number">05</div>
<div class="feature-content">
<div class="feature-icon">
<i class="bi bi-gear-fill"></i>
</div>
<h4>Digital Transformation Strategy</h4>
<p>Support your journey to digital maturity with expert guidance in technology integration and digital innovation.</p>
<div class="feature-tags">
<span class="tag">Innovation</span>
<span class="tag">Digital</span>
</div>
</div>
</div>
<div class="feature-item" data-aos="flip-up" data-aos-delay="500">
<div class="feature-number">06</div>
<div class="feature-content">
<div class="feature-icon">
<i class="bi bi-cloud-arrow-up"></i>
</div>
<h4>IT & Cloud Consulting</h4>
<p>Unlock business agility through cloud infrastructure planning, migration services, and scalable tech advisory.</p>
<div class="feature-tags">
<span class="tag">Cloud</span>
<span class="tag">IT Strategy</span>
</div>
</div>
</div>
</div>
</div>
</section><!-- /Features Section -->
<!-- Services Section -->
<section id="services" class="services section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Services</h2>
<p>Empowering organizations with strategic insights and sustainable solutions for impactful growth.</p>
</div><!-- End Section Title -->
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="intro-content" data-aos="fade-right" data-aos-delay="100">
<div class="section-badge mb-3" data-aos="zoom-in" data-aos-delay="50">
<i class="bi bi-star-fill"></i>
<span>WHAT WE DO</span>
</div>
<h2 class="section-heading mb-4">Turning Vision into Sustainable Impact</h2>
<p class="section-description mb-4">We deliver expert consultancy services to empower public, private, and non-profit entities through strategic planning, data-driven decision-making, and digital transformation.</p>
<a href="#" class="cta-button" data-aos="fade-right" data-aos-delay="200">
Explore Our Work
</a>
</div>
</div>
<div class="col-lg-6">
<div class="hero-visual" data-aos="fade-left" data-aos-delay="150">
<img src="assets/img/services/services-1.webp" alt="Services" class="img-fluid">
</div>
</div>
</div>
<div class="services-grid mt-5">
<div class="row g-4">
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="100">
<div class="service-card">
<div class="card-number">
<span>01</span>
</div>
<div class="card-content">
<h5 class="service-title">
<a href="#">Business Strategy & Planning</a>
</h5>
<p class="service-description">Crafting bespoke strategies that align mission, operations, and market opportunities for long-term organizational growth.</p>
</div>
</div>
</div><!-- End Service Card -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="200">
<div class="service-card">
<div class="card-number">
<span>02</span>
</div>
<div class="card-content">
<h5 class="service-title">
<a href="#">Policy Research & Economic Analysis</a>
</h5>
<p class="service-description">Providing data-driven research and economic evaluations to support evidence-based policy and reform initiatives.</p>
</div>
</div>
</div><!-- End Service Card -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="300">
<div class="service-card">
<div class="card-number">
<span>03</span>
</div>
<div class="card-content">
<h5 class="service-title">
<a href="#">Grant Writing & Proposal Development</a>
</h5>
<p class="service-description">Designing compelling proposals that align with donor goals and increase your success in funding applications.</p>
</div>
</div>
</div><!-- End Service Card -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="100">
<div class="service-card">
<div class="card-number">
<span>04</span>
</div>
<div class="card-content">
<h5 class="service-title">
<a href="#">ICT & Cloud Consulting</a>
</h5>
<p class="service-description">Empowering digital transformation through cloud strategies, systems optimization, and modern IT infrastructure advisory.</p>
</div>
</div>
</div><!-- End Service Card -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="200">
<div class="service-card">
<div class="card-number">
<span>05</span>
</div>
<div class="card-content">
<h5 class="service-title">
<a href="#">Sustainability & Climate Advisory</a>
</h5>
<p class="service-description">Helping organizations integrate climate strategies and ESG frameworks into their operations and reporting structures.</p>
</div>
</div>
</div><!-- End Service Card -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="300">
<div class="service-card">
<div class="card-number">
<span>06</span>
</div>
<div class="card-content">
<h5 class="service-title">
<a href="#">Monitoring & Evaluation (M&E)</a>
</h5>
<p class="service-description">Designing and executing robust M&E frameworks to assess project performance, impact, and accountability.</p>
</div>
</div>
</div><!-- End Service Card -->
</div>
</div>
</div>
</section><!-- /Services Section -->
<!-- Call To Action Section -->
<section id="call-to-action" class="call-to-action section light-background">
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="advertise-1 d-flex flex-column flex-lg-row gap-4 align-items-center position-relative">
<div class="content-left flex-grow-1" data-aos="fade-right" data-aos-delay="200">
<span class="badge text-uppercase mb-2">Go Digital</span>
<h2>Empower Your Business with Digital Transformation</h2>
<p class="my-4">Stay ahead in a connected world with secure, scalable, and cloud-driven solutions. From websites to cloud storage, we help businesses embrace digital tools that streamline operations and protect data integrity.</p>
<div class="features d-flex flex-wrap gap-3 mb-4">
<div class="feature-item">
<i class="bi bi-check-circle-fill"></i>
<span>Professional Websites</span>
</div>
<div class="feature-item">
<i class="bi bi-check-circle-fill"></i>
<span>Cloud Data Storage</span>
</div>
<div class="feature-item">
<i class="bi bi-check-circle-fill"></i>
<span>Enhanced Cybersecurity</span>
</div>
</div>
<div class="cta-buttons d-flex flex-wrap gap-3">
<a href="#" class="btn btn-primary">Get Started</a>
<a href="#" class="btn btn-outline">Contact Us</a>
</div>
</div>
<div class="content-right position-relative" data-aos="fade-left" data-aos-delay="300">
<img src="assets/img/misc/misc-5.webp" alt="Digital Solutions" class="img-fluid rounded-4">
<div class="floating-card">
<div class="card-icon">
<i class="bi bi-cloud-check"></i>
</div>
<div class="card-content">
<span class="stats-number">99.9%</span>
<span class="stats-text">Data Security</span>
</div>
</div>
</div>
<div class="decoration">
<div class="circle-1"></div>
<div class="circle-2"></div>
</div>
</div>
</div>
</section><!-- /Call To Action Section -->
<!-- Faq Section -->
<section id="faq" class="faq section">
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row gy-4 justify-content-between">
<div class="col-lg-8">
<div class="faq-list">
<div class="faq-item faq-active" data-aos="fade-up" data-aos-delay="100">
<h3>What types of businesses do you work with?</h3>
<div class="faq-content">
<p>
We work with startups, SMEs, non-profits, and government organizations across sectors such as agriculture, finance, education, health, and technology. Our solutions are tailored to each client's industry and goals.
</p>
</div>
<i class="bi bi-plus faq-toggle"></i>
</div><!-- End FAQ Item-->
<div class="faq-item" data-aos="fade-up" data-aos-delay="200">
<h3>What services does your consultancy offer?</h3>
<div class="faq-content">
<p>
Our core services include project management, business development, digital transformation, cloud solutions, data analytics, grant proposal writing, and economic policy advisory.
</p>
</div>
<i class="bi bi-plus faq-toggle"></i>
</div><!-- End FAQ Item-->
<div class="faq-item" data-aos="fade-up" data-aos-delay="300">
<h3>How do you price your services?</h3>
<div class="faq-content">
<p>
Pricing depends on the scope, duration, and complexity of the project. We offer both fixed-rate packages and flexible hourly or retainer models. Custom quotes are provided after a free initial consultation.
</p>
</div>
<i class="bi bi-plus faq-toggle"></i>
</div><!-- End FAQ Item-->
<div class="faq-item" data-aos="fade-up" data-aos-delay="400">
<h3>How do I start working with your team?</h3>
<div class="faq-content">
<p>
Simply contact us through our website or email to schedule a discovery call. During this session, we’ll understand your needs, propose a strategy, and define the next steps toward execution.
</p>
</div>
<i class="bi bi-plus faq-toggle"></i>
</div><!-- End FAQ Item-->
<div class="faq-item" data-aos="fade-up" data-aos-delay="500">
<h3>Is my company’s data and information secure?</h3>
<div class="faq-content">
<p>
Absolutely. We adhere to industry best practices in data protection, including confidentiality agreements, secure cloud storage, and GDPR compliance where applicable.
</p>
</div>
<i class="bi bi-plus faq-toggle"></i>
</div><!-- End FAQ Item-->
<div class="faq-item" data-aos="fade-up" data-aos-delay="600">
<h3>What is the typical project duration?</h3>
<div class="faq-content">
<p>
Project timelines vary based on the complexity and deliverables involved. Some projects take 2–4 weeks, while strategic initiatives may run for several months. Timelines are clearly defined during onboarding.
</p>
</div>
<i class="bi bi-plus faq-toggle"></i>
</div><!-- End FAQ Item-->
</div>
</div>
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="200">
<div class="faq-card">
<i class="bi bi-chat-dots-fill"></i>
<h3>Still have questions?</h3>
<p>We’re here to help. Reach out to us directly and one of our consultants will be happy to provide answers tailored to your specific situation.</p>
<a href="#contact" class="btn btn-primary">Contact Us</a>
</div>
</div>
</div>
</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 Workspher Consultancy</h2>
<p>We’re here to help your business grow. Get in touch to explore how our consulting services can transform your strategy, operations, and digital presence.</p>
</div><!-- End Section Title -->
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row">
<div class="col-lg-6 mb-5" data-aos="fade-right" data-aos-delay="200">
<div class="contact-info-section">
<div class="info-header">
<h3>Connect With Workspher Consultancy</h3>
<p>Let’s discuss how we can support your business growth with expert consultancy and innovation.</p>
</div>
<div class="contact-info-grid">
<div class="info-item" data-aos="zoom-in" data-aos-delay="250">
<div class="info-icon">
<i class="bi bi-geo-alt-fill"></i>
</div>
<div class="info-content">
<h5>Visit Our Office</h5>
<p>Ruiru</p>
</div>
</div>
<div class="info-item" data-aos="zoom-in" data-aos-delay="300">
<div class="info-icon">
<i class="bi bi-envelope-fill"></i>
</div>
<div class="info-content">
<h5>Send Email</h5>
<p>123@businessdemo.com</p>
</div>
</div>
<div class="info-item" data-aos="zoom-in" data-aos-delay="350">
<div class="info-icon">
<i class="bi bi-telephone-fill"></i>
</div>
<div class="info-content">
<h5>Call Direct</h5>
<p>(+254) 123456789</p>
</div>
</div>
<div class="info-item" data-aos="zoom-in" data-aos-delay="400">
<div class="info-icon">
<i class="bi bi-clock-fill"></i>
</div>
<div class="info-content">
<h5>Business Hours</h5>
<p>Mon-Sat: 8AM - 7PM</p>
</div>
</div>
</div>
<div class="social-contact" data-aos="fade-up" data-aos-delay="450">
<h5>Follow Our Journey</h5>
<div class="social-icons">
<a href="#" class="social-icon"><i class="bi bi-facebook"></i></a>
<a href="#" class="social-icon"><i class="bi bi-twitter-x"></i></a>
<a href="#" class="social-icon"><i class="bi bi-linkedin"></i></a>
<a href="#" class="social-icon"><i class="bi bi-youtube"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-6" data-aos="fade-left" data-aos-delay="200">
<div class="contact-form-wrapper">
<div class="form-header">
<h3>Send Us a Message</h3>
<p>Have a question, proposal, or partnership idea? Contact us and our consultants will respond promptly to support your business goals.</p>
</div>
<form action="forms/contact.php" method="post" class="php-email-form">
<div class="mb-3">
<label for="contactName" class="form-label">Full Name</label>
<input type="text" name="name" class="form-control" id="contactName" placeholder="Enter your full name" required="">
</div>
<div class="mb-3">
<label for="contactEmail" class="form-label">Email Address</label>
<input type="email" class="form-control" name="email" id="contactEmail" placeholder="Enter your email address" required="">
</div>
<div class="mb-3">
<label for="contactPhone" class="form-label">Phone Number</label>
<input type="tel" class="form-control" name="phone" id="contactPhone" placeholder="Enter your phone number">
</div>
<div class="mb-3">
<label for="contactSubject" class="form-label">Subject</label>
<input type="text" class="form-control" name="subject" id="contactSubject" placeholder="Enter message subject" required="">
</div>
<div class="mb-4">
<label for="contactMessage" class="form-label">Your Message</label>
<textarea class="form-control message-textarea" name="message" id="contactMessage" rows="5" placeholder="Enter your message" required=""></textarea>
</div>
<div class="my-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your message has been sent. Thank you!</div>
</div>
<button type="submit" class="submit-btn">
<span>Send Message</span>
<i class="bi bi-arrow-right"></i>
</button>
</form>
</div>
</div>
</div>
</div>
</section><!-- /Contact Section -->
</main>
<footer id="footer" class="footer light-background">
<div class="footer-top">
<div class="container">
<div class="row gy-4">
<div class="col-lg-4 col-md-6 footer-about">
<a href="index.html" class="logo d-flex align-items-center">
<span class="sitename">WorkSphere</span>
</a>
<div class="footer-contact pt-3">
<p>A108 </p>
<p>Ruiru</p>
<p class="mt-3"><strong>Phone:</strong> <span>+1 5589 55488 55</span></p>
<p><strong>Email:</strong> <span>info@example.com</span></p>
</div>
</div>
<div class="col-lg-2 col-md-3 footer-links">
<h4>Useful Links</h4>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Terms of service</a></li>
<li><a href="#">Privacy policy</a></li>
</ul>
</div>
<div class="col-lg-2 col-md-3 footer-links">
<h4>Gov't Business Portals</h4>
<ul>
<li><a href="https://www.ecitizen.go.ke/" target="_blank">eCitizen Portal</a></li>
<li><a href="https://www.kra.go.ke/" target="_blank">Kenya Revenue Authority (KRA)</a></li>
<li><a href="https://brs.go.ke/" target="_blank">Business Registration Service</a></li>
<li><a href="https://www.kenyatradeportal.go.ke/" target="_blank">Kenya Trade Portal</a></li>
<li><a href="https://www.kebs.org/" target="_blank">KEBS (Standards & Certification)</a></li>
</ul>
</div>
<div class="col-lg-2 col-md-3 footer-links">
<h4>Business Resources</h4>
<ul>
<li><a href="https://www.nca.go.ke/" target="_blank">National Construction Authority (NCA)</a></li>
<li><a href="https://www.helb.co.ke/" target="_blank">HELB Enterprise Fund</a></li>
<li><a href="https://youthfund.go.ke/" target="_blank">Youth Enterprise Fund</a></li>
<li><a href="https://uwezo.go.ke/" target="_blank">Uwezo Fund</a></li>
<li><a href="https://www.industrialization.go.ke/" target="_blank">Min. of Industrialization</a></li>
</ul>
</div>
<div class="col-lg-2 col-md-3 footer-links">
<h4>Investment & Trade</h4>
<ul>
<li><a href="https://www.invest.go.ke/" target="_blank">KenInvest</a></li>
<li><a href="https://kenyachamber.or.ke/" target="_blank">Kenya National Chamber of Commerce</a></li>
<li><a href="https://www.kenyaexports.go.ke/" target="_blank">Kenya Export Promotion</a></li>
<li><a href="https://www.kebs.org/" target="_blank">KEBS</a></li>
<li><a href="https://www.ict.go.ke/" target="_blank">ICT Authority Kenya</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="copyright text-center">
<div class="container d-flex flex-column flex-lg-row justify-content-center justify-content-lg-between align-items-center">
<div class="d-flex flex-column align-items-center align-items-lg-start">
<div>
© Copyright <strong><span>WorkSphere</span></strong>. All Rights Reserved
</div>
<div class="credits">
Designed by <a href="mailto:elviskanyi8@gmail.com">Email Me</a>
Wedev Tech</a>
</div>
</div>
<div class="social-links order-first order-lg-last mb-3 mb-lg-0">
<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>
</footer>
<!-- Scroll Top -->
<a href="#" id="scroll-top" class="scroll-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/purecounter/purecounter_vanilla.js"></script>
<script src="assets/vendor/typed.js/typed.umd.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<!-- Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>