-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
712 lines (617 loc) · 22.8 KB
/
about.html
File metadata and controls
712 lines (617 loc) · 22.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EduMate - About Us</title>
<link rel="icon" type="image/x-icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🎓</text></svg>">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-color: #667eea;
--secondary-color: #764ba2;
--accent-color: #f093fb;
--text-dark: #2d3748;
--text-light: #718096;
--bg-light: #f7fafc;
--bg-dark: #1a202c;
--card-bg: #ffffff;
--border-color: #e2e8f0;
}
[data-theme="dark"] {
--text-dark: #f7fafc;
--text-light: #a0aec0;
--bg-light: #1a202c;
--bg-dark: #2d3748;
--card-bg: #2d3748;
--border-color: #4a5568;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: var(--bg-light);
color: var(--text-dark);
transition: all 0.3s ease;
}
.navbar {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
padding: 1rem 0;
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.8rem;
font-weight: bold;
color: white;
text-decoration: none;
}
.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover {
color: var(--accent-color);
}
.nav-actions {
display: flex;
align-items: center;
gap: 1rem;
}
.theme-toggle {
background: rgba(255,255,255,0.2);
border: none;
color: white;
padding: 0.5rem;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s;
}
.theme-toggle:hover {
background: rgba(255,255,255,0.3);
}
.user-menu {
position: relative;
}
.user-btn {
background: rgba(255,255,255,0.2);
border: none;
color: white;
padding: 0.5rem 1rem;
border-radius: 25px;
cursor: pointer;
display: flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s;
}
.user-btn:hover {
background: rgba(255,255,255,0.3);
}
.dropdown {
position: absolute;
top: 100%;
right: 0;
background: white;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
min-width: 200px;
display: none;
z-index: 1001;
}
.dropdown.show {
display: block;
}
.dropdown a {
display: block;
padding: 1rem;
color: var(--text-dark);
text-decoration: none;
transition: background 0.3s;
}
.dropdown a:hover {
background: var(--bg-light);
}
.hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
padding: 8rem 0 4rem;
text-align: center;
color: white;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.2rem;
opacity: 0.9;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.about-section {
padding: 4rem 0;
}
.section-title {
text-align: center;
margin-bottom: 3rem;
}
.section-title h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--text-dark);
}
.section-title p {
font-size: 1.2rem;
color: var(--text-light);
}
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
margin-bottom: 4rem;
}
.about-text h3 {
font-size: 2rem;
margin-bottom: 1.5rem;
color: var(--text-dark);
}
.about-text p {
color: var(--text-light);
line-height: 1.8;
margin-bottom: 1.5rem;
font-size: 1.1rem;
}
.about-image {
text-align: center;
}
.about-image i {
font-size: 8rem;
color: var(--primary-color);
margin-bottom: 1rem;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin: 4rem 0;
}
.stat-card {
background: var(--card-bg);
padding: 2rem;
border-radius: 15px;
text-align: center;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border: 1px solid var(--border-color);
}
.stat-number {
font-size: 3rem;
font-weight: bold;
color: var(--primary-color);
margin-bottom: 0.5rem;
}
.stat-label {
color: var(--text-light);
font-size: 1.1rem;
}
.team-section {
padding: 4rem 0;
background: var(--card-bg);
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.team-card {
background: var(--card-bg);
padding: 2rem;
border-radius: 15px;
text-align: center;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border: 1px solid var(--border-color);
}
.team-avatar {
width: 100px;
height: 100px;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
color: white;
font-size: 2.5rem;
}
.team-name {
font-size: 1.3rem;
font-weight: bold;
color: var(--text-dark);
margin-bottom: 0.5rem;
}
.team-role {
color: var(--primary-color);
margin-bottom: 1rem;
}
.team-bio {
color: var(--text-light);
font-size: 0.9rem;
line-height: 1.6;
}
.mission-section {
padding: 4rem 0;
}
.mission-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.mission-card {
background: var(--card-bg);
padding: 2rem;
border-radius: 15px;
text-align: center;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border: 1px solid var(--border-color);
}
.mission-icon {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 1rem;
}
.mission-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--text-dark);
}
.mission-card p {
color: var(--text-light);
line-height: 1.6;
}
.animated-character {
position: fixed;
bottom: 2rem;
right: 2rem;
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 2rem;
cursor: pointer;
z-index: 1000;
animation: bounce 2s infinite;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
40% { transform: translateY(-10px); }
60% { transform: translateY(-5px); }
}
.footer {
background: var(--bg-dark);
color: white;
padding: 3rem 0 1rem;
margin-top: 4rem;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h3 {
margin-bottom: 1rem;
color: var(--accent-color);
}
.footer-section a {
color: white;
text-decoration: none;
display: block;
margin-bottom: 0.5rem;
transition: color 0.3s;
}
.footer-section a:hover {
color: var(--accent-color);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #4a5568;
color: var(--text-light);
}
@media (max-width: 768px) {
.nav-links {
display: none;
}
.hero h1 {
font-size: 2.5rem;
}
.about-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.stats-grid {
grid-template-columns: repeat(2, 1fr);
}
.team-grid {
grid-template-columns: 1fr;
}
.mission-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<a href="home.html" class="logo">
<i class="fas fa-graduation-cap"></i> EduMate
</a>
<ul class="nav-links">
<li><a href="home.html">Home</a></li>
<li><a href="standards.html">Standards</a></li>
<li><a href="about.html" class="active">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="nav-actions">
<button class="theme-toggle" onclick="toggleTheme()">
<i class="fas fa-moon" id="theme-icon"></i>
</button>
<div class="user-menu">
<button class="user-btn" onclick="toggleUserMenu()">
<i class="fas fa-user"></i>
<span id="user-name">User</span>
<i class="fas fa-chevron-down"></i>
</button>
<div class="dropdown" id="userDropdown">
<a href="profile.html"><i class="fas fa-user"></i> Profile</a>
<a href="settings.html"><i class="fas fa-cog"></i> Settings</a>
<a href="#" onclick="logout()"><i class="fas fa-sign-out-alt"></i> Logout</a>
</div>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h1>About EduMate</h1>
<p>Transforming education through innovative technology and interactive learning</p>
</div>
</section>
<!-- About Section -->
<section class="about-section">
<div class="container">
<div class="about-content">
<div class="about-text">
<h3>Our Story</h3>
<p>
EduMate was born from a simple yet powerful vision: to make education accessible, engaging, and effective for students of all ages. We believe that learning should be an interactive, visual, and personalized experience that adapts to each student's unique needs and learning style.
</p>
<p>
Founded by a team of passionate educators and technologists, EduMate combines cutting-edge AI technology with proven educational methodologies to create a platform that transforms how students learn complex concepts.
</p>
<p>
Our mission is to democratize quality education by making advanced learning tools available to students worldwide, regardless of their background or location.
</p>
</div>
<div class="about-image">
<i class="fas fa-lightbulb"></i>
<h3>Innovation in Education</h3>
</div>
</div>
</div>
</section>
<!-- Mission Section -->
<section class="mission-section">
<div class="container">
<div class="section-title">
<h2>Our Mission & Values</h2>
<p>What drives us to revolutionize education</p>
</div>
<div class="mission-grid">
<div class="mission-card">
<div class="mission-icon">
<i class="fas fa-graduation-cap"></i>
</div>
<h3>Quality Education</h3>
<p>We are committed to providing high-quality, comprehensive educational content that meets international standards and helps students excel in their academic pursuits.</p>
</div>
<div class="mission-card">
<div class="mission-icon">
<i class="fas fa-users"></i>
</div>
<h3>Accessibility</h3>
<p>Education should be accessible to everyone. We work tirelessly to break down barriers and make quality learning resources available to students from all backgrounds.</p>
</div>
<div class="mission-card">
<div class="mission-icon">
<i class="fas fa-brain"></i>
</div>
<h3>Innovation</h3>
<p>We continuously innovate and adopt the latest technologies to enhance the learning experience and make education more engaging and effective.</p>
</div>
<div class="mission-card">
<div class="mission-icon">
<i class="fas fa-heart"></i>
</div>
<h3>Student-Centric</h3>
<p>Every decision we make is centered around our students' success. We listen to feedback and continuously improve our platform based on student needs.</p>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section class="team-section">
<div class="container">
<div class="section-title">
<h2>Meet Our Team</h2>
<p>The passionate individuals behind EduMate</p>
</div>
<div class="team-grid">
<div class="team-card">
<div class="team-avatar">
<i class="fas fa-user-tie"></i>
</div>
<div class="team-name">Aditya Pal</div>
<div class="team-role">CEO & Founder</div>
<div class="team-bio">
Education technology expert with 1 day of experience in developing innovative learning solutions.
</div>
</div>
<div class="team-card">
<div class="team-avatar">
<i class="fas fa-code"></i>
</div>
<div class="team-name">Mahek Gupta</div>
<div class="team-role">CTO</div>
<div class="team-bio">
Full-stack developer and AI specialist focused on creating seamless user experiences and intelligent learning systems.
</div>
</div>
<div class="team-card">
<div class="team-avatar">
<i class="fas fa-chalkboard-teacher"></i>
</div>
<div class="team-name">Suraj Pal</div>
<div class="team-role">Head of Education</div>
<div class="team-bio">
Renowned educator and curriculum designer with expertise in STEM education and interactive learning methodologies.
</div>
</div>
<div class="team-card">
<div class="team-avatar">
<i class="fas fa-palette"></i>
</div>
<div class="team-name">Nilesh Sharma</div>
<div class="team-role">UX/UI Designer</div>
<div class="team-bio">
Creative designer passionate about creating intuitive and engaging user interfaces that enhance the learning experience.
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>EduMate</h3>
<p>Transforming education through interactive learning and AI-powered personalization.</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<a href="home.html">Home</a>
<a href="standards.html">Standards</a>
<a href="about.html">About Us</a>
<a href="contact.html">Contact</a>
</div>
<div class="footer-section">
<h3>Standards</h3>
<a href="standards.html#6-10">6-10 Standards</a>
<a href="standards.html#jee">JEE Preparation</a>
<a href="standards.html#engineering">Engineering</a>
</div>
<div class="footer-section">
<h3>Support</h3>
<a href="#">Help Center</a>
<a href="#">Privacy Policy</a>
<a href="#">Terms of Service</a>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 EduMate. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Animated Character -->
<div class="animated-character" onclick="showCharacterMessage()">
<i class="fas fa-robot"></i>
</div>
<script>
// Theme Management
function toggleTheme() {
const body = document.body;
const themeIcon = document.getElementById('theme-icon');
if (body.getAttribute('data-theme') === 'dark') {
body.removeAttribute('data-theme');
themeIcon.className = 'fas fa-moon';
localStorage.setItem('theme', 'light');
} else {
body.setAttribute('data-theme', 'dark');
themeIcon.className = 'fas fa-sun';
localStorage.setItem('theme', 'dark');
}
}
// Load saved theme
document.addEventListener('DOMContentLoaded', function() {
const savedTheme = localStorage.getItem('theme');
const themeIcon = document.getElementById('theme-icon');
if (savedTheme === 'dark') {
document.body.setAttribute('data-theme', 'dark');
themeIcon.className = 'fas fa-sun';
}
// Load user data
loadUserData();
});
// User Management
function loadUserData() {
const userData = localStorage.getItem('userData');
if (userData) {
const user = JSON.parse(userData);
document.getElementById('user-name').textContent = user.name || 'User';
}
}
function toggleUserMenu() {
const dropdown = document.getElementById('userDropdown');
dropdown.classList.toggle('show');
}
function logout() {
localStorage.removeItem('userData');
window.location.href = 'login.html';
}
function showCharacterMessage() {
alert('Hi! I\'m your learning assistant. I can help you navigate through different subjects and explain complex concepts with animations!');
}
// Close dropdown when clicking outside
document.addEventListener('click', function(event) {
const dropdown = document.getElementById('userDropdown');
const userBtn = document.querySelector('.user-btn');
if (!userBtn.contains(event.target)) {
dropdown.classList.remove('show');
}
});
</script>
</body>
</html>