-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevops-implementation.html
More file actions
1049 lines (914 loc) · 40.6 KB
/
Copy pathdevops-implementation.html
File metadata and controls
1049 lines (914 loc) · 40.6 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
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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Defcon | Premium IT Consulting Services</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Anton&family=Archivo+Black&family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Bebas+Neue&family=Bitcount+Grid+Double:wght@100..900&family=Caprasimo&family=Changa+One:ital@0;1&family=DM+Serif+Text:ital@0;1&family=Domine:wght@400..700&family=Fjalla+One&family=Francois+One&family=Geist:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libertinus+Math&family=Lora:ital,wght@0,400..700;1,400..700&family=Patua+One&family=Rowdies:wght@300;400;700&family=Satisfy&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
/* DEFCON IT Consulting Specific Styles - Won't interfere with main site */
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.defcon-itconsulting-container {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background-color: #ffffff;
color: #06273e;
line-height: 1.6;
overflow-x: hidden;
}
.defcon-itconsulting-hero {
background: linear-gradient(135deg, #06273e 0%, #0091ff 100%);
color: #ffffff;
padding: 8rem 2rem 6rem;
position: relative;
overflow: hidden;
}
.defcon-itconsulting-hero::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('thumbnails/pexels-inspiredimages-5626726.jpg') center/cover;
opacity: 0.15;
z-index: 0;
}
.defcon-itconsulting-hero-content {
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 1;
}
.defcon-itconsulting-hero h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
font-weight: 700;
line-height: 1.2;
text-shadow: 0 2px 10px rgba(0,0,0,0.3);
transform: translateY(30px);
opacity: 0;
animation: defcon-fadeInUp 1s 0.3s forwards;
}
.defcon-itconsulting-hero p {
font-size: 1.4rem;
max-width: 700px;
margin-bottom: 2.5rem;
transform: translateY(30px);
opacity: 0;
animation: defcon-fadeInUp 1s 0.5s forwards;
}
.defcon-itconsulting-cta {
display: inline-block;
background-color: #0091ff;
color: white;
padding: 1rem 2.5rem;
border-radius: 4px;
font-size: 1.2rem;
text-decoration: none;
transition: all 0.3s ease;
transform: translateY(30px);
opacity: 0;
animation: defcon-fadeInUp 1s 0.7s forwards;
box-shadow: 0 4px 15px rgba(0, 145, 255, 0.4);
}
.defcon-itconsulting-cta:hover {
background-color: #0091ff;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0, 145, 255, 0.6);
}
.defcon-itconsulting-section {
max-width: 1200px;
margin: 0 auto;
padding: 5rem 2rem;
}
.defcon-itconsulting-section-title {
font-size: 2.5rem;
color: #06273e;
margin-bottom: 3rem;
position: relative;
display: inline-block;
}
.defcon-itconsulting-section-title::after {
content: "";
position: absolute;
bottom: -10px;
left: 0;
width: 70px;
height: 6px;
background-color: #0091ff;
border-radius: 2px;
}
.defcon-itconsulting-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}
.defcon-itconsulting-card {
background: #ffffff;
border-radius: 6px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.085);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
opacity: 0;
transform: translateY(50px);
}
.defcon-itconsulting-card-visible {
opacity: 1;
transform: translateY(0);
}
.defcon-itconsulting-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.defcon-itconsulting-card-header {
background: linear-gradient(135deg, #0091ff 0%, #06273e 100%);
color: white;
padding: 1.5rem;
position: relative;
}
.defcon-itconsulting-card-header h3 {
font-size: 1.4rem;
margin: 0;
position: relative;
z-index: 1;
}
.defcon-itconsulting-card-price {
font-size: 2.2rem;
font-weight: bold;
width: 100%;
color: #0091ff;
}
.defcon-itconsulting-card-price span {
font-size: 1rem;
color: #666;
font-weight: normal;
}
.defcon-itconsulting-card-body {
padding: 1.5rem;
}
.defcon-itconsulting-card-body p {
padding-bottom: 1rem;
}
.defcon-itconsulting-card-features {
list-style: none;
padding: 0;
margin: 0 0 1.5rem;
}
.defcon-itconsulting-card-features li {
padding: 0.5rem 0;
position: relative;
padding-left: 1.8rem;
}
.defcon-itconsulting-card-features li::before {
content: "✓";
color: #0091ff;
position: absolute;
left: 0;
font-weight: bold;
}
.defcon-itconsulting-card-button {
display: block;
text-align: center;
color: #0091ff;
padding: 0.8rem;
border-radius: 4px;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
margin-top: 1rem;
border: 2px solid #0091ff;
}
.defcon-itconsulting-card-button:hover {
background-color: #0091ff;
color: white;
}
.defcon-itconsulting-testimonials {
background-color: #e5e5e5;
padding: 5rem 2rem;
}
.defcon-itconsulting-testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.defcon-itconsulting-testimonial-card {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
position: relative;
opacity: 0;
transform: translateY(30px);
transition: all 0.5s ease;
}
.defcon-itconsulting-testimonial-card::before {
content: "";
font-family: Georgia, serif;
font-size: 5rem;
color: #0091ff;
opacity: 0.2;
position: absolute;
top: 10px;
left: 10px;
line-height: 1;
}
.defcon-itconsulting-testimonial-card-visible {
opacity: 1;
transform: translateY(0);
}
.defcon-itconsulting-testimonial-content {
margin-bottom: 1.5rem;
font-style: italic;
position: relative;
z-index: 1;
}
.defcon-itconsulting-testimonial-author {
display: flex;
align-items: center;
}
.defcon-itconsulting-testimonial-author img {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
margin-right: 1rem;
border: 2px solid #0091ff;
}
.defcon-itconsulting-testimonial-author-info h4 {
margin: 0;
color: #06273e;
}
.defcon-itconsulting-testimonial-author-info p {
margin: 0.2rem 0 0;
color: #666;
font-size: 0.9rem;
}
.defcon-itconsulting-process {
background-color: #f9f9f9;
padding: 5rem 2rem;
}
.defcon-itconsulting-process-steps {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
margin-top: 3rem;
position: relative;
}
.defcon-itconsulting-process-steps::before {
content: "";
position: absolute;
top: 40px;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #0091ff, #06273e);
z-index: 0;
}
.defcon-itconsulting-process-step {
flex: 1;
min-width: 200px;
max-width: 250px;
background: white;
padding: 1.5rem;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
text-align: center;
position: relative;
z-index: 1;
opacity: 0;
transform: translateY(30px);
transition: all 0.5s ease;
}
.defcon-itconsulting-process-step-visible {
opacity: 1;
transform: translateY(0);
}
.defcon-itconsulting-process-step-number {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #0091ff 0%, #06273e 100%);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: bold;
margin: 0 auto 1.5rem;
}
.defcon-itconsulting-process-step h3 {
color: #06273e;
margin-bottom: 1rem;
}
.defcon-itconsulting-faq {
padding: 3rem 2rem;
}
.defcon-itconsulting-faq-container {
max-width: 800px;
margin: 0 auto;
}
.defcon-itconsulting-faq-item {
margin-bottom: 1rem;
border: 2px solid #e5e5e5;
border-radius: 8px;
overflow: hidden;
}
.defcon-itconsulting-faq-question {
padding: 1.5rem;
background-color: rgba(223, 223, 223, 0.437);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: bold;
transition: all 0.3s ease;
}
.defcon-itconsulting-faq-question:hover {
background-color: #06273e;
color: whitesmoke;
}
.defcon-itconsulting-faq-question::after {
content: "+";
font-size: 1.5rem;
color: #0091ff;
transition: all 0.3s ease;
}
.defcon-itconsulting-faq-item.active .defcon-itconsulting-faq-question::after {
content: "-";
}
.defcon-itconsulting-faq-answer {
padding: 0 1.5rem;
max-height: 0;
overflow: hidden;
transition: all 0.3s ease;
background-color: #f9f9f9;
}
.defcon-itconsulting-faq-item.active .defcon-itconsulting-faq-answer {
padding: 1.5rem;
max-height: 500px;
}
.defcon-itconsulting-cta-section {
background: linear-gradient(135deg, #06273e 0%, #0091ff 100%);
color: white;
text-align: center;
padding: 6rem 2rem;
}
.defcon-itconsulting-cta-section h2 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
}
.defcon-itconsulting-cta-section p {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 2.5rem;
}
.defcon-itconsulting-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.defcon-itconsulting-modal-active {
opacity: 1;
visibility: visible;
}
.defcon-itconsulting-modal-content {
background-color: white;
width: 90%;
max-width: 600px;
border-radius: 10px;
overflow: hidden;
transform: scale(0.8);
transition: all 0.3s ease;
position: relative;
}
.defcon-itconsulting-modal-active .defcon-itconsulting-modal-content {
transform: scale(1);
}
.defcon-itconsulting-modal-close {
position: absolute;
top: 15px;
right: 15px;
font-size: 1.5rem;
cursor: pointer;
color: #666;
background: none;
border: none;
z-index: 1;
}
.defcon-itconsulting-modal-header {
background: linear-gradient(135deg, #0091ff 0%, #06273e 100%);
color: white;
padding: 2rem;
text-align: center;
}
.defcon-itconsulting-modal-header h3 {
margin: 0;
font-size: 1.8rem;
}
.defcon-itconsulting-modal-body {
padding: 2rem;
}
.defcon-itconsulting-form-group {
margin-bottom: 1.5rem;
}
.defcon-itconsulting-form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: bold;
color: #06273e;
}
.defcon-itconsulting-form-group input,
.defcon-itconsulting-form-group textarea,
.defcon-itconsulting-form-group select {
width: 100%;
padding: 0.8rem;
border: 1px solid #e5e5e5;
border-radius: 6px;
font-family: "Times New Roman", Times, serif;
}
.defcon-itconsulting-form-submit {
background-color: #0091ff;
color: white;
border: none;
padding: 1rem 2rem;
border-radius: 6px;
cursor: pointer;
font-size: 1rem;
font-weight: bold;
transition: all 0.3s ease;
width: 100%;
}
.defcon-itconsulting-form-submit:hover {
background-color: #0077cc;
}
@keyframes defcon-fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.defcon-itconsulting-floating-shapes {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 0;
}
.defcon-itconsulting-shape {
position: absolute;
opacity: 0.1;
animation: defcon-float 15s infinite linear;
}
.defcon-itconsulting-shape-1 {
width: 100px;
height: 100px;
background-color: #0091ff;
border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
top: 10%;
left: 10%;
animation-delay: 0s;
}
.defcon-itconsulting-shape-2 {
width: 150px;
height: 150px;
background-color: #06273e;
border-radius: 50% 50% 20% 80% / 60% 40% 60% 40%;
top: 60%;
left: 80%;
animation-delay: 2s;
}
.defcon-itconsulting-shape-3 {
width: 80px;
height: 80px;
background-color: #ffffff;
border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
top: 30%;
left: 70%;
animation-delay: 4s;
}
@keyframes defcon-float {
0% {
transform: translateY(0) rotate(0deg);
}
50% {
transform: translateY(-20px) rotate(180deg);
}
100% {
transform: translateY(0) rotate(360deg);
}
}
/* Responsive adjustments */
@media (max-width: 768px) {
.defcon-itconsulting-hero h1 {
font-size: 2.5rem;
}
.defcon-itconsulting-hero p {
font-size: 1.2rem;
}
.defcon-itconsulting-grid {
grid-template-columns: 1fr;
}
.defcon-itconsulting-process-steps {
flex-direction: column;
align-items: center;
}
.defcon-itconsulting-process-steps::before {
display: none;
}
.defcon-itconsulting-process-step {
max-width: 100%;
}
}
</style>
</head>
<body>
<div class="defcon-itconsulting-container">
<!-- Hero Section -->
<div class="defcon-itconsulting-hero">
<div class="defcon-itconsulting-floating-shapes">
<div class="defcon-itconsulting-shape defcon-itconsulting-shape-1"></div>
<div class="defcon-itconsulting-shape defcon-itconsulting-shape-2"></div>
<div class="defcon-itconsulting-shape defcon-itconsulting-shape-3"></div>
</div>
<div class="defcon-itconsulting-hero-content">
<h1>DevOps Implementation</h1>
<p>Transform your business with our expert IT consulting services tailored to your unique needs. We bridge the gap between technology and business strategy.</p>
<a href="#defcon-itconsulting-contact" class="defcon-itconsulting-cta">Get a Free Consultation</a>
</div>
</div>
<!-- Services Section -->
<div class="defcon-itconsulting-section">
<h2 class="defcon-itconsulting-section-title">Our IT Consulting Services</h2>
<p>We offer comprehensive IT consulting services designed to optimize your technology infrastructure, enhance security, and drive business growth.</p>
<div class="defcon-itconsulting-grid">
<!-- Service Card 1 -->
<div class="defcon-itconsulting-card">
<div class="defcon-itconsulting-card-header">
<h3>IT Strategy & Roadmapping</h3>
</div>
<div class="defcon-itconsulting-card-body">
<p>Align your technology with business objectives through a comprehensive IT strategy tailored to your organization.</p>
<ul class="defcon-itconsulting-card-features">
<li>Current state assessment</li>
<li>Future state vision</li>
<li>3-5 year technology roadmap</li>
<li>Budget planning</li>
<li>Implementation timeline</li>
</ul>
<div class="defcon-itconsulting-card-price">R3,599<span> / project</span></div>
<a href="137.html" class="defcon-itconsulting-card-button">Get Started</a>
</div>
</div>
<!-- Service Card 2 -->
<div class="defcon-itconsulting-card">
<div class="defcon-itconsulting-card-header">
<h3>Cloud Migration Consulting</h3>
</div>
<div class="defcon-itconsulting-card-body">
<p>Seamlessly transition your infrastructure to the cloud with minimal disruption to your operations.</p>
<ul class="defcon-itconsulting-card-features">
<li>Cloud readiness assessment</li>
<li>Platform selection (AWS, Azure, GCP)</li>
<li>Migration strategy</li>
<li>Security & compliance review</li>
<li>Cost optimization</li>
</ul>
<div class="defcon-itconsulting-card-price">R5,999+<span> / migration</span></div>
<a href="137.html" class="defcon-itconsulting-card-button">Get Started</a>
</div>
</div>
<!-- Service Card 3 -->
<div class="defcon-itconsulting-card">
<div class="defcon-itconsulting-card-header">
<h3>Cybersecurity Assessment</h3>
</div>
<div class="defcon-itconsulting-card-body">
<p>Identify vulnerabilities and strengthen your security posture with our comprehensive cybersecurity evaluation.</p>
<ul class="defcon-itconsulting-card-features">
<li>Vulnerability scanning</li>
<li>Penetration testing</li>
<li>Security policy review</li>
<li>Compliance check</li>
<li>Remediation plan</li>
</ul>
<div class="defcon-itconsulting-card-price">R2,899<span> / assessment</span></div>
<a href="#120.html" class="defcon-itconsulting-card-button">Get Started</a>
</div>
</div>
<!-- Service Card 4 -->
<div class="defcon-itconsulting-card">
<div class="defcon-itconsulting-card-header">
<h3>Digital Transformation</h3>
</div>
<div class="defcon-itconsulting-card-body">
<p>Modernize your operations and customer experience through strategic digital transformation.</p>
<ul class="defcon-itconsulting-card-features">
<li>Process automation</li>
<li>Customer journey mapping</li>
<li>Technology stack evaluation</li>
<li>Change management</li>
<li>ROI analysis</li>
</ul>
<div class="defcon-itconsulting-card-price">R8,499+<span> / engagement</span></div>
<a href="#" class="defcon-itconsulting-card-button">Get Started</a>
</div>
</div>
<!-- Service Card 5 -->
<div class="defcon-itconsulting-card">
<div class="defcon-itconsulting-card-header">
<h3>IT Infrastructure Audit</h3>
</div>
<div class="defcon-itconsulting-card-body">
<p>Comprehensive evaluation of your current IT infrastructure with actionable recommendations.</p>
<ul class="defcon-itconsulting-card-features">
<li>Network assessment</li>
<li>Hardware inventory</li>
<li>Software licensing review</li>
<li>Performance benchmarking</li>
<li>Modernization plan</li>
</ul>
<div class="defcon-itconsulting-card-price">R4,199<span> / audit</span></div>
<a href="#" class="defcon-itconsulting-card-button">Get Started</a>
</div>
</div>
<!-- Service Card 6 -->
<div class="defcon-itconsulting-card">
<div class="defcon-itconsulting-card-header">
<h3>CIO Advisory Services</h3>
</div>
<div class="defcon-itconsulting-card-body">
<p>On-demand executive-level IT leadership and strategic guidance for your organization.</p>
<ul class="defcon-itconsulting-card-features">
<li>Monthly strategy sessions</li>
<li>Vendor management</li>
<li>Technology evaluation</li>
<li>IT budget planning</li>
<li>Team leadership</li>
</ul>
<div class="defcon-itconsulting-card-price">R5,999<span> / month</span></div>
<a href="#" class="defcon-itconsulting-card-button">Get Started</a>
</div>
</div>
</div>
</div>
<!-- Testimonials Section -->
<div class="defcon-itconsulting-testimonials">
<div class="defcon-itconsulting-section">
<h2 class="defcon-itconsulting-section-title">What Our Clients Say</h2>
<p>Hear from businesses that have transformed their operations with our IT consulting expertise.</p>
<div class="defcon-itconsulting-testimonial-grid">
<!-- Testimonial 1 -->
<div class="defcon-itconsulting-testimonial-card">
<div class="defcon-itconsulting-testimonial-content">
<p>Defcon's IT consulting team helped us modernize our infrastructure while reducing costs by 30%. Their strategic approach to cloud migration was flawless and their ongoing support has been invaluable.</p>
</div>
<div class="defcon-itconsulting-testimonial-author">
<img src="https://randomuser.me/api/portraits/women/45.jpg" alt="Sarah Johnson">
<div class="defcon-itconsulting-testimonial-author-info">
<h4>Sarah Johnson</h4>
<p>CEO, TechForward Inc.</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="defcon-itconsulting-testimonial-card">
<div class="defcon-itconsulting-testimonial-content">
<p>The cybersecurity assessment revealed critical vulnerabilities we weren't aware of. Defcon not only identified the issues but provided a clear roadmap to resolution. Our security posture has never been stronger.</p>
</div>
<div class="defcon-itconsulting-testimonial-author">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen">
<div class="defcon-itconsulting-testimonial-author-info">
<h4>Michael Chen</h4>
<p>CTO, SecureData Systems</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="defcon-itconsulting-testimonial-card">
<div class="defcon-itconsulting-testimonial-content">
<p>As a growing startup, we needed strategic IT guidance without the overhead of a full-time CIO. Defcon's advisory services have been the perfect solution, providing executive-level insight exactly when we need it.</p>
</div>
<div class="defcon-itconsulting-testimonial-author">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emily Rodriguez">
<div class="defcon-itconsulting-testimonial-author-info">
<h4>Emily Rodriguez</h4>
<p>Founder, NexGen Apps</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Process Section -->
<div class="defcon-itconsulting-process">
<div class="defcon-itconsulting-section">
<h2 class="defcon-itconsulting-section-title">Our Consulting Process</h2>
<p>Our structured approach ensures we deliver maximum value at every stage of your IT transformation.</p>
<div class="defcon-itconsulting-process-steps">
<!-- Step 1 -->
<div class="defcon-itconsulting-process-step">
<div class="defcon-itconsulting-process-step-number">1</div>
<h3>Discovery</h3>
<p>We begin with in-depth interviews and analysis to understand your business objectives and current challenges.</p>
</div>
<!-- Step 2 -->
<div class="defcon-itconsulting-process-step">
<div class="defcon-itconsulting-process-step-number">2</div>
<h3>Assessment</h3>
<p>Our team conducts a comprehensive evaluation of your current technology infrastructure and processes.</p>
</div>
<!-- Step 3 -->
<div class="defcon-itconsulting-process-step">
<div class="defcon-itconsulting-process-step-number">3</div>
<h3>Strategy</h3>
<p>We develop a customized IT strategy with clear recommendations and a prioritized roadmap.</p>
</div>
<!-- Step 4 -->
<div class="defcon-itconsulting-process-step">
<div class="defcon-itconsulting-process-step-number">4</div>
<h3>Implementation</h3>
<p>Our experts guide you through the execution phase, ensuring smooth adoption of new technologies.</p>
</div>
<!-- Step 5 -->
<div class="defcon-itconsulting-process-step">
<div class="defcon-itconsulting-process-step-number">5</div>
<h3>Optimization</h3>
<p>We provide ongoing support and adjustments to maximize the value of your technology investments.</p>
</div>
</div>
</div>
</div>
<!-- FAQ Section -->
<div class="defcon-itconsulting-faq">
<div class="defcon-itconsulting-section">
<h2 class="defcon-itconsulting-section-title">Frequently Asked Questions</h2>
<div class="defcon-itconsulting-faq-container">
<!-- FAQ Item 1 -->
<div class="defcon-itconsulting-faq-item">
<div class="defcon-itconsulting-faq-question">
What's the typical duration of an IT consulting engagement?
</div>
<div class="defcon-itconsulting-faq-answer">
<p>The duration varies based on the scope of work. Strategy engagements typically take 4-6 weeks, while implementation projects can range from 3 months to a year. Our CIO advisory services are often ongoing monthly retainers.</p>
</div>
</div>
<!-- FAQ Item 2 -->
<div class="defcon-itconsulting-faq-item">
<div class="defcon-itconsulting-faq-question">
How do you ensure your recommendations align with our business goals?
</div>
<div class="defcon-itconsulting-faq-answer">
<p>We begin every engagement with deep discovery sessions to understand your business objectives, challenges, and KPIs. Our recommendations are always tied to measurable business outcomes, not just technical improvements.</p>
</div>
</div>
<!-- FAQ Item 3 -->
<div class="defcon-itconsulting-faq-item">
<div class="defcon-itconsulting-faq-question">
Do you work with specific industries or business sizes?
</div>
<div class="defcon-itconsulting-faq-answer">
<p>We serve clients across industries, from startups to enterprises. Our team has particular expertise in financial services, healthcare, e-commerce, and professional services, but we customize our approach for each client's unique needs.</p>
</div>
</div>
<!-- FAQ Item 4 -->
<div class="defcon-itconsulting-faq-item">
<div class="defcon-itconsulting-faq-question">
What happens after the consulting engagement ends?
</div>
<div class="defcon-itconsulting-faq-answer">
<p>We offer various ongoing support options, from quarterly strategy reviews to full implementation management. Many clients transition to our managed services or retain us for periodic advisory sessions.</p>
</div>
</div>
<!-- FAQ Item 5 -->
<div class="defcon-itconsulting-faq-item">
<div class="defcon-itconsulting-faq-question">
How do you measure the success of your consulting work?
</div>
<div class="defcon-itconsulting-faq-answer">
<p>We establish clear success metrics at the start of each engagement, which may include cost savings, performance improvements, security enhancements, or business growth metrics. We provide regular progress reports against these KPIs.</p>
</div>
</div>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="defcon-itconsulting-cta-section" id="defcon-itconsulting-contact">
<h2>Ready to Transform Your IT Strategy?</h2>
<p>Schedule a free 30-minute consultation with one of our IT experts to discuss your challenges and explore potential solutions.</p>
<a href="#" class="defcon-itconsulting-cta defcon-itconsulting-modal-trigger" data-service="General Consultation">Book Your Free Consultation</a>
</div>
</div>
<script>
// Scroll animations
document.addEventListener('DOMContentLoaded', function() {
// Animate cards on scroll
const animateOnScroll = function() {
const cards = document.querySelectorAll('.defcon-itconsulting-card');
const testimonials = document.querySelectorAll('.defcon-itconsulting-testimonial-card');
const steps = document.querySelectorAll('.defcon-itconsulting-process-step');
cards.forEach((card, index) => {
const cardPosition = card.getBoundingClientRect().top;
const screenPosition = window.innerHeight / 1.3;
if(cardPosition < screenPosition) {
setTimeout(() => {
card.classList.add('defcon-itconsulting-card-visible');
}, index * 200);
}
});
testimonials.forEach((testimonial, index) => {
const testimonialPosition = testimonial.getBoundingClientRect().top;
const screenPosition = window.innerHeight / 1.3;
if(testimonialPosition < screenPosition) {
setTimeout(() => {
testimonial.classList.add('defcon-itconsulting-testimonial-card-visible');
}, index * 200);
}
});
steps.forEach((step, index) => {
const stepPosition = step.getBoundingClientRect().top;
const screenPosition = window.innerHeight / 1.3;
if(stepPosition < screenPosition) {
setTimeout(() => {
step.classList.add('defcon-itconsulting-process-step-visible');
}, index * 200);
}
});
};
window.addEventListener('scroll', animateOnScroll);
animateOnScroll(); // Run once on load
// FAQ toggle functionality
const faqItems = document.querySelectorAll('.defcon-itconsulting-faq-item');
faqItems.forEach(item => {
const question = item.querySelector('.defcon-itconsulting-faq-question');