-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
469 lines (421 loc) · 13.1 KB
/
about.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<title>About Us - Ajivika</title>
<link rel="stylesheet" href="styles.css">
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
}
.translate-button {
position: fixed;
top: 160px;
left: 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 50%;
padding: 15px;
font-size: 20px;
cursor: pointer;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.translate-button:hover {
background-color: #0056b3;
}
#google_translate_element {
position: fixed;
top: 90px;
left: 20px;
z-index: 1000;
display: none;
background-color: white;
border: 1px solid #ddd;
padding: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.slideshow-container {
position: relative;
max-width: 100%;
margin: auto;
overflow: hidden;
color: #FFD465;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.mySlides {
display: none;
position: relative;
}
.fade {
animation-name: fade;
animation-duration: 1.5s;
}
@keyframes fade {
from {
opacity: 0.4;
}
to {
opacity: 1;
}
}
.text {
color: #fff;
font-size: 24px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
background-color: rgba(0, 0, 0, 0.5);
}
.prev,
.next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -22px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}
.banner-image {
width: 100%;
height: 300px;
object-fit: cover;
}
.prev {
left: 0;
border-radius: 3px 0 0 3px;
}
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.8);
}
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color:#FFD465;
color: #FFD465;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active,
.dot:hover {
background-color: #717171;
}
.options-section {
text-align: center;
padding: 40px 20px;
}
.options-section h2 {
color: #4a4a4a;
font-size: 28px;
margin-bottom: 10px;
}
.options-section p {
color: #6f6f6f;
font-size: 18px;
margin-bottom: 20px;
}
.options-container {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 20px;
}
.option {
text-align: center;
background-color: #f7f7f7;
border-radius: 8px;
padding: 20px;
width: 150px;
transition: transform 0.3s ease;
}
.option img {
width: 60px;
height: 60px;
margin-bottom: 10px;
}
.option p {
font-size: 16px;
color: #333;
}
.options-container:hover{
color: #FFD465;
}
.option:hover {
transform: translateY(-10px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.option a {
text-decoration: none;
}
.orange {
color: #d6a52b;
}
section h2 {
color: #000;
font-size: 30px;
margin-bottom: 20px;
margin-top: 0;
}
/* Styles for floating chat button */
.chat-button {
position: fixed;
bottom: 20px;
right: 20px;
background-color:#d6a52b;
color: white;
border: none;
border-radius: 50%;
padding: 15px;
font-size: 24px;
cursor: pointer;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.chat-button:hover {
transform: scale(1.1);
background-color: #000;
}
/* Styles for floating image button */
.image-button {
position: fixed;
bottom: 20px;
left: 20px; /* Aligns the button to the left side */
background-color: transparent; /* Transparent background */
border: none;
border-radius: 50%;
padding: 0; /* No padding for image button */
cursor: pointer;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
z-index: 9999;
}
.image-button:hover {
transform: scale(1.1);
}
.about-box {
background-color: #f9f9f9;
border: 2px solid #d6a52b;
border-radius: 10px;
padding: 20px;
margin: 20px auto; /* Auto margin centers the box horizontally */
width: 80%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
display: block; /* Ensures it behaves like a block-level element */
text-align: left; /* Adjusts text alignment, optional */
}
.image-icon {
width: 120px;
height: 120px;
border-radius: 50%;
border: 3px solid white;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
z-index: 2;
position: relative;
}
.navbar{
display: flex;
justify-content: space-between;
align-items: center;
background-color: #2b2b28;
padding: 10px 20px;
position: sticky;
height: 80px;
top: 0;
z-index: 1000;
}
.back-button {
position: absolute;
top: 100px;
left: 20px;
background-color: transparent;
border: none;
color: #333;
font-size: 24px;
cursor: pointer;
z-index: 999;
transition: color 0.3s ease;
}
.back-button:hover {
color: #d6a52b;
}
.about-section h1 {
text-align: center;
color: #8b4513;
}
.about-section h2 {
color: #8b4513;
}
.about-section li {
color: #191970;
}
.about-section p {
margin: 10px 0;
text-align: justify;
color: #191970;
}
.features {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 30px;
}
.feature-card {
background: #fdf4dc;
border: 2px solid #ffd465;
border-radius: 8px;
padding: 20px;
width: 250px;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.feature-card:hover {
transform: translateY(-10px);
}
.feature-card i {
font-size: 40px;
color: #d6a52b;
margin-bottom: 10px;
}
.feature-card h3 {
color: #8b4513;
margin-bottom: 10px;
}
.navbar .logo {
margin-left: 65px;
}
.image-button1 {
position: fixed;
top: 5px;
left: 10px; /* Aligns the button to the left side */
background-color: transparent; /* Transparent background */
border: none;
border-radius: 50%;
padding: 0; /* No padding for image button */
cursor: pointer;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.image-button1:hover {
transform: scale(1.1);
}
.image-icon1 {
width: 68px;
height: 68px;
border-radius: 50%;
border: 3px solid white;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
z-index: 2;
position: relative;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="logo">
<h2>Ajivika</h2>
</div>
<button class="image-button1">
<img src="./image.png" alt="Image Button1" class="image-icon1">
</button>
<ul class="nav-links">
<li><a href="./index.html"><i class="fas fa-home"></i>Home</a></li>
<li><a href="./about.html"><i class="fas fa-address-card"></i> About Us</a></li>
<li><a href="./contact.html"><i class="fas fa-envelope"></i> Contact Us</a></li>
<li><a href="./pricing.html"><i class="fas fa-comments"></i>Go Pro</a></li>
<li><a href="./login.html"><i class="fas fa-sign-in-alt"></i>Begin Your Journey</a></li>
<li><a href="./register.html"><i class="fas fa-user-plus"></i> Register</a></li>
</ul>
</nav>
<button class="back-button" onclick="window.history.back();">
<i class="fas fa-arrow-left"></i>
</button>
<section class="about-section">
<div class="about-box">
<h1>
<i class="fas fa-info-circle" style="color: #cf00a3;"></i> About Us
</h1>
<div class="about-section">
<p>In order to address the lack of an intelligent and adaptive Job Recommendation Portal, the idea to create a website Ajivika (literal meaning: career) has been presented. This website covers all the features of a career portal, ranging from:</p>
<!-- Features Section -->
<div class="features">
<div class="feature-card">
<i class="fas fa-file-alt"></i>
<h3>📄 Resume Making</h3>
<p>Create professional resumes effortlessly.</p>
</div>
<div class="feature-card">
<i class="fas fa-search"></i>
<h3>🔍 Smart Job Recommendations</h3>
<p>Get personalized job suggestions based on your profile.</p>
</div>
<div class="feature-card">
<i class="fas fa-graduation-cap"></i>
<h3>🎓 Best Course Suggestions</h3>
<p>Explore courses tailored to enhance your skills.</p>
</div>
<div class="feature-card">
<i class="fas fa-check-circle"></i>
<h3>📝 Skill Assessments</h3>
<p>Validate your expertise and share certifications.</p>
</div>
<div class="feature-card">
<i class="fas fa-comments"></i>
<h3>💬 Chatbot for Job Queries</h3>
<p>Instant support for all your career-related questions.</p>
</div>
<div class="feature-card">
<i class="fas fa-chart-line"></i>
<h3>📊 Real Job Trends Dashboard</h3>
<p>Analyze current trends in the job market with data-driven insights.</p>
</div>
<div class="feature-card">
<i class="fas fa-tasks"></i>
<h3>🎯 Personalized Progress Tracker</h3>
<p>Keep track of your learning and job application progress.</p>
</div>
<div class="feature-card">
<i class="fas fa-map-marked-alt"></i>
<h3>🌍 Access to Jobs in Smaller Areas</h3>
<p>Unlike most portals, Ajivika focuses on uncovering opportunities in smaller towns and regions, bridging the gap between job seekers and recruiters.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Floating Image Button -->
<button class="image-button">
<img src="./image.png" alt="Image Button" class="image-icon">
</button>
<footer>
© 2024 Ajivika. All rights reserved.
</footer>
</body>
</html>