-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
847 lines (731 loc) · 27.5 KB
/
contact.html
File metadata and controls
847 lines (731 loc) · 27.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EduMate - Contact 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;
}
.contact-section {
padding: 4rem 0;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
margin-bottom: 4rem;
}
.contact-info {
background: var(--card-bg);
padding: 3rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border: 1px solid var(--border-color);
}
.contact-info h3 {
font-size: 2rem;
margin-bottom: 2rem;
color: var(--text-dark);
}
.info-item {
display: flex;
align-items: center;
margin-bottom: 2rem;
}
.info-icon {
width: 50px;
height: 50px;
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: 1.2rem;
margin-right: 1rem;
}
.info-text h4 {
color: var(--text-dark);
margin-bottom: 0.5rem;
}
.info-text p {
color: var(--text-light);
}
.contact-form {
background: var(--card-bg);
padding: 3rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border: 1px solid var(--border-color);
}
.contact-form h3 {
font-size: 2rem;
margin-bottom: 2rem;
color: var(--text-dark);
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
color: var(--text-dark);
font-weight: 600;
}
.form-input {
width: 100%;
padding: 1rem;
border: 2px solid var(--border-color);
border-radius: 10px;
font-size: 1rem;
transition: border-color 0.3s;
background: var(--bg-light);
}
.form-input:focus {
outline: none;
border-color: var(--primary-color);
}
.form-textarea {
min-height: 120px;
resize: vertical;
}
.submit-btn {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: white;
border: none;
padding: 1rem 2rem;
border-radius: 10px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: transform 0.3s;
width: 100%;
}
.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}
.faq-section {
padding: 4rem 0;
background: var(--card-bg);
}
.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);
}
.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.faq-item {
background: var(--bg-light);
border-radius: 10px;
overflow: hidden;
border: 1px solid var(--border-color);
}
.faq-question {
background: var(--primary-color);
color: white;
padding: 1.5rem;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.3s;
}
.faq-question:hover {
background: var(--secondary-color);
}
.faq-answer {
padding: 1.5rem;
color: var(--text-light);
line-height: 1.6;
display: none;
}
.faq-answer.show {
display: block;
}
.faq-icon {
transition: transform 0.3s;
}
.faq-item.active .faq-icon {
transform: rotate(180deg);
}
.social-section {
padding: 4rem 0;
text-align: center;
}
.social-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-top: 2rem;
}
.social-link {
width: 60px;
height: 60px;
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: 1.5rem;
text-decoration: none;
transition: transform 0.3s;
}
.social-link:hover {
transform: translateY(-5px);
}
.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;
}
.contact-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
.contact-info,
.contact-form {
padding: 2rem;
}
.social-links {
flex-wrap: wrap;
}
}
</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">About</a></li>
<li><a href="contact.html" class="active">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>Contact Us</h1>
<p>Get in touch with our team for support, feedback, or any questions</p>
</div>
</section>
<!-- Contact Section -->
<section class="contact-section">
<div class="container">
<div class="contact-grid">
<div class="contact-info">
<h3>Get in Touch</h3>
<div class="info-item">
<div class="info-icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="info-text">
<h4>Address</h4>
<p>Hanuman Nagar<br>Nallasopara,Maharashtra 401203</p>
</div>
</div>
<div class="info-item">
<div class="info-icon">
<i class="fas fa-phone"></i>
</div>
<div class="info-text">
<h4>Phone</h4>
<p>+91 87660 96255<br>Sun 9AM-9AM</p>
</div>
</div>
<div class="info-item">
<div class="info-icon">
<i class="fas fa-envelope"></i>
</div>
<div class="info-text">
<h4>Email</h4>
<p>123aditya2050@gmail.com<br>info@edumate.com</p>
</div>
</div>
<div class="info-item">
<div class="info-icon">
<i class="fas fa-clock"></i>
</div>
<div class="info-text">
<h4>Business Hours</h4>
<p>Sunday: 9:00 AM - 9:00 PM</p>
</div>
</div>
</div>
<div class="contact-form">
<h3>Send us a Message</h3>
<form id="contactForm">
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" id="name" name="name" class="form-input" required>
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" name="email" class="form-input" required>
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject" class="form-input" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" class="form-input form-textarea" required></textarea>
</div>
<button type="submit" class="submit-btn">
<i class="fas fa-paper-plane"></i> Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="faq-section">
<div class="container">
<div class="section-title">
<h2>Frequently Asked Questions</h2>
<p>Find answers to common questions about EduMate</p>
</div>
<div class="faq-grid">
<div class="faq-item">
<div class="faq-question" onclick="toggleFAQ(this)">
<span>How do I get started with EduMate?</span>
<i class="fas fa-chevron-down faq-icon"></i>
</div>
<div class="faq-answer">
Simply sign up for an account, choose your educational standard (6-10, JEE, or Engineering), and start exploring our interactive animations and learning materials.
</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleFAQ(this)">
<span>Is EduMate free to use?</span>
<i class="fas fa-chevron-down faq-icon"></i>
</div>
<div class="faq-answer">
Yes! EduMate offers a free tier with access to basic animations and learning materials. Premium features are available for advanced users.
</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleFAQ(this)">
<span>What subjects are covered?</span>
<i class="fas fa-chevron-down faq-icon"></i>
</div>
<div class="faq-answer">
We cover Science (Physics, Chemistry, Biology, Mathematics) for 6-10 standards, JEE preparation, and Engineering courses including Computer Science and IT.
</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleFAQ(this)">
<span>How do the animations work?</span>
<i class="fas fa-chevron-down faq-icon"></i>
</div>
<div class="faq-answer">
Our animations use AI-powered technology to convert educational concepts into interactive visual representations that help students understand complex topics better.
</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleFAQ(this)">
<span>Can I use EduMate on mobile devices?</span>
<i class="fas fa-chevron-down faq-icon"></i>
</div>
<div class="faq-answer">
Absolutely! EduMate is fully responsive and works seamlessly on desktop, tablet, and mobile devices.
</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleFAQ(this)">
<span>How do I contact support?</span>
<i class="fas fa-chevron-down faq-icon"></i>
</div>
<div class="faq-answer">
You can reach our support team through the contact form on this page, email us at support@edumate.com, or call us during business hours.
</div>
</div>
</div>
</div>
</section>
<!-- Social Section -->
<section class="social-section">
<div class="container">
<div class="section-title">
<h2>Follow Us</h2>
<p>Stay connected with EduMate on social media</p>
</div>
<div class="social-links">
<a href="#" class="social-link" onclick="openSocial('facebook')">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="social-link" onclick="openSocial('twitter')">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="social-link" onclick="openSocial('linkedin')">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="social-link" onclick="openSocial('instagram')">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="social-link" onclick="openSocial('youtube')">
<i class="fab fa-youtube"></i>
</a>
</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';
}
// FAQ Toggle
function toggleFAQ(element) {
const faqItem = element.parentElement;
const answer = faqItem.querySelector('.faq-answer');
faqItem.classList.toggle('active');
answer.classList.toggle('show');
}
// Contact Form
document.getElementById('contactForm').addEventListener('submit', function(e) {
e.preventDefault();
const formData = new FormData(this);
const data = Object.fromEntries(formData);
// Simulate form submission
alert('Thank you for your message! We will get back to you within 24 hours.');
this.reset();
});
// Social Links
function openSocial(platform) {
const urls = {
facebook: 'https://facebook.com/edumate',
twitter: 'https://twitter.com/edumate',
linkedin: 'https://linkedin.com/company/edumate',
instagram: 'https://instagram.com/edumate',
youtube: 'https://youtube.com/edumate'
};
window.open(urls[platform], '_blank');
}
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>