-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathservices.html
More file actions
430 lines (386 loc) · 13.4 KB
/
services.html
File metadata and controls
430 lines (386 loc) · 13.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>DeployLynx | Services</title>
<link rel="icon" type="image/png" href="/images/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
:root {
--primary-cyan: #00c6ff;
--accent-pink: #ff6ec7;
--dark-bg: #0a0f1c;
--card-bg: rgba(255, 255, 255, 0.05);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
body {
background: var(--dark-bg);
color: #fff;
line-height: 1.6;
overflow-x: hidden;
}
/* NAVIGATION - FIXED & UNIFIED */
nav {
height: 80px;
width: 100%;
background: rgba(10, 15, 28, 0.95);
backdrop-filter: blur(10px);
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 5%;
position: fixed; /* Keeps it locked at the top */
top: 0;
left: 0;
z-index: 2000;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo {
font-size: 24px;
color: #fff;
font-weight: 800;
text-decoration: none;
white-space: nowrap;
}
.logo span { color: var(--primary-cyan); }
.menu {
display: flex;
align-items: center;
gap: 25px;
}
.menu a {
text-decoration: none;
color: #94a3b8;
font-size: 0.95rem;
font-weight: 500;
transition: 0.3s;
}
.menu a:hover, .menu a.active {
color: var(--primary-cyan);
}
.nav-contact-btn {
background: #2563eb;
color: white !important;
padding: 10px 24px;
border-radius: 8px;
font-weight: 600;
transition: 0.3s;
}
.nav-contact-btn:hover {
background: #1d4ed8;
transform: translateY(-2px);
}
@media (max-width: 768px) {
nav { padding: 0 20px; }
.menu a:not(.nav-contact-btn) { display: none; } /* Only shows Contact button on mobile to prevent overlap */
}
/* HERO SECTION */
.hero {
padding: 80px 10% 40px;
text-align: center;
}
.hero h1 {
font-size: clamp(32px, 5vw, 48px);
background: linear-gradient(90deg, #fff, var(--primary-cyan));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 20px;
}
/* SPINNING CIRCLE SECTION - FIXED POSITIONING */
.services-top {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 40px;
padding: 40px 5%;
min-height: 70vh;
}
.visual-container {
flex: 1;
min-width: 300px;
display: flex;
justify-content: center;
align-items: center;
position: relative; /* Prevents it from jumping during scroll */
}
.spin-circle {
width: 350px;
height: 350px;
border: 2px dashed rgba(0, 198, 255, 0.3);
border-radius: 50%;
position: relative;
animation: spin 20s linear infinite;
}
.node {
position: absolute;
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary-cyan), var(--accent-pink));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.7rem;
font-weight: bold;
color: #000;
box-shadow: 0 0 20px rgba(0, 198, 255, 0.4);
animation: counter-spin 20s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes counter-spin { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
/* Node Positions */
.node:nth-child(1) { top: -40px; left: calc(50% - 40px); }
.node:nth-child(2) { bottom: -40px; left: calc(50% - 40px); }
.node:nth-child(3) { left: -40px; top: calc(50% - 40px); }
.node:nth-child(4) { right: -40px; top: calc(50% - 40px); }
.service-cards-short {
flex: 1;
min-width: 300px;
display: flex;
flex-direction: column;
gap: 20px;
}
.mini-card {
background: var(--card-bg);
padding: 20px;
border-radius: 12px;
border-left: 4px solid var(--primary-cyan);
}
/* SECTION HEADINGS */
.section-title {
text-align: center;
padding: 60px 0 30px;
font-size: 2rem;
color: var(--primary-cyan);
}
/* Challenges We Solve */
.table-container {
padding: 40px 10%;
overflow-x: auto;
}
table {
width: 100%;
border-collapse: collapse;
background: var(--card-bg);
border-radius: 15px;
overflow: hidden;
}
th, td {
padding: 20px;
text-align: left;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
th { background: rgba(0, 198, 255, 0.1); color: var(--primary-cyan); }
/* LONG SERVICES GRID */
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
padding: 40px 10%;
}
.full-card {
background: var(--card-bg);
padding: 40px;
border-radius: 20px;
transition: 0.3s;
border: 1px solid rgba(255,255,255,0.05);
}
.full-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.08); }
.full-card h3 { color: var(--primary-cyan); margin-bottom: 15px; }
.full-card ul { list-style: none; margin-top: 15px; }
.full-card ul li { margin-bottom: 8px; font-size: 0.9rem; color: #cbd5e1; }
.full-card ul li::before { content: "✔"; color: var(--accent-pink); margin-right: 10px; }
/* WHO THIS IS FOR */
.who-for {
background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=1000');
background-size: cover;
padding: 80px 10%;
text-align: center;
margin: 60px 0;
}
.who-grid {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
margin-top: 30px;
}
.who-box {
background: rgba(10, 15, 28, 0.9);
padding: 30px;
border-radius: 15px;
width: 280px;
border: 1px solid var(--primary-cyan);
}
/* CTA */
.cta-section {
text-align: center;
padding: 100px 10%;
background: linear-gradient(to bottom, var(--dark-bg), #111827);
}
.btn-main {
padding: 18px 40px;
background: var(--primary-cyan);
color: #000;
text-decoration: none;
font-weight: bold;
border-radius: 50px;
font-size: 1.2rem;
transition: 0.3s;
display: inline-block;
}
.btn-main:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(0,198,255,0.5); }
@media (max-width: 768px) {
.spin-circle { width: 250px; height: 250px; }
.node { width: 60px; height: 60px; font-size: 0.6rem; }
.node:nth-child(1) { top: -30px; }
.node:nth-child(2) { bottom: -30px; }
.node:nth-child(3) { left: -30px; }
.node:nth-child(4) { right: -30px; }
}
</style>
</head>
<body>
<nav>
<a href="index.html" class="logo">DeployLynx</a>
<div class="menu">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="services.html" class="active">Services</a>
<a href="case-studies.html">Case Studies</a>
<a href="contact.html">Contact</a>
</div>
</nav>
<header class="hero">
<h1>Enterprise-Grade DevOps & Cloud Solutions</h1>
<p>Automate deployments, scale infrastructure, and reduce operational risk with DeployLynx.</p>
</header>
<section class="services-top">
<div class="visual-container">
<div class="spin-circle">
<div class="node">AWS</div>
<div class="node">CI/CD</div>
<div class="node">Docker</div>
<div class="node">AI</div>
</div>
</div>
<div class="service-cards-short">
<div class="mini-card">
<h3>⚙ DevOps CI/CD Pipelines</h3>
<p>Automated, production-ready pipelines for rapid release cycles using GitHub Actions & Jenkins.</p>
</div>
<div class="mini-card">
<h3>☁ AWS Cloud Architecture</h3>
<p>Secure and cost-efficient environments built with Terraform and IaC best practices.</p>
</div>
<div class="mini-card">
<h3>🤖 AI Automation Systems</h3>
<p>Deploying LLMs and AI agents to eliminate manual operations and boost productivity.</p>
</div>
<div class="mini-card">
<h3>🐳 Kubernetes & Containerization</h3>
<p>Production-grade orchestration ensuring system resilience and global scalability.</p>
</div>
</div>
</section>
<h2 class="section-title">Challenges We Solve</h2>
<div class="table-container">
<table>
<thead>
<tr>
<th>The Challenge</th>
<th>DeployLynx Solution</th>
</tr>
</thead>
<tbody>
<tr>
<td>Slow, manual deployments</td>
<td>End-to-end CI/CD Pipelines</td>
</tr>
<tr>
<td>Frequent downtime under load</td>
<td>Kubernetes + Auto-scaling Infrastructure</td>
</tr>
<tr>
<td>Skyrocketing AWS/Cloud costs</td>
<td>Architecture Optimization & Cost Controls</td>
</tr>
<tr>
<td>Security vulnerabilities & leaks</td>
<td>DevSecOps & Automated Compliance</td>
</tr>
</tbody>
</table>
</div>
<h2 class="section-title">Comprehensive Service Portfolio</h2>
<div class="services-grid">
<div class="full-card">
<h3>Cloud Migration & Architecture</h3>
<p>Migrate workloads with zero downtime. Optimized for cost, performance, and resilience.</p>
<ul>
<li>Cloud readiness assessment</li>
<li>Multi-cloud strategy & design</li>
<li>Zero-downtime migration</li>
</ul>
</div>
<div class="full-card">
<h3>Infrastructure as Code (IaC)</h3>
<p>Reproducible, version-controlled infrastructure with Terraform and Ansible. No more manual drift.</p>
<ul>
<li>Terraform modules & state mgmt</li>
<li>Ansible playbooks & roles</li>
<li>Drift detection & remediation</li>
</ul>
</div>
<div class="full-card">
<h3>DevSecOps & Compliance</h3>
<p>Security integrated into every step of the pipeline to protect your data and reputation.</p>
<ul>
<li>Vulnerability scanning (Trivy/Prisma)</li>
<li>Secrets management (HashiCorp Vault)</li>
<li>Policy-as-code (OPA) & Audits</li>
</ul>
</div>
<div class="full-card">
<h3>Monitoring & Observability</h3>
<p>Full-stack observability. Never be blindsided by outages again.</p>
<ul>
<li>Prometheus + Grafana dashboards</li>
<li>Log aggregation & alerting</li>
<li>SLO/SLI tracking & Response</li>
</ul>
</div>
</div>
<section class="who-for">
<h2>Who This Is For</h2>
<div class="who-grid">
<div class="who-box">
<h4>Startups</h4>
<p>Scaling from MVP to production-ready architecture.</p>
</div>
<div class="who-box">
<h4>SaaS Companies</h4>
<p>Handling high traffic with 99.9% uptime requirements.</p>
</div>
<div class="who-box">
<h4>Enterprises</h4>
<p>Modernizing legacy infrastructure for the cloud-native era.</p>
</div>
</div>
</section>
<section class="cta-section">
<h2>Ready to Scale Your Infrastructure?</h2>
<p style="margin-bottom: 30px; color: #94a3b8;">Let's build a reliable, automated foundation for your business.</p>
<a href="contact.html" class="btn-main">Book a Free Infrastructure Consultation</a>
</section>
<footer style="text-align: center; padding: 40px; color: #64748b; border-top: 1px solid rgba(255,255,255,0.05);">
© 2026 DeployLynx | Engineering Scalable Digital Ecosystems
</footer>
</body>
</html>