-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2521 lines (2303 loc) · 91.3 KB
/
index.html
File metadata and controls
2521 lines (2303 loc) · 91.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
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" class="scroll-smooth">
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5JXQT94F');</script>
<!-- End Google Tag Manager -->
<!-- Google tag Analytics (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NVB62K571Z"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-NVB62K571Z");
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Meta Tags - Will be updated dynamically -->
<title
data-en="Nirmatic - Software Architecture & Technology Solutions"
data-es="Nirmatic - Arquitectura de Software & Soluciones Tecnológicas"
>
Nirmatic - Software Architecture & Technology Solutions
</title>
<meta
name="description"
content="We design and implement scalable and secure software architectures to drive your digital transformation. Over 20 years of experience in LATAM."
data-en="We design and implement scalable and secure software architectures to drive your digital transformation. Over 20 years of experience in LATAM."
data-es="Diseñamos e implementamos arquitecturas de software escalables y seguras para impulsar tu transformación digital. Más de 20 años de experiencia en LATAM."
/>
<meta
name="keywords"
content="software architecture, cloud solutions, microservices, digital transformation, enterprise software, scalable systems, technology consulting"
/>
<meta name="author" content="Nirmatic" />
<meta name="robots" content="index, follow" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://nirmatic.dev/" />
<meta
property="og:title"
content="Nirmatic - Software Architecture & Technology Solutions"
data-en="Nirmatic - Software Architecture & Technology Solutions"
data-es="Nirmatic - Arquitectura de Software & Soluciones Tecnológicas"
/>
<meta
property="og:description"
content="We design and implement scalable and secure software architectures to drive your digital transformation. Over 20 years of experience in LATAM."
data-en="We design and implement scalable and secure software architectures to drive your digital transformation. Over 20 years of experience in LATAM."
data-es="Diseñamos e implementamos arquitecturas de software escalables y seguras para impulsar tu transformación digital. Más de 20 años de experiencia en LATAM."
/>
<meta property="og:image" content="https://nirmatic.dev/og-image.jpg" />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="Nirmatic" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://nirmatic.dev/" />
<meta
property="twitter:title"
content="Nirmatic - Software Architecture & Technology Solutions"
data-en="Nirmatic - Software Architecture & Technology Solutions"
data-es="Nirmatic - Arquitectura de Software & Soluciones Tecnológicas"
/>
<meta
property="twitter:description"
content="We design and implement scalable and secure software architectures to drive your digital transformation. Over 20 years of experience in LATAM."
data-en="We design and implement scalable and secure software architectures to drive your digital transformation. Over 20 years of experience in LATAM."
data-es="Diseñamos e implementamos arquitecturas de software escalables y seguras para impulsar tu transformación digital. Más de 20 años de experiencia en LATAM."
/>
<meta
property="twitter:image"
content="https://nirmatic.dev/twitter-image.jpg"
/>
<!-- Language and Canonical -->
<link rel="canonical" href="https://nirmatic.dev/" />
<link rel="alternate" hreflang="en" href="https://nirmatic.dev/" />
<link rel="alternate" hreflang="es" href="https://nirmatic.dev/es/" />
<link rel="alternate" hreflang="x-default" href="https://nirmatic.dev/" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Nirmatic",
"url": "https://nirmatic.dev",
"logo": "https://nirmatic.dev/logo.png",
"description": "We design and implement scalable and secure software architectures to drive your digital transformation.",
"address": {
"@type": "PostalAddress",
"addressRegion": "LATAM"
},
"contactPoint": {
"@type": "ContactPoint",
"contactType": "customer service",
"email": "contacto@nirmatic.dev"
},
"sameAs": [
"https://linkedin.com/company/nirmatic",
"https://twitter.com/nirmatic",
"https://github.com/nirmatic"
],
"foundingDate": "2004",
"numberOfEmployees": "10-50",
"industry": "Software Development",
"services": [
"Software Architecture",
"Cloud Solutions",
"Technical Mentoring",
"Legacy Migration",
"Security & Compliance",
"AI Innovation"
]
}
</script>
<link
rel="icon"
type="image/svg+xml"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🔷</text></svg>"
/>
<script src="https://cdn.tailwindcss.com"></script>
<script>
// Wait for Tailwind to load before configuring
document.addEventListener("DOMContentLoaded", function () {
if (typeof tailwind !== "undefined") {
tailwind.config = {
darkMode: "class",
theme: {
extend: {
colors: {
nirmatic: {
primary: {
light: "#2563eb",
DEFAULT: "#1d4ed8",
dark: "#1e40af",
},
secondary: {
light: "#7c3aed",
DEFAULT: "#6d28d9",
dark: "#5b21b6",
},
neutral: {
50: "#fafafa",
100: "#f4f4f5",
200: "#e4e4e7",
300: "#d4d4d8",
400: "#a1a1aa",
500: "#71717a",
600: "#52525b",
700: "#3f3f46",
800: "#27272a",
900: "#18181b",
},
},
},
fontFamily: {
sans: ["Inter var", "system-ui", "sans-serif"],
mono: ["JetBrains Mono", "monospace"],
},
animation: {
"fade-in": "fadeIn 0.5s ease-out",
"slide-up": "slideUp 0.5s ease-out",
},
keyframes: {
fadeIn: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
slideUp: {
"0%": { transform: "translateY(10px)", opacity: "0" },
"100%": { transform: "translateY(0)", opacity: "1" },
},
},
},
},
};
}
});
</script>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap"
rel="stylesheet"
/>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<style>
:root {
--nirmatic-primary: #1d4ed8;
--nirmatic-primary-light: #2563eb;
--nirmatic-primary-dark: #1e40af;
--nirmatic-secondary: #6d28d9;
--nirmatic-secondary-light: #7c3aed;
--nirmatic-secondary-dark: #5b21b6;
--nirmatic-neutral-50: #fafafa;
--nirmatic-neutral-100: #f4f4f5;
--nirmatic-neutral-200: #e4e4e7;
--nirmatic-neutral-300: #d4d4d8;
--nirmatic-neutral-400: #a1a1aa;
--nirmatic-neutral-500: #71717a;
--nirmatic-neutral-600: #52525b;
--nirmatic-neutral-700: #3f3f46;
--nirmatic-neutral-800: #27272a;
--nirmatic-neutral-900: #18181b;
}
@media (prefers-color-scheme: dark) {
:root {
--nirmatic-primary: #3b82f6;
--nirmatic-primary-light: #60a5fa;
--nirmatic-primary-dark: #2563eb;
--nirmatic-secondary: #8b5cf6;
--nirmatic-secondary-light: #a78bfa;
--nirmatic-secondary-dark: #7c3aed;
}
}
.dark {
--nirmatic-primary: #3b82f6;
--nirmatic-primary-light: #60a5fa;
--nirmatic-primary-dark: #2563eb;
--nirmatic-secondary: #8b5cf6;
--nirmatic-secondary-light: #a78bfa;
--nirmatic-secondary-dark: #7c3aed;
}
html {
scroll-behavior: smooth;
}
.focus-visible {
outline: 2px solid var(--nirmatic-primary);
outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
.prose {
color: inherit;
}
.prose h2 {
color: inherit;
font-weight: 600;
margin-top: 2rem;
margin-bottom: 1rem;
}
.prose p {
margin-bottom: 1rem;
line-height: 1.625;
}
.prose ul {
list-style-type: disc;
padding-left: 1.625rem;
margin-bottom: 1rem;
}
.prose li {
margin-bottom: 0.5rem;
}
.skip-to-content {
position: absolute;
top: -40px;
left: 0;
background: var(--nirmatic-primary);
color: white;
padding: 8px;
z-index: 10000;
}
.skip-to-content:focus {
top: 0;
}
.pattern-dots {
background-image: radial-gradient(var(--nirmatic-neutral-300) 1.5px, transparent 1.5px);
background-size: 20px 20px;
}
.dark .pattern-dots {
background-image: radial-gradient(var(--nirmatic-neutral-700) 1.5px, transparent 1.5px);
}
.tech-stack-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
gap: 1.5rem;
}
.floating-card {
animation: float 6s ease-in-out infinite;
}
@media (max-width: 768px) {
.mobile-sticky-cta {
display: block !important;
}
}
.loading-spinner {
display: inline-block;
width: 1.5rem;
height: 1.5rem;
border: 3px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top-color: white;
animation: spin 1s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.modal {
transform: translate(-50%, -50%) scale(0.95);
opacity: 0;
transition: all 0.3s ease;
}
.modal.active {
transform: translate(-50%, -50%) scale(1);
opacity: 1;
}
.parallax-container {
position: relative;
overflow: hidden;
}
.parallax-bg {
position: absolute;
top: -10%;
left: -10%;
width: 120%;
height: 120%;
background-size: cover;
background-position: center;
will-change: transform;
transition: all 0.1s linear;
}
/* Language selector styles */
.language-selector {
position: relative;
}
.language-dropdown {
position: absolute;
top: 100%;
right: 0;
background: white;
border: 1px solid var(--nirmatic-neutral-200);
border-radius: 0.5rem;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
min-width: 120px;
z-index: 1000;
}
.dark .language-dropdown {
background: var(--nirmatic-neutral-800);
border-color: var(--nirmatic-neutral-700);
}
[data-lang]:not([data-lang="en"]) {
display: none;
}
html[lang="es"] [data-lang="en"] {
display: none;
}
html[lang="es"] [data-lang="es"] {
display: block;
}
html[lang="es"] [data-lang="es"].inline {
display: inline;
}
html[lang="es"] [data-lang="es"].flex {
display: flex;
}
html[lang="es"] [data-lang="es"].grid {
display: grid;
}
[data-lang="es"] {
display: none;
}
</style>
</head>
<body class="bg-nirmatic-neutral-50 text-nirmatic-neutral-800 dark:bg-nirmatic-neutral-900 dark:text-nirmatic-neutral-100 font-sans antialiased transition-colors duration-300">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5JXQT94F"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<a href="#main-content" class="skip-to-content" data-lang="en"
>Skip to main content</a
>
<a href="#main-content" class="skip-to-content" data-lang="es"
>Saltar al contenido principal</a
>
<!-- Floating Action Button for Mobile -->
<a
href="#contact"
class="hidden mobile-sticky-cta fixed bottom-6 right-6 z-50 bg-nirmatic-primary text-white rounded-full p-4 shadow-xl hover:bg-nirmatic-primary-dark transition-all duration-300"
>
<i data-feather="mail"></i>
</a>
<!-- Back to Top Button -->
<button
id="back-to-top"
class="fixed bottom-6 right-6 z-50 bg-nirmatic-primary text-white rounded-full p-4 shadow-xl hover:bg-nirmatic-primary-dark transition-all duration-300 hidden"
title="Volver arriba"
>
<i data-feather="arrow-up"></i>
</button>
<!-- Header -->
<header
id="header"
class="fixed top-0 left-0 right-0 z-50 transition-all duration-300 bg-white/80 dark:bg-nirmatic-neutral-900/80 backdrop-blur-md border-b border-nirmatic-neutral-200/50 dark:border-nirmatic-neutral-800"
>
<div class="container mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16 md:h-20">
<!-- Logo -->
<a href="#" class="flex items-center space-x-2">
<div
class="w-8 h-8 bg-nirmatic-primary rounded-lg flex items-center justify-center text-white font-bold"
>
N
</div>
<span class="text-xl font-semibold">Nirmatic</span>
</a>
<!-- Desktop Navigation -->
<nav class="hidden md:flex items-center space-x-8">
<a
href="#services"
class="text-nirmatic-neutral-600 hover:text-nirmatic-primary dark:text-nirmatic-neutral-300 dark:hover:text-nirmatic-primary-light transition-colors"
data-lang="en"
>Services</a
>
<a
href="#services"
class="text-nirmatic-neutral-600 hover:text-nirmatic-primary dark:text-nirmatic-neutral-300 dark:hover:text-nirmatic-primary-light transition-colors"
data-lang="es"
>Servicios</a
>
<a
href="#case-studies"
class="text-nirmatic-neutral-600 hover:text-nirmatic-primary dark:text-nirmatic-neutral-300 dark:hover:text-nirmatic-primary-light transition-colors"
data-lang="en"
>Projects</a
>
<a
href="#case-studies"
class="text-nirmatic-neutral-600 hover:text-nirmatic-primary dark:text-nirmatic-neutral-300 dark:hover:text-nirmatic-primary-light transition-colors"
data-lang="es"
>Proyectos</a
>
<a
href="#about"
class="text-nirmatic-neutral-600 hover:text-nirmatic-primary dark:text-nirmatic-neutral-300 dark:hover:text-nirmatic-primary-light transition-colors"
data-lang="en"
>About</a
>
<a
href="#about"
class="text-nirmatic-neutral-600 hover:text-nirmatic-primary dark:text-nirmatic-neutral-300 dark:hover:text-nirmatic-primary-light transition-colors"
data-lang="es"
>Nosotros</a
>
<a
href="#blog"
class="text-nirmatic-neutral-600 hover:text-nirmatic-primary dark:text-nirmatic-neutral-300 dark:hover:text-nirmatic-primary-light transition-colors"
>Blog</a
>
<a
href="#contact"
class="bg-nirmatic-primary text-white px-4 py-2 rounded-lg hover:bg-nirmatic-primary-dark transition-colors"
data-lang="en"
>Contact</a
>
<a
href="#contact"
class="bg-nirmatic-primary text-white px-4 py-2 rounded-lg hover:bg-nirmatic-primary-dark transition-colors"
data-lang="es"
>Contacto</a
>
</nav>
<div class="flex items-center space-x-2">
<!-- Language Selector -->
<div class="language-selector relative">
<button
id="language-toggle"
class="p-2 rounded-md text-nirmatic-neutral-600 dark:text-nirmatic-neutral-300 hover:text-nirmatic-primary dark:hover:text-nirmatic-primary-light flex items-center space-x-1"
aria-label="Select language"
aria-expanded="false"
>
<i data-feather="globe"></i>
<span id="current-language" class="text-sm">EN</span>
</button>
<div id="language-dropdown" class="language-dropdown hidden">
<a
href="#"
onclick="switchLanguage('en')"
class="block px-4 py-2 text-sm hover:bg-nirmatic-neutral-100 dark:hover:bg-nirmatic-neutral-700 transition-colors"
>🇺🇸 English</a
>
<a
href="#"
onclick="switchLanguage('es')"
class="block px-4 py-2 text-sm hover:bg-nirmatic-neutral-100 dark:hover:bg-nirmatic-neutral-700 transition-colors"
>🇪🇸 Español</a
>
</div>
</div>
<!-- Dark Mode Toggle -->
<button
id="dark-mode-toggle"
class="p-2 rounded-md text-nirmatic-neutral-600 dark:text-nirmatic-neutral-300 hover:text-nirmatic-primary dark:hover:text-nirmatic-primary-light"
aria-label="Toggle dark/light mode"
>
<i data-feather="moon" class="hidden dark:block"></i>
<i data-feather="sun" class="dark:hidden"></i>
</button>
<!-- Mobile Menu Button -->
<button
id="mobile-menu-button"
class="md:hidden p-2 rounded-md text-nirmatic-neutral-600 dark:text-nirmatic-neutral-300 hover:text-nirmatic-primary dark:hover:text-nirmatic-primary-light"
aria-label="Open menu"
aria-expanded="false"
>
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
<!-- Mobile Navigation -->
<div
id="mobile-menu"
class="md:hidden hidden absolute top-full left-0 right-0 bg-white dark:bg-nirmatic-neutral-800 border-b border-nirmatic-neutral-200 dark:border-nirmatic-neutral-700 shadow-lg"
>
<div class="container mx-auto px-4 py-4">
<nav class="flex flex-col space-y-4">
<a
href="#services"
class="text-nirmatic-neutral-600 hover:text-nirmatic-primary dark:text-nirmatic-neutral-300 dark:hover:text-nirmatic-primary-light transition-colors py-2"
data-lang="en"
>Services</a
>
<a
href="#services"
class="text-nirmatic-neutral-600 hover:text-nirmatic-primary dark:text-nirmatic-neutral-300 dark:hover:text-nirmatic-primary-light transition-colors py-2"
data-lang="es"
>Servicios</a
>
<a
href="#case-studies"
class="text-nirmatic-neutral-600 hover:text-nirmatic-primary dark:text-nirmatic-neutral-300 dark:hover:text-nirmatic-primary-light transition-colors py-2"
data-lang="en"
>Projects</a
>
<a
href="#case-studies"
class="text-nirmatic-neutral-600 hover:text-nirmatic-primary dark:text-nirmatic-neutral-300 dark:hover:text-nirmatic-primary-light transition-colors py-2"
data-lang="es"
>Proyectos</a
>
<a
href="#about"
class="text-nirmatic-neutral-600 hover:text-nirmatic-primary dark:text-nirmatic-neutral-300 dark:hover:text-nirmatic-primary-light transition-colors py-2"
data-lang="en"
>About</a
>
<a
href="#about"
class="text-nirmatic-neutral-600 hover:text-nirmatic-primary dark:text-nirmatic-neutral-300 dark:hover:text-nirmatic-primary-light transition-colors py-2"
data-lang="es"
>Nosotros</a
>
<a
href="#blog"
class="text-nirmatic-neutral-600 hover:text-nirmatic-primary dark:text-nirmatic-neutral-300 dark:hover:text-nirmatic-primary-light transition-colors py-2"
>Blog</a
>
<a
href="#contact"
class="bg-nirmatic-primary text-white px-4 py-2 rounded-lg hover:bg-nirmatic-primary-dark transition-colors text-center"
data-lang="en"
>Contact</a
>
<a
href="#contact"
class="bg-nirmatic-primary text-white px-4 py-2 rounded-lg hover:bg-nirmatic-primary-dark transition-colors text-center"
data-lang="es"
>Contacto</a
>
</nav>
</div>
</div>
</header>
<main id="main-content" class="pt-16 md:pt-20">
<!-- Hero Section -->
<section class="relative min-h-screen flex items-center overflow-hidden">
<div
class="absolute inset-0 bg-gradient-to-br from-nirmatic-primary/10 to-nirmatic-secondary/10"
></div>
<div
class="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Ik0wIDBoMjB2MjBIMHoiIHN0cm9rZT0iI2Q0ZDRkOCIgc3Ryb2tlLW9wYWNpdHk9Ii4xIiBmaWxsPSJub25lIiBzdHJva2Utd2lkdGg9IjAuNSIvPjwvc3ZnPg==')] opacity-10"
></div>
<div class="container mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div data-aos="fade-right">
<!-- English Hero -->
<div data-lang="en">
<h1
class="text-4xl sm:text-5xl lg:text-6xl font-bold mb-6 leading-tight"
>
<span class="text-nirmatic-primary">Scalable</span>
Software Architectures for the Digital Future
</h1>
<p
class="text-xl text-nirmatic-neutral-600 dark:text-nirmatic-neutral-300 mb-8 leading-relaxed"
>
We design and implement robust technological solutions that
drive digital transformation for large enterprises across
LATAM.
</p>
<div class="flex flex-col sm:flex-row gap-4">
<a
href="#contact"
class="bg-nirmatic-primary text-white px-8 py-4 rounded-lg hover:bg-nirmatic-primary-dark transition-colors text-center font-semibold"
>
Start Project
</a>
<a
href="#services"
class="border border-nirmatic-neutral-300 dark:border-nirmatic-neutral-700 text-nirmatic-neutral-700 dark:text-nirmatic-neutral-300 px-8 py-4 rounded-lg hover:border-nirmatic-primary hover:text-nirmatic-primary dark:hover:border-nirmatic-primary-light dark:hover:text-nirmatic-primary-light transition-colors text-center"
>
View Services
</a>
</div>
</div>
<!-- Spanish Hero -->
<div data-lang="es">
<h1
class="text-4xl sm:text-5xl lg:text-6xl font-bold mb-6 leading-tight"
>
Arquitecturas de Software
<span class="text-nirmatic-primary">Escalables</span>
para el Futuro Digital
</h1>
<p
class="text-xl text-nirmatic-neutral-600 dark:text-nirmatic-neutral-300 mb-8 leading-relaxed"
>
Diseñamos e implementamos soluciones tecnológicas robustas que
impulsan la transformación digital de grandes empresas en
LATAM.
</p>
<div class="flex flex-col sm:flex-row gap-4">
<a
href="#contact"
class="bg-nirmatic-primary text-white px-8 py-4 rounded-lg hover:bg-nirmatic-primary-dark transition-colors text-center font-semibold"
>
Comenzar Proyecto
</a>
<a
href="#services"
class="border border-nirmatic-neutral-300 dark:border-nirmatic-neutral-700 text-nirmatic-neutral-700 dark:text-nirmatic-neutral-300 px-8 py-4 rounded-lg hover:border-nirmatic-primary hover:text-nirmatic-primary dark:hover:border-nirmatic-primary-light dark:hover:text-nirmatic-primary-light transition-colors text-center"
>
Ver Servicios
</a>
</div>
</div>
</div>
<div data-aos="fade-left" class="hidden md:block">
<div class="relative">
<div
class="absolute -inset-4 bg-gradient-to-r from-nirmatic-primary/20 to-nirmatic-secondary/20 rounded-2xl transform rotate-3"
></div>
<div
class="relative bg-white dark:bg-nirmatic-neutral-800 rounded-2xl p-8 shadow-2xl"
>
<div class="space-y-6">
<div class="flex items-center space-x-4">
<div
class="w-12 h-12 bg-nirmatic-primary/10 rounded-lg flex items-center justify-center"
>
<i data-feather="cpu" class="text-nirmatic-primary"></i>
</div>
<div>
<h3 class="font-semibold" data-lang="en">
Cloud Architectures
</h3>
<h3 class="font-semibold" data-lang="es">
Arquitecturas Cloud
</h3>
<p class="text-sm text-nirmatic-neutral-500">
AWS, Azure, GCP
</p>
</div>
</div>
<div class="flex items-center space-x-4">
<div
class="w-12 h-12 bg-nirmatic-secondary/10 rounded-lg flex items-center justify-center"
>
<i
data-feather="shield"
class="text-nirmatic-secondary"
></i>
</div>
<div>
<h3 class="font-semibold" data-lang="en">
Enterprise Security
</h3>
<h3 class="font-semibold" data-lang="es">
Seguridad Enterprise
</h3>
<p
class="text-sm text-nirmatic-neutral-500"
data-lang="en"
>
Regulatory compliance
</p>
<p
class="text-sm text-nirmatic-neutral-500"
data-lang="es"
>
Cumplimiento normativo
</p>
</div>
</div>
<div class="flex items-center space-x-4">
<div
class="w-12 h-12 bg-nirmatic-primary/10 rounded-lg flex items-center justify-center"
>
<i
data-feather="users"
class="text-nirmatic-primary"
></i>
</div>
<div>
<h3 class="font-semibold" data-lang="en">
Technical Mentoring
</h3>
<h3 class="font-semibold" data-lang="es">
Mentoría Técnica
</h3>
<p class="text-sm text-nirmatic-neutral-500">
Best practices
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section
id="services"
class="py-20 bg-nirmatic-neutral-50 dark:bg-nirmatic-neutral-900"
>
<div class="container mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-3xl sm:text-4xl font-bold mb-4" data-lang="en">
Our Services
</h2>
<h2 class="text-3xl sm:text-4xl font-bold mb-4" data-lang="es">
Nuestros Servicios
</h2>
<p
class="text-xl text-nirmatic-neutral-600 dark:text-nirmatic-neutral-300 max-w-3xl mx-auto"
data-lang="en"
>
Complete solutions for every stage of your digital journey
</p>
<p
class="text-xl text-nirmatic-neutral-600 dark:text-nirmatic-neutral-300 max-w-3xl mx-auto"
data-lang="es"
>
Soluciones completas para cada etapa de tu journey digital
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service Card 1 -->
<div
class="bg-white dark:bg-nirmatic-neutral-800 rounded-2xl p-8 shadow-lg hover:shadow-xl transition-all duration-300 transform hover:-translate-y-2"
data-aos="fade-up"
data-aos-delay="100"
>
<div
class="w-16 h-16 bg-nirmatic-primary/10 rounded-2xl flex items-center justify-center mb-6"
>
<i
data-feather="layers"
class="w-8 h-8 text-nirmatic-primary"
></i>
</div>
<h3 class="text-xl font-semibold mb-4" data-lang="en">
Software Architecture
</h3>
<h3 class="text-xl font-semibold mb-4" data-lang="es">
Arquitecturas de Software
</h3>
<p
class="text-nirmatic-neutral-600 dark:text-nirmatic-neutral-300 mb-6"
data-lang="en"
>
We design and implement solutions using modern technologies,
ensuring performance and scalability.
</p>
<p
class="text-nirmatic-neutral-600 dark:text-nirmatic-neutral-300 mb-6"
data-lang="es"
>
Diseñamos e implementamos soluciones utilizando tecnologías
modernas, asegurando rendimiento y escalabilidad.
</p>
<ul class="space-y-2 text-sm text-nirmatic-neutral-500">
<li class="flex items-center">
<i
data-feather="check"
class="w-4 h-4 text-nirmatic-primary mr-2"
></i>
Microservices & APIs
</li>
<li class="flex items-center">
<i
data-feather="check"
class="w-4 h-4 text-nirmatic-primary mr-2"
></i>
Cloud Native
</li>
<li class="flex items-center">
<i
data-feather="check"
class="w-4 h-4 text-nirmatic-primary mr-2"
></i>
Event-Driven Architecture
</li>
</ul>
</div>
<!-- Service Card 2 -->
<div
class="bg-white dark:bg-nirmatic-neutral-800 rounded-2xl p-8 shadow-lg hover:shadow-xl transition-all duration-300 transform hover:-translate-y-2"
data-aos="fade-up"
data-aos-delay="200"
>
<div
class="w-16 h-16 bg-nirmatic-secondary/10 rounded-2xl flex items-center justify-center mb-6"
>
<i
data-feather="cloud"
class="w-8 h-8 text-nirmatic-secondary"
></i>
</div>
<h3 class="text-xl font-semibold mb-4" data-lang="en">
Technical Solutions
</h3>
<h3 class="text-xl font-semibold mb-4" data-lang="es">
Soluciones Técnicas
</h3>
<p
class="text-nirmatic-neutral-600 dark:text-nirmatic-neutral-300 mb-6"
data-lang="en"
>
We lead technical projects at infrastructure level, optimized
for high performance and scalability.
</p>
<p
class="text-nirmatic-neutral-600 dark:text-nirmatic-neutral-300 mb-6"
data-lang="es"
>