forked from evalis-AI/evalis-ai.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
258 lines (220 loc) · 8.61 KB
/
about.html
File metadata and controls
258 lines (220 loc) · 8.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="Favicon-96x96.png" sizes="96x96">
<title>About Evalis AI | Human-Led Intelligence</title>
<link rel="icon" type="image/png" href="favicon-96x96.png">
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap" rel="stylesheet">
<style>
:root {
--primary: #5b5bff;
--secondary: #7c7cff;
--bg: #030612;
--card: rgba(255, 255, 255, 0.03);
--border: rgba(255, 255, 255, 0.08);
--text: #f3f4f6;
--muted: #94a3b8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Plus Jakarta Sans', sans-serif;
background-color: var(--bg);
color: var(--text);
line-height: 1.6;
overflow-x: hidden;
}
/* --- BACKGROUND EFFECTS (MATCHING INDEX) --- */
.mesh-bg {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
z-index: -1;
background:
radial-gradient(circle at 10% 10%, rgba(91, 91, 255, 0.12) 0%, transparent 40%),
radial-gradient(circle at 90% 90%, rgba(124, 124, 255, 0.08) 0%, transparent 40%);
}
/* --- NAVIGATION (RESTORED FROM INDEX) --- */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.2rem 8%;
background: rgba(3, 6, 18, 0.85);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 1000;
}
.logo-container { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 35px; width: auto; }
.logo-text { font-weight: 800; font-size: 1.4rem; color: #fff; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 0.9rem; transition: 0.3s; font-weight: 500; }
.nav-links a:hover { color: var(--secondary); }
/* --- HERO HEADER --- */
.about-hero {
padding: 100px 8% 40px;
text-align: center;
max-width: 900px;
margin: 0 auto;
}
h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 800;
margin-bottom: 1rem;
background: linear-gradient(to bottom, #fff 50%, #6366f1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* --- CONTENT CARDS --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 8% 100px; }
.card {
background: var(--card);
border: 1px solid var(--border);
padding: 3rem;
border-radius: 24px;
margin-bottom: 2rem;
backdrop-filter: blur(10px);
transition: 0.4s;
}
.card:hover { border-color: var(--primary); transform: translateY(-5px); }
h2 { font-size: 1.8rem; margin-bottom: 1.5rem; color: #fff; display: flex; align-items: center; gap: 10px; }
h2::before { content: ''; width: 4px; height: 24px; background: var(--primary); border-radius: 2px; }
p { color: var(--muted); font-size: 1.1rem; margin-bottom: 1.5rem; }
/* --- SERVICES GRID --- */
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1.5rem;
margin-top: 2rem;
}
.box {
background: rgba(255, 255, 255, 0.02);
border: 1px solid var(--border);
border-radius: 16px;
padding: 1.5rem;
}
.box strong { display: block; margin-bottom: 0.8rem; color: var(--secondary); font-size: 1.1rem; }
ul { list-style: none; }
li { position: relative; padding-left: 20px; color: var(--muted); margin-bottom: 8px; font-size: 0.95rem; }
li::before { content: '→'; position: absolute; left: 0; color: var(--primary); }
/* --- ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s cubic-bezier(0.2, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
footer {
text-align: center;
padding: 60px 8%;
border-top: 1px solid var(--border);
color: var(--muted);
font-size: 0.9rem;
}
footer a { color: var(--secondary); text-decoration: none; margin: 0 10px; font-weight: 600; }
@media (max-width: 768px) {
.nav-links { display: none; }
.card { padding: 1.5rem; }
}
</style>
</head>
<body>
<div class="mesh-bg"></div>
<nav>
<a href="index.html" class="logo-container">
<img src="logo.png" alt="Evalis AI" class="logo-img" onerror="this.style.display='none'">
<span class="logo-text">Evalis AI</span>
</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="services.html">Services</a>
<a href="about.html">About</a>
<a href="careers.html">Contributors</a>
<a href="contact.html">Contact</a>
</div>
</nav>
<div class="about-hero reveal">
<h1>Our Vision & Mission</h1>
<p>Bridging the gap between automated data and human intuition.</p>
</div>
<div class="container">
<div class="card reveal">
<h2>About Evalis AI</h2>
<p>Evalis AI is a specialized, human-led AI evaluation and data quality service focused on delivering accurate, ethical, and high-precision insights for artificial intelligence systems.</p>
<p>Unlike automated or crowd-based models, Evalis AI emphasizes expert judgment, contextual understanding, and strict quality control across every task.</p>
</div>
<div class="card reveal">
<h2>Our Mission</h2>
<p>To strengthen AI systems with reliable human intelligence — ensuring fairness, relevance, safety, and real-world usability.</p>
</div>
<div class="card reveal">
<h2>What We Do</h2>
<div class="grid">
<div class="box">
<strong>AI Data Evaluation</strong>
<ul>
<li>Accuracy checks</li>
<li>Bias detection</li>
<li>Quality scoring</li>
</ul>
</div>
<div class="box">
<strong>Data Labeling</strong>
<ul>
<li>Search relevance</li>
<li>Intent tagging</li>
<li>Safety audits</li>
</ul>
</div>
<div class="box">
<strong>Search Quality</strong>
<ul>
<li>Query matching</li>
<li>Result analysis</li>
<li>SERP comparison</li>
</ul>
</div>
<div class="box">
<strong>Content Review</strong>
<ul>
<li>Fluency checks</li>
<li>Localization</li>
<li>Toxicity review</li>
</ul>
</div>
</div>
</div>
<div class="card reveal">
<h2>Why Evalis AI</h2>
<div class="grid" style="grid-template-columns: 1fr 1fr;">
<ul>
<li>100% human-led evaluation</li>
<li>No automated shortcuts</li>
<li>Strict confidentiality</li>
</ul>
<ul>
<li>Structured deliverables</li>
<li>Ethical AI-first approach</li>
<li>Independent workflows</li>
</ul>
</div>
</div>
</div>
<footer>
© 2025 Evalis AI ·
<a href="https://www.linkedin.com/company/evalis-ai/" target="_blank">LinkedIn</a>
<a href="https://www.facebook.com/profile.php?id=61585377735411" target="_blank">Facebook</a>
</footer>
<script>
const reveal = () => {
const reveals = document.querySelectorAll(".reveal");
reveals.forEach(el => {
const windowHeight = window.innerHeight;
const elementTop = el.getBoundingClientRect().top;
if (elementTop < windowHeight - 100) { el.classList.add("active"); }
});
};
window.addEventListener("scroll", reveal);
reveal();
</script>
</body>
</html>