-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathportfolio.php
More file actions
1102 lines (947 loc) · 27.1 KB
/
portfolio.php
File metadata and controls
1102 lines (947 loc) · 27.1 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
<?php
include 'auth.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio Form</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<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/pikaday/1.8.2/css/pikaday.min.css">
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/porfolio.css" rel="stylesheet" />
<style>
/* =========================
GLOBAL STYLES
========================= */
body {
background: url('./assets/img/header-bb.jpg') no-repeat fixed center;
background-size: 100%;
background-position: 60% center;
margin-bottom: 5%;
}
h1, h2, h3, h4, h5, h6 {
color: var(--dark-blue);
margin: 0;
}
a {
text-decoration: none;
color: inherit;
}
.text-center {
text-align: center;
margin-bottom: 30px;
}
.section-heading {
font-family: 'Roboto Slab', serif;
font-size: 2rem;
margin-bottom: 10px;
}
.section-subheading {
font-size: 1rem;
color: #CED4DA;
}
/* =========================
NAVIGATION BAR
========================= */
.navbar {
color: azure;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.5rem 1rem;
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #00102E;
z-index: 1000;
}
.navbar-brand img {
height: 70px;
}
.nav-links {
display: flex;
list-style: none;
gap: 10px;
}
.nav-links li a {
color: var(--white);
font-weight: 200;
padding: 0.5rem 1rem;
border-radius: var(--border-radius);
transition: background 0.3s ease;
}
.nav-links li a:hover {
background-color: rgba(255, 255, 255, 0.1);
}
/* Hamburger menu */
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
gap: 4px;
}
.hamburger span {
height: 3px;
width: 25px;
background: white;
border-radius: 5px;
}
/* =========================
DROPDOWN MENU
========================= */
.dropdown-content {
display: none;
position: absolute;
background-color: #00102E;
min-width: 160px;
box-shadow: var(--box-shadow);
border-radius: var(--border-radius);
z-index: 1;
}
.dropdown-content a:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
display: block;
}
/* =========================
SCROLL TO TOP BUTTON
========================= */
#scrollToTop {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background-color: #2AC8A8;
color: white;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
border-radius: 50%;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease-in-out;
opacity: 0;
visibility: hidden;
}
#scrollToTop:hover {
background-color: #249e8d;
}
.fa-arrow-up {
font-size: 24px;
font-weight: bold;
}
/* =========================
FORM STYLES
========================= */
.container {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding-top: 100px;
padding-left: 15%;
position: relative;
z-index: 1;
padding-bottom: 5%;
}
.form {
max-width: 1000px;
width: 100%;
background: rgba(255, 255, 255, 0.05);
padding: 40px;
border-radius: 10px;
backdrop-filter: blur(10px);
}
.form-row {
display: flex;
gap: 20px;
margin-bottom: 20px;
}
.form-col {
flex: 1;
}
.form-control {
width: 100%;
padding: 12px;
margin-bottom: 20px;
border: 1px solid #CED4DA;
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.1);
color: white;
}
textarea.form-control {
min-height: 150px;
}
.btn-submit {
background-color: #0089FF;
color: white;
border: none;
padding: 12px 30px;
font-size: 1rem;
border-radius: 4px;
cursor: pointer;
display: block;
margin: 0 auto;
}
section#contact .section-heading {
color: #fff;
}
section#contact form#contactForm .form-group {
margin-bottom: 1.5rem;
}
section#contact form#contactForm .form-group input,
section#contact form#contactForm .form-group textarea {
padding: 1.25rem;
}
section#contact form#contactForm .form-group input.form-control {
height: auto;
}
section#contact form#contactForm .form-group-textarea {
height: 100%;
}
section#contact form#contactForm .form-group-textarea textarea {
height: 100%;
min-height: 10rem;
}
section#contact form#contactForm p.help-block {
margin: 0;
}
section#contact form#contactForm .form-control:focus {
border-color: #0089FF;
box-shadow: none;
}
section#contact form#contactForm ::-webkit-input-placeholder {
font-family: "Poppins", sans-serif;
font-weight: 700;
color: #ced4da;
}
section#contact form#contactForm :-moz-placeholder {
font-family: "Poppins", sans-serif;
font-weight: 700;
color: #ced4da;
}
section#contact form#contactForm ::-moz-placeholder {
font-family: "Poppins", sans-serif;
font-weight: 700;
color: #ced4da;
}
section#contact form#contactForm :-ms-input-placeholder {
font-family: "Poppins", sans-serif;
font-weight: 700;
color: #ced4da;
}
/* Footer Styles */
footer {
background-color: var(--dark-blue);
color: var(--white);
padding: 60px 0 0;
}
.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.footer-content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 30px;
margin-bottom: 40px;
}
.footer-column {
flex: 1;
min-width: 250px;
margin-bottom: 30px;
}
.footer-column h3 {
font-size: 1.2rem;
margin-bottom: 20px;
color: var(--secondary-color);
font-weight: 600;
}
.footer-column p {
color: rgba(255, 255, 255, 0.8);
margin-bottom: 15px;
line-height: 1.6;
}
.service-list {
list-style: none;
}
.service-list li {
margin-bottom: 10px;
color: rgba(255, 255, 255, 0.8);
position: relative;
padding-left: 20px;
line-height: 1.6;
}
.service-list li:before {
content: "•";
color: var(--secondary-color);
position: absolute;
left: 0;
font-weight: bold;
}
.contact-info p {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
}
.contact-info i {
margin-right: 10px;
color: var(--secondary-color);
font-size: 1.1rem;
}
.subscription-form {
display: flex;
margin-top: 20px;
}
.subscription-form input {
flex: 1;
padding: 12px 15px;
border: none;
border-radius: 5px 0 0 5px;
font-family: 'Poppins', sans-serif;
font-size: 0.95rem;
}
.subscription-form button {
background-color: var(--secondary-color);
color: var(--white);
border: none;
padding: 0 20px;
border-radius: 0 5px 5px 0;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 500;
}
.subscription-form button:hover {
background-color: #249e8d;
}
/* Footer Bottom */
.footer-bottom {
background-color: #00102E;
padding: 20px 0;
text-align: center;
}
.footer-bottom .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
.footer-bottom-row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
.footer-bottom-col {
flex: 1;
min-width: 100%;
padding: 10px 0;
text-align: center;
}
.footer-bottom-col p {
margin: 0;
padding: 0 15px;
}
/* Modal Overlay (Background) */
.modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5); /* Dark overlay */
display: none; /* Hidden by default */
justify-content: center;
align-items: center;
z-index: 1000;
}
.modal-overlay.active {
display: flex;
}
/* Newsletter Button Styles */
.newsletter-btn {
background-color: #2AC6A7;
color: white;
border: none;
padding: 12px 24px;
border-radius: 6px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.newsletter-btn:hover {
background-color: #1da58a;
transform: translateY(-2px);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.newsletter-btn:active {
transform: translateY(0);
}
/* Full-Screen Modal Content */
#newsletterModal .modal-content {
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
background:#00102E;
border-radius: 0;
padding: 10px;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
/* Close Button Styling */
.close-modal {
position: absolute;
top: 15px;
right: 20px;
background: none;
border: none;
font-size: 2rem;
color: rgb(233, 10, 10);
cursor: pointer;
transition: transform 0.2s ease;
}
.close-modal:hover {
transform: scale(1.2);
}
/* Iframe - Ensure it fits well */
.newsletter-iframe {
width: 95%;
height: 90%;
border: none;
border-radius: 8px;
}
.img-brand {
height: 2.75rem;
}
section#contact {
background-color: #00102E;
background-image: url(assets/img/map-image.png);
background-repeat: no-repeat;
background-position: center;
}
section#contact .section-heading {
color: #fff;
}
section#contact form#contactForm .form-group {
margin-bottom: 1.5rem;
}
section#contact form#contactForm .form-group input,
section#contact form#contactForm .form-group textarea {
padding: 1.25rem;
}
section#contact form#contactForm .form-group input.form-control {
height: auto;
}
section#contact form#contactForm .form-group-textarea {
height: 100%;
}
section#contact form#contactForm .form-group-textarea textarea {
height: 100%;
min-height: 10rem;
}
section#contact form#contactForm p.help-block {
margin: 0;
}
section#contact form#contactForm .form-control:focus {
border-color: #0089FF;
box-shadow: none;
}
section#contact form#contactForm ::-webkit-input-placeholder {
font-family: "Poppins", sans-serif;
font-weight: 700;
color: #ced4da;
}
section#contact form#contactForm :-moz-placeholder {
font-family: "Poppins", sans-serif;
font-weight: 700;
color: #ced4da;
}
section#contact form#contactForm ::-moz-placeholder {
font-family: "Poppins", sans-serif;
font-weight: 700;
color: #ced4da;
}
section#contact form#contactForm :-ms-input-placeholder {
font-family: "Poppins", sans-serif;
font-weight: 700;
color: #ced4da;
}
.footer {
font-size: 0.9rem;
font-family: "Poppins", sans-serif;
display: flex;
flex-direction: column; /* Stack content vertically */
justify-content: center; /* Center content vertically */
align-items: center; /* Center content horizontally */
text-align: center; /* Ensures text is centered */
width: 100%; /* Ensures it spans the full width */
}
.subheading {
font-size: 1.5rem;
line-height: 1.5rem;
margin-bottom: 20px;
font-family: "Poppins", sans-serif;
text-align: center;
}
/* Icon without circle */
.Service-icons {
width: 40px; /* Smaller circle size */
height: 40px; /* Ensure the circle is proportional */
border-radius: 0; /* No border-radius for the circle */
border: none; /* Remove the border */
display: flex;
justify-content: center;
align-items: center;
font-size: 50px; /* Icon size */
color: #6462B7; /* Default icon color */
margin: 0 auto 10px; /* Centers the icon */
transition: 0.3s; /* Smooth hover effect */
padding: 0; /* No extra padding around the icon */
}
.icon:hover {
background-color: #6462B7; /* Fill circle with blue color */
color: white; /* Change icon color to white on hover */
}
/* Title and paragraph inside each box */
.icon-box b {
font-size: 18px; /* Adjusted title size */
display: block;
margin-bottom: 8px;
color: black;
}
.icon-box p {
font-size: 14px; /* Adjusted paragraph text size */
color: black;
}
/* =========================
RESPONSIVE
========================= */
@media (max-width: 768px) {
.form-row {
flex-direction: column;
gap: 0;
}
.contact-container {
padding: 30px 20px;
}
.form {
margin: 20px;
padding: 20px;
}
.nav-links {
position: absolute;
top: 80px;
left: 50%;
transform: translateX(-50%);
background-color: #00102E;
flex-direction: column;
width: 200px;
display: none;
text-align: center;
padding: 1rem;
z-index: 99;
}
.nav-links.active {
display: flex;
}
.hamburger {
display: flex;
}
/* Dropdown for mobile */
.dropdown {
position: relative; /* Adjust position to relative */
display: inline-block;
width: 100%; /* Ensure it takes full width */
}
.dropbtn {
background-color: #00102E;
color: white;
padding: 10px 15px;
border-radius: 4px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 5px;
width: 100%; /* Ensure button spans full width */
}
.dropdown-content {
display: none;
position: relative;
background-color: #00102E;
flex-direction: column;
width: 100%;
padding: 10px 0;
margin-top: 5px;
}
.dropdown-content.active {
display: flex;
width: 100%;
left: 0; /* Make sure it's aligned with the button */
transform: translateX(0); /* Center dropdown */
}
.dropdown-content a {
color: white;
padding: 12px 20px;
text-decoration: none;
display: block;
text-align: center; /* Center text */
}
.dropdown-content a:hover {
background-color: rgba(255, 255, 255, 0.1);
}
}
/* Dropdown toggle script-friendly */
.dropdown-content.active {
display: flex;
}
/* By default, hide the nav toggle */
.nav-toggle {
display: none;
}
/* Media query to show nav toggle only on small screens */
@media (max-width: 768px) {
.nav-toggle {
display: block;
}
.dropdown-content {
left: 50%; /* Center it horizontally */
transform: translateX(-50%);
width: 100%; /* Make it expand to full width */
}
}
</style>
<header>
<div id="header"></div>
</header>
<body id="page-top">
<!-- Main Form Section -->
<div class="container">
<div class="form">
<div class="contact-info">
<h3 class="title">Connect With People Using Your Portfolio</h3>
<p class="text">
Fill in the form on the right to allow customers, investors, and other businesses to
visit your company website easily with a click of a button.
</p>
<div class="info">
<div class="information">
<img src="img/location.png" class="icon" alt="" />
<p></p>
</div>
<div class="information">
<img src="img/email.png" class="icon" alt="" />
<p></p>
</div>
<div class="information">
<img src="img/phone.png" class="icon" alt="" />
<p></p>
</div>
</div>
<div class="social-media">
<p>Connect with us :</p>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
<div class="contact-form">
<form action="https://formspree.io/f/mpzepvez" method="post" autocomplete="off" enctype="multipart/form-data">
<h3 class="title">Portfolio Form</h3>
<div class="input-container">
<input id="company" name="company" type="text" class="input" required />
<label>Company Name</label>
<span>Company Name</span>
</div>
<div class="input-container">
<input id="owner" name="owner" type="text" class="input" required />
<label>Owner</label>
<span>Owner</span>
</div>
<div class="input-container">
<input id="website" name="website" type="text" class="input" required />
<label>Website</label>
<span>Website</span>
</div>
<div class="input-container textarea">
<textarea id="description" name="description" class="input"></textarea>
<label>Company Description</label>
<span>Message</span>
</div>
<div class="input-container">
<input id="logo" name="logo" type="text" class="input" required />
<label>Company Logo Link</label>
<span>Company Logo Image Link</span>
<div>
<a href="https://www.linkpicture.com/en/?set=en" target="_blank">
<button class="favorite" type="button">Create image link</button>
</a>
</div>
</div>
<button class="btn-submit" type="submit">Submit</button>
</form>
</div>
</div>
</div>
<script>
// Toggle Menu (Hamburger Menu)
function toggleMenu() {
const navLinks = document.querySelector('.nav-links');
navLinks.classList.toggle('active');
}
// Scroll to Top Button
const scrollToTopBtn = document.getElementById("scrollToTop");
window.addEventListener("scroll", function () {
if (window.scrollY > 300) {
scrollToTopBtn.style.opacity = "1";
scrollToTopBtn.style.visibility = "visible";
} else {
scrollToTopBtn.style.opacity = "0";
scrollToTopBtn.style.visibility = "hidden";
}
// Navbar scroll effect
const navbar = document.querySelector(".navbar");
if (window.scrollY > 50) {
navbar.classList.add("scrolled");
} else {
navbar.classList.remove("scrolled");
}
});
// Smooth scroll on button click
scrollToTopBtn.addEventListener("click", function (e) {
e.preventDefault();
window.scrollTo({ top: 0, behavior: "smooth" });
});
// Dropdown Toggle
document.addEventListener("DOMContentLoaded", function () {
const dropdownBtn = document.querySelector(".dropbtn");
const dropdownContent = document.querySelector(".dropdown-content");
dropdownBtn.addEventListener("click", function (e) {
e.preventDefault();
dropdownContent.classList.toggle("active");
});
});
// Close dropdown if clicked outside
window.onclick = function (event) {
if (!event.target.matches('.dropbtn') && !event.target.closest('.dropdown')) {
document.querySelectorAll('.dropdown-content').forEach(function (dropdown) {
dropdown.style.display = 'none';
});
}
};
// Single checkbox selection logic
$(document).ready(function () {
$('.checkoption').click(function () {
$('.checkoption').not(this).prop('checked', false);
});
});
// Dropdown Toggle (additional method for multiple dropdowns)
function toggleDropdown(event, dropdownId) {
event.preventDefault();
var allDropdowns = document.querySelectorAll('.dropdown-content');
allDropdowns.forEach(function (dropdown) {
if (dropdown.id !== dropdownId) {
dropdown.style.display = 'none';
}
});
var dropdown = document.getElementById(dropdownId);
dropdown.style.display = (dropdown.style.display === 'block') ? 'none' : 'block';
}
</script>
<!-- Scroll to Top Button -->
<a href="#top" id="scrollToTop" style="position: fixed; bottom: 30px; right: 30px; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 999;">
<i class="fa fa-arrow-up"></i>
</a>
<!-- External Scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
fetch('header.html')
.then(res => res.text())
.then(data => {
document.getElementById('header').innerHTML = data;
});
</script>
<!-- Scroll to Top Button -->
<button id="scrollToTop" aria-label="Scroll to top">
<i class="fas fa-arrow-up"></i>
</button>
<!-- Footer Content Section -->
<footer style="background-color: #00102E; color:#fff">
<div class="footer-container">
<div class="footer-content">
<!-- About Us Column -->
<div class="footer-column">
<h3>About Us</h3>
<p>SMMEs Virtual Incubation is focused on incubating to accelerate the first mile and guiding the journey to the last mile.</p>
<p>We incubate and grow small and micro companies with market valuation potential headquartered in South Africa.</p>
<div class="contact-info">
<p><i class="fas fa-clock"></i> Mon-Thu: 08:30-16:30 | Fri: 08:30-14:30 | Sat: 10:00-14:30</p>
</div>
</div>
<!-- Services Column -->
<div class="footer-column">
<h3>Services</h3>
<ul class="service-list">
<li>SETA Registration and Mentorship</li>
<li>Business Profile Development</li>
<li>Marketing and Advertising</li>
<li>Business Mentorship</li>
<li>Workplace Skills Plan submission</li>
<li>Tax Compliance Services</li>
<li>Business Funding Assistance</li>
<li>Professional Workshops</li>
</ul>
</div>
<!-- Recent Posts Column -->
<div class="footer-column">
<h3>Recent Updates</h3>
<div id="recent-posts">
<p>Check back soon for news and updates!</p>
</div>
</div>
<!-- Contact Us Column -->
<div class="footer-column">
<h3>Contact Us</h3>
<div class="contact-info">
<p><i class="fas fa-map-marker-alt"></i> Unit 8E Trio Industrial Park, New Germany</p>
<p><i class="fas fa-phone-alt"></i> +27 63 313 7391</p>
<p><i class="fas fa-envelope"></i>info@codingmadeeasy.co.za</p>
</div>
<!-- <h4>Subscribe to Our Newsletter</h4>
<form class="subscription-form" style="width: 80%; font-weight:bold;">
<input type="email" placeholder="Click ->" style="width: 15%;background:#ffffff" disabled>
<button type="button" id="openModal">Subscribe</button>
</form> -->
<!-- Newsletter Subscription Button -->
<button id="newsletterButton" class="newsletter-btn">
Subscribe to Newsletter
<i class="fas fa-envelope"></i>
</button>
<!-- Newsletter Modal -->
<div id="newsletterModal" class="modal-overlay">
<div class="modal-content">
<button class="close-modal">×</button>
<h2>Stay in Business and Updated</h2>
<iframe class="newsletter-iframe"></iframe>
</div>
</div>
</div>
</div>
<!-- Footer Bottom Section -->
<!-- Footer Bottom Section -->
<footer class="footer py-4">
<div class="footer-container">
<!-- First Row: Copyright, Terms, Social -->
<div class="footer-bottom-row">
<div class="footer-bottom-col">
<img src="assets/img/logos/logo.png" alt="Close modal" />
<h5>©2025 SMMEs VIRTUAL INCUBATION</h5>
</div>
<div class="footer-bottom-col">
<a class="link-light text-decoration-none" href="#!">Terms of Use</a>
</div>