-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
526 lines (497 loc) · 23.1 KB
/
Copy pathindex.html
File metadata and controls
526 lines (497 loc) · 23.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SC Engineering | Cloud-Native Software Solutions</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
:root {
--primary: #00d2ff; /* Tech Cyan */
--secondary: #3a7bd5; /* Deep Digital Blue */
--dark: #0f172a; /* Deep Space Navy */
--light: #f2f5f7;
}
* { box-sizing: border-box; }
body {
font-family: 'Inter', 'Segoe UI', sans-serif;
margin: 0;
color: var(--dark);
line-height: 1.6;
background-color: var(--light);
}
/* HEADER & NAVIGATION */
header {
background: var(--light);
backdrop-filter: blur(10px);
padding: 1rem 5%;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 15px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
}
.logo-img {
height: auto;
max-height: 80px;
width: 100%;
max-width: 180px;
object-fit: contain;
border-radius: 20px;
}
nav {
display: flex;
gap: 30px;
}
nav a {
text-decoration: none;
color: var(--dark);
font-weight: 600;
font-size: 0.95rem;
transition: color 0.2s ease;
}
nav a:hover { color: var(--primary); }
/* HERO SECTION */
.online-tag {
background: rgba(237, 5, 5, 0.97);
color: var(--light);
padding: 5px 15px;
border-radius: 20px;
font-weight: bold;
margin-bottom: 20px;
display: inline-block;
font-size: 0.9rem;
}
.hero {
background: linear-gradient(135deg, rgba(15, 23, 42, 1), rgba(58, 123, 213, 0.7)), url("dashboard.png");
min-height: 80vh;
background-size: cover;
background-position: center;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 40px 20px;
}
.hero h1 {
font-size: clamp(2rem, 5vw, 4rem);
margin-top: 0;
margin-bottom: 15px;
line-height: 1.2;
}
.hero p {
font-size: clamp(1rem, 2.5vw, 1.2rem);
max-width: 600px;
opacity: 0.9;
margin-bottom: 0;
}
/* SHOWCASE GALLERY */
.section-title {
text-align: center;
margin: 60px 20px 30px;
font-size: clamp(1.8rem, 4vw, 2.2rem);
}
.section-subtitle {
text-align: center;
max-width: 600px;
margin: 0 auto 40px;
padding: 0 20px;
color: #64748b;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
padding: 0 5%;
}
.project-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid #e2e8f0;
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.project-card img { width: 100%; height: 200px; object-fit: cover; }
.project-content { padding: 20px; }
.project-content h3 { margin: 0 0 10px; color: var(--secondary); }
/* TECH STACK ECOSYSTEM */
.tech-stack { padding: 60px 5%; text-align: center; background: var(--light); }
.tech-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
margin-top: 40px;
}
.tech-item {
display: flex;
flex-direction: column;
align-items: center;
width: 110px;
}
.tech-item img {
width: 60px;
height: 60px;
object-fit: contain;
filter: grayscale(100%);
transition: 0.3s ease;
}
.tech-item:hover img { filter: grayscale(0%); transform: scale(1.1); }
.tech-item span { margin-top: 10px; font-weight: 600; font-size: 0.85rem; color: #64748b; }
/* SERVICE PACKAGES */
.pricing-section { padding: 60px 5%; background-color: var(--light); text-align: center; }
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-top: 40px;
}
.pricing-card {
background: white;
padding: 30px;
border-radius: 20px;
border: 1px solid #e2e8f0;
transition: 0.3s ease;
display: flex;
flex-direction: column;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.pricing-card.featured { border: 2px solid var(--primary); position: relative; }
.badge {
position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
background: var(--primary); color: white; padding: 5px 15px;
border-radius: 20px; font-size: 0.8rem; font-weight: bold;
}
.price-title { font-size: 1.5rem; color: var(--secondary); margin-bottom: 10px; }
.price-value { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; color: var(--dark); }
.price-features { list-style: none; padding: 0; margin: 0 0 30px 0; text-align: left; flex-grow: 1; }
.price-features li { margin-bottom: 12px; color: #64748b; font-size: 0.95rem; }
.price-features li::before { content: "✓"; color: var(--primary); font-weight: bold; margin-right: 10px; }
/* ONLINE PROCESS WORKFLOW */
.remote-workflow { padding: 60px 5%; background-color: var(--light); text-align: center; }
.workflow-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
margin-top: 40px;
padding: 0 5%;
}
.step-card {
padding: 30px;
border-radius: 15px;
background: white;
border: 1px solid #e2e8f0;
}
.step-number {
background: var(--primary);
color: white;
width: 35px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-weight: bold;
margin: 0 auto 20px;
}
.step-card h3 { color: var(--secondary); margin-bottom: 15px; }
.step-card p { font-size: 0.95rem; color: #475569; margin-bottom: 0; }
/* INQUIRY FORM */
.contact-section { padding: 60px 5%; background: var(--light); display: flex; flex-direction: column; align-items: center; }
.contact-box { background: white; padding: clamp(20px, 5vw, 40px); border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); width: 100%; max-width: 700px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #101011; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px; border: 2px solid #e2e8f0; border-radius: 8px; font-size: 1rem; transition: 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); outline: none; }
.btn-submit { background: linear-gradient(90deg, var(--secondary), var(--primary)); color: white; border: none; padding: 16px; border-radius: 8px; font-weight: 700; width: 100%; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; }
/* FOOTER & SOCIALS */
footer { background: var(--dark); color: #94a3b8; text-align: center; padding: 4rem 1rem; }
footer p { margin: 5px 0; }
.social-container { margin-top: 20px; }
.fa {
padding: 10px; font-size: 20px; width: 40px; height: 40px;
text-align: center; text-decoration: none; border-radius: 50%;
margin: 8px; display: inline-block; line-height: 20px;
}
.fa:hover { opacity: 0.7; }
.fa-facebook { background: #3B5998; color: white; }
.fa-instagram { background: #E1306C; color: white; }
.fa-linkedin { background: #0077B5; color: white; }
.fa-github { background: #333; color: white; }
/* RESPONSIVE LAYOUT MEDIA QUERIES */
@media (max-width: 768px) {
header { flex-direction: column; gap: 15px; padding: 1.5rem 5%; }
nav { gap: 20px; }
.form-grid { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 480px) {
nav { flex-wrap: wrap; justify-content: center; gap: 15px; }
nav a { font-size: 0.9rem; }
}
/* 📱 RESPONSIVE CHATBOX CSS CONTAINER */
#hf-chatbox-container {
display: none;
position: fixed;
bottom: 120px;
right: 20px;
width: 350px;
height: 490px;
z-index: 2147483647;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
border-radius: 12px;
overflow: hidden;
border: 1px solid #e0e0e0;
background-color: #ffffff;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
@media (max-width: 500px) {
#hf-chatbox-container {
bottom: 100px;
right: 10px;
left: 10px;
width: calc(100% - 20px);
height: 60vh;
}
#hf-chat-trigger {
width: 75px !important;
height: 75px !important;
bottom: 15px !important;
right: 15px !important;
}
#hf-chat-trigger span { font-size: 8px !important; }
}
</style>
</head>
<body>
<header>
<a href="index.html" class="logo-container">
<img src="logo.png" alt="SC Logo" class="logo-img">
</a>
<nav>
<a href="index.html">Home</a>
<a href="services.html">Services</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<section class="hero">
<div class="online-tag">100% Engineering Online</div>
<h1>Scalable Software Engineering</h1>
<p>We build mission-critical digital products for global startups and enterprises, delivered entirely through our remote-first engineering model.</p>
</section>
<h2 id="projects" class="section-title">Digital Product Showcase</h2>
<div class="gallery">
<div class="project-card">
<img src="cloud.png" alt="SaaS Dashboard">
<div class="project-content">
<h3>FinTech Cloud Dashboard</h3>
<p>A real-time data visualization platform processing 10k+ transactions per second.</p>
</div>
</div>
<div class="project-card">
<img src="healthapp.png" alt="Mobile App">
<div class="project-content">
<h3>HealthTech Mobile Sync</h3>
<p>Cross-platform React Native app with HIPAA-compliant secure cloud storage.</p>
</div>
</div>
<div class="project-card">
<img src="neural.png" alt="AI Network">
<div class="project-content">
<h3>Neural Analysis API</h3>
<p>Robust Python-based microservices architecture for distributed AI processing.</p>
</div>
</div>
</div>
<section class="tech-stack">
<h2 class="section-title">Our Digital Ecosystem</h2>
<p class="section-subtitle">We leverage industry-leading technologies to build robust, scalable online solutions.</p>
<div class="tech-grid">
<div class="tech-item">
<img src="react.png" alt="React">
<span>React / Next.js</span>
</div>
<div class="tech-item">
<img src="node.png" alt="Node.js">
<span>Node.js</span>
</div>
<div class="tech-item">
<img src="pythonai.jpg" alt="Python">
<span>Python / AI</span>
</div>
<div class="tech-item">
<img src="aws.png" alt="AWS">
<span>AWS Cloud</span>
</div>
<div class="tech-item">
<img src="docker.png" alt="Docker">
<span>Docker</span>
</div>
<div class="tech-item">
<img src="typescript.png" alt="TypeScript">
<span>TypeScript</span>
</div>
</div>
</section>
<section id="pricing" class="pricing-section">
<h2 class="section-title">Service Packages</h2>
<p class="section-subtitle">Flexible engagement models for every stage of your software journey.</p>
<div class="pricing-grid">
<div class="pricing-card">
<h3 class="price-title">MVP Launch</h3>
<div class="price-value">Tier 1</div>
<ul class="price-features">
<li>Core Feature Development</li>
<li>UI/UX Prototyping</li>
<li>Single Platform (Web or Mobile)</li>
<li>Market Validation Testing</li>
<li>6-Week Delivery Timeline</li>
</ul>
<a href="#contact" class="btn-submit" style="text-decoration:none; text-align:center;">Start MVP</a>
</div>
<div class="pricing-card featured">
<div class="badge">MOST POPULAR</div>
<h3 class="price-title">Full Scale Build</h3>
<div class="price-value">Tier 2</div>
<ul class="price-features">
<li>Complete Product Engineering</li>
<li>Cross-Platform Integration</li>
<li>Scalable Cloud Architecture</li>
<li>Advanced API & Security</li>
<li>Dedicated Project Manager</li>
</ul>
<a href="#contact" class="btn-submit" style="text-decoration:none; text-align:center;">Scale Up</a>
</div>
<div class="pricing-card">
<h3 class="price-title">Continuous Care</h3>
<div class="price-value">Retainer</div>
<ul class="price-features">
<li>24/7 Server Monitoring</li>
<li>Monthly Security Patches</li>
<li>Bug Fixes & Optimisations</li>
<li>Feature Iteration Credits</li>
<li>Priority Technical Support</li>
</ul>
<a href="#contact" class="btn-submit" style="text-decoration:none; text-align:center;">View Maintenance</a>
</div>
</div>
</section>
<section class="remote-workflow">
<h2 class="section-title">Our 100% Online Process</h2>
<p class="section-subtitle">Modern engineering doesn't need an office. Here is how we collaborate across borders.</p>
<div class="workflow-grid">
<div class="step-card">
<div class="step-number">1</div>
<h3>Virtual Discovery</h3>
<p>We start with a deep-dive Zoom or Meet session to understand your technical requirements and business goals.</p>
</div>
<div class="step-card">
<div class="step-number">2</div>
<h3>Agile Development</h3>
<p>Follow our progress in real-time via Jira and GitHub. We use Slack for instant communication and daily updates.</p>
</div>
<div class="step-card">
<div class="step-number">3</div>
<h3>Cloud Deployment</h3>
<p>We deploy your solution to secure AWS or Azure environments, ensuring a seamless digital handover.</p>
</div>
</div>
</section>
<section id="contact" class="contact-section">
<div class="contact-box">
<h2 style="margin-top:0; text-align: center;">Remote Project Inquiry</h2>
<p style="color: #64748b; margin-bottom: 30px; text-align: center;">Brief us on your software needs. We typically reply within 24 hours.</p>
<form id="enquiryForm" action="https://formsubmit.co/info.scengineering1@gmail.com" method="POST">
<input type="hidden" name="_subject" value="New SC Engineering Project Inquiry!">
<input type="hidden" name="_template" value="table">
<input type="hidden" name="_captcha" value="true">
<input type="hidden" name="_next" value="https://sc-eng.co.za/success.html">
<input type="hidden" name="_replyto" value="info@sc-eng.co.za">
<input type="text" name="_honey" style="display:none">
<input type="hidden" name="_autoresponse" value="Thank you for contacting SC Engineering. We have received your software project brief and our team will get back to you within 24 hours.">
<div class="form-grid">
<div class="form-group">
<label>Full Name</label>
<input type="text" name="name" placeholder="Devin Tech" required>
</div>
<div class="form-group">
<label>Work Email</label>
<input type="email" name="email" placeholder="dev@company.com" required>
</div>
</div>
<div class="form-group">
<label>Service Required</label>
<select name="service">
<option value="SaaS Development">SaaS Development</option>
<option value="Mobile App (iOS/Android)">Mobile App (iOS/Android)</option>
<option value="Cloud Infrastructure (DevOps)">Cloud Infrastructure (DevOps)</option>
<option value="AI/ML Integration">AI/ML Integration</option>
</select>
</div>
<div class="form-group">
<label>Project Scope</label>
<textarea name="details" rows="4" placeholder="Briefly describe your software requirements..." required></textarea>
</div>
<button type="submit" class="btn-submit">Submit Digital Brief</button>
</form>
</div>
</section>
<button id="hf-chat-trigger" style="position: fixed; bottom: 20px; right: 20px; width: 85px; height: 85px; border-radius: 50%; background-color: #007bff; border: none; box-shadow: 0 4px 10px rgba(0,0,0,0.3); cursor: pointer; z-index: 2147483647; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: transform 0.2s ease; padding: 5px; box-sizing: border-box;">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="margin-bottom: 2px;">
<path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path>
</svg>
<span style="color: #ffffff; font-size: 9px; font-weight: bold; text-align: center; font-family: sans-serif; line-height: 1.1; word-spacing: 100vw;">Chat with Lisa</span>
</button>
<div id="hf-chatbox-container">
<div style="background-color: #007bff; color: #ffffff; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; height: 40px; box-sizing: border-box;">
<span style="font-size: 14px; font-weight: 600;">Lisa AI</span>
<div style="display: flex; gap: 14px; align-items: center;">
<button id="hf-minimize-btn" title="Minimize" style="background: none; border: none; color: #ffffff; cursor: pointer; font-size: 16px; padding: 0 2px; line-height: 1; opacity: 0.85;">—</button>
<button id="hf-close-btn" title="Close" style="background: none; border: none; color: #ffffff; cursor: pointer; font-size: 20px; padding: 0 2px; line-height: 1; opacity: 0.85;">×</button>
</div>
</div>
<div style="width: 100%; height: calc(100% - 40px);">
<iframe
src="https://sc-eng-chatbox.hf.space/?__theme=light"
frameborder="0"
width="100%"
height="100%"
allow="microphone">
</iframe>
</div>
</div>
<script>
const chatTrigger = document.getElementById('hf-chat-trigger');
const chatContainer = document.getElementById('hf-chatbox-container');
const minimizeBtn = document.getElementById('hf-minimize-btn');
const closeBtn = document.getElementById('hf-close-btn');
chatTrigger.addEventListener('click', function() {
if (chatContainer.style.display === 'none' || chatContainer.style.display === '') {
chatContainer.style.display = 'block';
} else {
chatContainer.style.display = 'none';
}
});
minimizeBtn.addEventListener('click', function() { chatContainer.style.display = 'none'; });
closeBtn.addEventListener('click', function() { chatContainer.style.display = 'none'; });
</script>
<footer>
<p>© 2024 SC Engineering | info@sc-eng.co.za</p>
<p>Built for the distributed world.</p>
<div class="social-container">
<a href="https://www.facebook.com/profile.php?id=61565320015031" target="_blank" class="fa fa-facebook"></a>
<a href="https://github.com/SC-ENG-AI" target="_blank" class="fa fa-github"></a>
<a href="https://www.linkedin.com/checkpoint/challen" target="_blank" class="fa fa-linkedin"></a>
</div>
</footer>
</body>
</html>