-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
847 lines (739 loc) · 26.9 KB
/
index.html
File metadata and controls
847 lines (739 loc) · 26.9 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>Kashif Ahmed | Professional Portfolio</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* Global Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
:root {
--primary-color: #2c3e50;
--secondary-color: #3498db;
--accent-color: #e74c3c;
--light-color: #ecf0f1;
--dark-color: #2c3e50;
--gray-color: #7f8c8d;
--shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
--transition: all 0.3s ease;
}
html {
scroll-behavior: smooth;
}
body {
line-height: 1.6;
color: var(--dark-color);
background-color: #f9f9f9;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
section {
padding: 80px 0;
}
h1, h2, h3 {
margin-bottom: 20px;
font-weight: 700;
line-height: 1.2;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2.5rem;
position: relative;
display: inline-block;
margin-bottom: 40px;
}
h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 70px;
height: 4px;
background-color: var(--secondary-color);
}
p {
margin-bottom: 15px;
font-size: 1.1rem;
color: var(--gray-color);
}
.btn {
display: inline-block;
padding: 12px 28px;
background-color: var(--secondary-color);
color: white;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
transition: var(--transition);
border: none;
cursor: pointer;
}
.btn:hover {
background-color: var(--primary-color);
transform: translateY(-3px);
box-shadow: var(--shadow);
}
.section-title {
text-align: center;
margin-bottom: 60px;
}
.section-title h2::after {
left: 50%;
transform: translateX(-50%);
}
/* Header & Navigation */
header {
background-color: white;
box-shadow: var(--shadow);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
}
.logo {
font-size: 1.8rem;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
}
.logo span {
color: var(--secondary-color);
}
.nav-links {
display: flex;
list-style: none;
}
.nav-links li {
margin-left: 30px;
}
.nav-links a {
text-decoration: none;
color: var(--dark-color);
font-weight: 600;
transition: var(--transition);
}
.nav-links a:hover {
color: var(--secondary-color);
}
.menu-toggle {
display: none;
font-size: 1.5rem;
cursor: pointer;
color: var(--primary-color);
}
/* Hero Section */
.hero {
padding-top: 150px;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
display: flex;
align-items: center;
}
.hero-content {
display: flex;
align-items: center;
justify-content: space-between;
}
.hero-text {
flex: 1;
padding-right: 30px;
}
.hero-image {
flex: 1;
text-align: center;
}
.hero-image img {
max-width: 100%;
border-radius: 50%;
box-shadow: var(--shadow);
border: 10px solid white;
}
.hero h1 {
margin-bottom: 10px;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 30px;
}
.highlight {
color: var(--secondary-color);
font-weight: 700;
}
/* About Section */
.about {
background-color: white;
}
.about-content {
display: flex;
align-items: center;
gap: 50px;
}
.about-text {
flex: 2;
}
.about-image {
flex: 1;
text-align: center;
}
.about-image img {
max-width: 100%;
border-radius: 10px;
box-shadow: var(--shadow);
}
/* Skills Section */
.skills {
background-color: #f5f7fa;
}
.skills-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
}
.skill-category {
background-color: white;
padding: 30px;
border-radius: 10px;
box-shadow: var(--shadow);
}
.skill-item {
margin-bottom: 20px;
}
.skill-name {
display: flex;
justify-content: space-between;
margin-bottom: 5px;
}
.skill-bar {
height: 10px;
background-color: #e0e0e0;
border-radius: 5px;
overflow: hidden;
}
.skill-level {
height: 100%;
background-color: var(--secondary-color);
border-radius: 5px;
}
/* Projects Section */
.projects {
background-color: white;
}
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 30px;
}
.project-card {
background-color: white;
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
}
.project-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.project-image {
height: 200px;
overflow: hidden;
}
.project-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.project-card:hover .project-image img {
transform: scale(1.05);
}
.project-info {
padding: 25px;
}
.project-info h3 {
margin-bottom: 10px;
}
.project-tags {
display: flex;
flex-wrap: wrap;
margin-bottom: 15px;
}
.tag {
background-color: #e0f0ff;
color: var(--secondary-color);
padding: 5px 10px;
border-radius: 3px;
font-size: 0.8rem;
margin-right: 8px;
margin-bottom: 8px;
}
/* Contact Section */
.contact {
background-color: #f5f7fa;
}
.contact-container {
display: flex;
gap: 50px;
}
.contact-info {
flex: 1;
}
.contact-info-item {
display: flex;
align-items: center;
margin-bottom: 25px;
}
.contact-info-item i {
background-color: var(--secondary-color);
color: white;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
font-size: 1.2rem;
}
.contact-form {
flex: 1;
background-color: white;
padding: 30px;
border-radius: 10px;
box-shadow: var(--shadow);
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 12px 15px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1rem;
}
.form-group textarea {
height: 150px;
resize: vertical;
}
/* Footer */
footer {
background-color: var(--primary-color);
color: white;
padding: 40px 0;
text-align: center;
}
.social-links {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
color: white;
border-radius: 50%;
margin: 0 10px;
transition: var(--transition);
text-decoration: none;
}
.social-links a:hover {
background-color: var(--secondary-color);
transform: translateY(-5px);
}
.copyright {
color: rgba(255, 255, 255, 0.7);
font-size: 0.9rem;
}
/* Responsive Styles */
@media (max-width: 992px) {
h1 {
font-size: 2.8rem;
}
h2 {
font-size: 2.2rem;
}
.hero-content, .about-content {
flex-direction: column;
}
.hero-text, .about-text {
padding-right: 0;
margin-bottom: 40px;
}
.contact-container {
flex-direction: column;
}
}
@media (max-width: 768px) {
.menu-toggle {
display: block;
}
.nav-links {
position: fixed;
top: 70px;
left: 0;
width: 100%;
background-color: white;
flex-direction: column;
align-items: center;
padding: 20px 0;
box-shadow: var(--shadow);
transform: translateY(-100%);
opacity: 0;
transition: var(--transition);
z-index: 999;
}
.nav-links.active {
transform: translateY(0);
opacity: 1;
}
.nav-links li {
margin: 15px 0;
}
.hero {
padding-top: 120px;
}
}
</style>
</head>
<body>
<!-- Header & Navigation -->
<header>
<div class="container">
<nav class="navbar">
<a href="#" class="logo">Kashifs<span>Cloud</span>CK</a>
<div class="menu-toggle" id="menuToggle">
<i class="fas fa-bars"></i>
</div>
<ul class="nav-links" id="navLinks">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="container">
<div class="hero-content">
<div class="hero-text">
<h1>Hi, I'm <span class="highlight">Kashif Ahmed</span></h1>
<h2>A Professional <span class="highlight">Programmer Analyst</span></h2>
<p>Designing and delivering end‑to‑end enterprise systems for government, education, and industrial clients using Microsoft .NET, SQL Server, and Power Platform.</p>
<a href="#projects" class="btn">View My Work</a>
<a href="#contact" class="btn" style="margin-left: 15px; background-color: var(--primary-color);">Contact Me</a>
</div>
<div class="hero-image">
<img src="https://6936794d0fe146f2aff3e4ac.imgix.net/kashifWtBGforIqama1.png" alt="Kashif Ahmed">
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<div class="container">
<div class="section-title">
<h2>About Me</h2>
</div>
<div class="about-content">
<div class="about-text">
<h3>Hello! I'm Kashif Ahmed</h3>
<p>I'm a passionate and dedicated professional with 18+ years of experience in IT projects covering Analysis, Design,Development and Implementation of Software & Enterprise Applications. I specialize in creating innovative solutions that solve real-world problems and deliver exceptional value.</p>
<p>
My journey in software development began in 1996 during my high school years in India, where
I cut my teeth on MS-BASIC before graduating to FORTRAN and COBOL. The transition to C was
revelatory—it taught me the discipline of memory management and the beauty of structured programming.
Those foundational years gave me a perspective on computing evolution that few contemporary
developers possess, watching technology transform from command-line interfaces to today's AI-driven
applications.Since then, I've helped companies transition legacy systems to modern architectures while
maintaining robust, efficient code.
</p>
<p>When I'm not working, you can find me exploring new programming paradigms, contributing to
open-source projects, or mentoring young developers who remind me of my own early curiosity.
I believe in continuous learning and staying up-to-date with the latest trends and technologies
in my field—a practice that began with poring over computer journals in the 90s and continues
today with AI, blockchain, and quantum computing explorations.</p>
<a href="#contact" class="btn">Get In Touch</a>
</div>
<div class="about-image">
<img src="https://6936794d0fe146f2aff3e4ac.imgix.net/Kashif%201.jpeg" alt="About Me">
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="skills">
<div class="container">
<div class="section-title">
<h2>My Skills</h2>
</div>
<div class="skills-container">
<div class="skill-category">
<h3>Technical Skills</h3>
<div class="skill-item">
<div class="skill-name">
<span>Web Development</span>
<span>95%</span>
</div>
<div class="skill-bar">
<div class="skill-level" style="width: 95%"></div>
</div>
</div>
<div class="skill-item">
<div class="skill-name">
<span>UI/UX Design</span>
<span>90%</span>
</div>
<div class="skill-bar">
<div class="skill-level" style="width: 90%"></div>
</div>
</div>
<div class="skill-item">
<div class="skill-name">
<span>Mobile Development</span>
<span>85%</span>
</div>
<div class="skill-bar">
<div class="skill-level" style="width: 85%"></div>
</div>
</div>
</div>
<div class="skill-category">
<h3>Professional Skills</h3>
<div class="skill-item">
<div class="skill-name">
<span>Project Management</span>
<span>90%</span>
</div>
<div class="skill-bar">
<div class="skill-level" style="width: 90%"></div>
</div>
</div>
<div class="skill-item">
<div class="skill-name">
<span>Communication</span>
<span>95%</span>
</div>
<div class="skill-bar">
<div class="skill-level" style="width: 95%"></div>
</div>
</div>
<div class="skill-item">
<div class="skill-name">
<span>Problem Solving</span>
<span>92%</span>
</div>
<div class="skill-bar">
<div class="skill-level" style="width: 92%"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="projects">
<div class="container">
<div class="section-title">
<h2>My Projects</h2>
</div>
<div class="projects-grid">
<div class="project-card">
<div class="project-image">
<img src="https://images.unsplash.com/photo-1551650975-87deedd944c3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1674&q=80" alt="E-commerce Website">
</div>
<div class="project-info">
<h3>E-commerce Platform</h3>
<div class="project-tags">
<span class="tag">HTML/CSS</span>
<span class="tag">JavaScript</span>
<span class="tag">React</span>
<span class="tag">Node.js</span>
</div>
<p>A fully responsive e-commerce platform with user authentication, product catalog, shopping cart, and payment integration.</p>
<a href="#" class="btn">View Details</a>
</div>
</div>
<div class="project-card">
<div class="project-image">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80" alt="Mobile App">
</div>
<div class="project-info">
<h3>Fitness Tracking App</h3>
<div class="project-tags">
<span class="tag">React Native</span>
<span class="tag">Firebase</span>
<span class="tag">UI/UX Design</span>
</div>
<p>A mobile application for tracking workouts, nutrition, and fitness progress with social features and personalized recommendations.</p>
<a href="#" class="btn">View Details</a>
</div>
</div>
<div class="project-card">
<div class="project-image">
<img src="https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80" alt="Dashboard Design">
</div>
<div class="project-info">
<h3>Analytics Dashboard</h3>
<div class="project-tags">
<span class="tag">Vue.js</span>
<span class="tag">D3.js</span>
<span class="tag">API Integration</span>
</div>
<p>A comprehensive data visualization dashboard for business analytics with real-time updates and interactive charts.</p>
<a href="#" class="btn">View Details</a>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<div class="container">
<div class="section-title">
<h2>Contact Me</h2>
</div>
<div class="contact-container">
<div class="contact-info">
<h3>Let's Connect</h3>
<p>I'm always open to discussing new opportunities, creative projects, or just having a friendly chat. Feel free to reach out!</p>
<div class="contact-info-item">
<i class="fas fa-map-marker-alt"></i>
<div>
<h4>Location</h4>
<p>Dammam, Saudi Arabia</p>
</div>
</div>
<div class="contact-info-item">
<i class="fas fa-envelope"></i>
<div>
<h4>Email</h4>
<p>kashifsdesire@gmail.com</p>
</div>
</div>
<div class="contact-info-item">
<i class="fas fa-phone"></i>
<div>
<h4>Phone</h4>
<p>00966-542099366</p>
</div>
</div>
</div>
<div class="contact-form">
<form id="contactForm">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" required></textarea>
</div>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="social-links">
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-codepen"></i></a>
</div>
<p class="copyright">© <span id="currentYear"></span> Kashif Ahmed. All Rights Reserved.</p>
</div>
</footer>
<script>
// This script automatically updates the year in the copyright notice
document.getElementById('currentYear').textContent = new Date().getFullYear();
</script>
<script>
// Mobile menu toggle
const menuToggle = document.getElementById('menuToggle');
const navLinks = document.getElementById('navLinks');
menuToggle.addEventListener('click', () => {
navLinks.classList.toggle('active');
});
// Close mobile menu when clicking on a link
document.querySelectorAll('.nav-links a').forEach(link => {
link.addEventListener('click', () => {
navLinks.classList.remove('active');
});
});
// Contact form submission
const contactForm = document.getElementById('contactForm');
contactForm.addEventListener('submit', (e) => {
e.preventDefault();
// Get form values
const name = document.getElementById('name').value;
const email = document.getElementById('email').value;
const subject = document.getElementById('subject').value;
const message = document.getElementById('message').value;
// In a real implementation, you would send this data to a server
// For now, we'll just show an alert
alert(`Thank you for your message, ${name}! I'll get back to you soon.`);
// Reset the form
contactForm.reset();
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
</script>
</body>
</html>