-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
506 lines (444 loc) · 14.3 KB
/
index.html
File metadata and controls
506 lines (444 loc) · 14.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ExtractMethod - Software development excellence</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Lexend:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-30665247-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-30665247-1');
</script>
<style>
:root {
--primary: #1a1a2e;
--secondary: #16213e;
--accent: #0f3460;
--highlight: #e94560;
--light: #f8f9fa;
--text-dark: #2d3436;
--text-light: #636e72;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'DM Sans', sans-serif;
color: var(--text-dark);
background: var(--light);
overflow-x: hidden;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 50%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(15, 52, 96, 0.2) 0%, transparent 50%);
animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 0.5; }
50% { opacity: 1; }
}
.hero-content {
position: relative;
z-index: 2;
color: white;
animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero h1 {
font-family: 'Lexend', sans-serif;
font-size: clamp(3rem, 8vw, 6rem);
font-weight: 700;
margin-bottom: 1.5rem;
line-height: 1.1;
letter-spacing: -0.02em;
}
.hero .tagline {
font-size: clamp(1.1rem, 2.5vw, 1.5rem);
font-weight: 300;
opacity: 0.9;
max-width: 600px;
margin-bottom: 2rem;
animation: fadeInUp 1s ease-out 0.2s both;
}
.hero .years-badge {
display: inline-block;
background: rgba(233, 69, 96, 0.2);
border: 2px solid var(--highlight);
padding: 0.5rem 1.5rem;
border-radius: 50px;
font-weight: 600;
font-size: 1rem;
margin-top: 1rem;
animation: fadeInUp 1s ease-out 0.4s both;
}
/* Section Styling */
section {
padding: 5rem 0;
position: relative;
}
.section-title {
font-family: 'Lexend', sans-serif;
font-size: clamp(2.5rem, 5vw, 3.5rem);
font-weight: 600;
margin-bottom: 1rem;
color: var(--primary);
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 60%;
height: 4px;
background: var(--highlight);
}
.section-subtitle {
font-size: 1.2rem;
color: var(--text-light);
margin-bottom: 3rem;
font-weight: 300;
}
/* About Section */
.about-section {
background: white;
}
.about-text {
font-size: 1.15rem;
line-height: 1.8;
color: var(--text-dark);
}
.about-text strong {
color: var(--highlight);
}
/* Skills Grid */
.skills-section {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.skill-card {
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 40px rgba(0,0,0,0.05);
transition: all 0.3s ease;
height: 100%;
border: 1px solid rgba(0,0,0,0.05);
}
.skill-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(233, 69, 96, 0.15);
}
.skill-card i {
font-size: 3rem;
color: var(--highlight);
margin-bottom: 1.5rem;
}
.skill-card h3 {
font-family: 'Lexend', sans-serif;
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--primary);
}
.skill-card p {
color: var(--text-light);
font-size: 1rem;
line-height: 1.6;
}
/* Tech Stack */
.tech-badge {
display: inline-block;
padding: 0.75rem 1.5rem;
margin: 0.5rem;
background: var(--primary);
color: white;
border-radius: 8px;
font-weight: 500;
font-size: 1rem;
transition: all 0.3s ease;
border: 2px solid var(--primary);
}
.tech-badge:hover {
background: transparent;
color: var(--primary);
transform: scale(1.05);
}
/* Services Section */
.services-section {
background: white;
}
.service-item {
padding: 3rem;
background: linear-gradient(135deg, var(--light) 0%, white 100%);
border-radius: 20px;
margin-bottom: 2rem;
border-left: 5px solid var(--highlight);
transition: all 0.3s ease;
}
.service-item:hover {
transform: translateX(10px);
box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}
.service-item h3 {
font-family: 'Lexend', sans-serif;
font-size: 2rem;
color: var(--primary);
margin-bottom: 1rem;
}
.service-item p {
font-size: 1.1rem;
color: var(--text-light);
line-height: 1.7;
}
/* Experience Bar */
.experience-bar {
background: var(--primary);
padding: 3rem 0;
margin: 5rem 0;
}
.experience-bar h3 {
font-family: 'Playfair Display', serif;
color: white;
font-size: 1.8rem;
margin-bottom: 2rem;
text-align: center;
}
/* Client Logos Section */
.clients-section {
background: var(--secondary);
padding: 4rem 0;
}
.clients-section h3 {
font-family: 'Playfair Display', serif;
color: white;
font-size: 1.5rem;
margin-bottom: 2rem;
text-align: center;
opacity: 0.8;
font-weight: 400;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.logo-container {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 4rem;
padding: 2rem 0;
}
.client-logo {
background: white;
padding: 1.5rem 3rem;
border-radius: 10px;
transition: all 0.3s ease;
min-width: 200px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.client-logo:hover {
transform: translateY(-5px);
box-shadow: 0 10px 40px rgba(233, 69, 96, 0.2);
}
.client-logo a {
text-decoration: none;
color: var(--primary);
font-weight: 600;
font-size: 1.3rem;
font-family: 'Playfair Display', serif;
}
/* Experience Companies */
.company-logos {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.company-item {
background: rgba(255,255,255,0.1);
padding: 1.5rem;
border-radius: 10px;
text-align: center;
color: white;
font-weight: 500;
font-size: 1rem;
transition: all 0.3s ease;
border: 1px solid rgba(255,255,255,0.2);
}
.company-item:hover {
background: rgba(255,255,255,0.2);
transform: scale(1.05);
}
/* Footer */
footer {
background: var(--primary);
color: white;
padding: 3rem 0;
text-align: center;
}
footer p {
margin: 0;
opacity: 0.8;
font-weight: 300;
}
/* Responsive */
@media (max-width: 768px) {
.hero {
min-height: 80vh;
}
section {
padding: 3rem 0;
}
.service-item {
padding: 2rem;
}
.logo-container {
gap: 2rem;
}
.client-logo {
min-width: 150px;
padding: 1rem 2rem;
}
}
</style>
</head>
<body>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="row">
<div class="col-lg-10 mx-auto">
<div class="hero-content">
<h1>ExtractMethod</h1>
<p class="tagline">We build robust software solutions that scale. From startup MVPs to enterprise systems, we deliver clean code and exceptional results.</p>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section class="about-section">
<div class="container">
<div class="row">
<div class="col-lg-10 mx-auto">
<h2 class="section-title">About us</h2>
<p class="section-subtitle">Building software with precision and care</p>
<p class="about-text">
We specialise in building everything from large monolithic Rails applications to modern service-oriented architectures. We have worked with industry leaders and helped startups bring their vision to life, always focusing on clean code, scalability, and results that matter.
</p>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section class="skills-section">
<div class="container">
<div class="row mb-5">
<div class="col-lg-10 mx-auto text-center">
<h2 class="section-title">What We Do</h2>
<p class="section-subtitle">Comprehensive software development services</p>
</div>
</div>
<div class="row g-4">
<div class="col-md-4">
<div class="skill-card">
<i class="fas fa-rocket"></i>
<h3>Startup Applications</h3>
<p>We help startups bring their vision to life with scalable, well-architected applications built for rapid growth and iteration.</p>
</div>
</div>
<div class="col-md-4">
<div class="skill-card">
<i class="fas fa-users-cog"></i>
<h3>Custom CRM solutions</h3>
<p>Tailored customer relationship management systems designed to streamline operations and enhance customer engagement.</p>
</div>
</div>
<div class="col-md-4">
<div class="skill-card">
<i class="fas fa-network-wired"></i>
<h3>Enterprise development</h3>
<p>From monolithic applications to microservices, we build robust solutions that scale with your business needs.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Services Detail Section -->
<section class="services-section">
<div class="container">
<div class="row">
<div class="col-lg-10 mx-auto">
<h2 class="section-title mb-5">Our expertise</h2>
<div class="service-item">
<h3><i class="fas fa-code me-3"></i>Full-Stack development</h3>
<p>Expert Ruby on Rails development with modern JavaScript frameworks. We build complete solutions from database architecture to polished user interfaces.</p>
</div>
<div class="service-item">
<h3><i class="fas fa-layer-group me-3"></i>Architecture & Scaling</h3>
<p>Whether you need a monolithic application or a service-oriented architecture, we design systems that grow with your business.</p>
</div>
<div class="service-item">
<h3><i class="fas fa-wrench me-3"></i>Legacy modernisation</h3>
<p>Breathe new life into existing applications. We refactor, optimise, and modernise legacy codebases while maintaining business continuity.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p>© 2011-<span id="year"></span> ExtractMethod Ltd. Building software that matters.</p>
<p style="opacity: 0.6; font-size: 0.9rem; margin-top: 1rem;">
Registered company number: 7745867<br>
Registered office: International House, 64 Nile Street, London, N1 7SR<br>
<a href="mailto:info@extractmethod.com" style="color: var(--highlight); text-decoration: none;">info@extractmethod.com</a>
</p>
</div>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script>
// Set current year dynamically
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>