Haseeb-001 commited on
Commit
aaca55d
Β·
verified Β·
1 Parent(s): f37bc15

Delete index.html

Browse files
Files changed (1) hide show
  1. index.html +0 -787
index.html DELETED
@@ -1,787 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Abdul Haseeb | Generative AI & Data Science Engineer</title>
7
- <link rel="icon" href="YOUR_PROFILE_PICTURE_URL_HERE.png" type="image/png">
8
- <link rel="stylesheet" href="style.css">
9
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
10
- <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/aos.css" rel="stylesheet">
11
- <style>
12
- /* 🎨 Default Styles (will be overridden by style.css for better organization) */
13
- body {
14
- font-family: sans-serif;
15
- margin: 0;
16
- padding: 0;
17
- background-color: #121212; /* Default dark background */
18
- color: #f0f0f0; /* Default light text */
19
- transition: background-color 0.3s ease, color 0.3s ease;
20
- overflow-x: hidden; /* Prevent horizontal scroll */
21
- }
22
-
23
- .light-mode {
24
- background-color: #f8f8f8;
25
- color: #333;
26
- }
27
-
28
- /* πŸŒ™πŸ”† Dark/Light Mode Toggle Button Styles */
29
- #darkModeToggle {
30
- position: fixed;
31
- top: 20px;
32
- right: 20px;
33
- background: none;
34
- border: none;
35
- color: #f0f0f0;
36
- font-size: 1.5em;
37
- cursor: pointer;
38
- z-index: 1000;
39
- transition: color 0.3s ease;
40
- }
41
-
42
- .light-mode #darkModeToggle {
43
- color: #333;
44
- }
45
-
46
- /* ✨ Custom Cursor Styles */
47
- .custom-cursor {
48
- position: fixed;
49
- width: 20px;
50
- height: 20px;
51
- border: 2px solid #00ffff; /* Neon cyan */
52
- border-radius: 50%;
53
- pointer-events: none;
54
- z-index: 1001;
55
- mix-blend-mode: difference;
56
- transition: transform 0.1s ease-out;
57
- }
58
-
59
- .click-effect {
60
- position: absolute;
61
- width: 40px;
62
- height: 40px;
63
- background-color: rgba(0, 255, 255, 0.5); /* Neon cyan with transparency */
64
- border-radius: 50%;
65
- animation: clickEffect 0.5s ease-out forwards;
66
- pointer-events: none;
67
- z-index: 1002;
68
- }
69
-
70
- @keyframes clickEffect {
71
- 0% {
72
- transform: translate(-50%, -50%) scale(0);
73
- opacity: 1;
74
- }
75
- 100% {
76
- transform: translate(-50%, -50%) scale(1.5);
77
- opacity: 0;
78
- }
79
- }
80
- </style>
81
- </head>
82
- <body>
83
-
84
- <button id="darkModeToggle">πŸŒ™</button>
85
-
86
- <div class="custom-cursor"></div>
87
-
88
- <a href="YOUR_CV_URL_HERE.pdf" download class="floating-cv-button">
89
- <i class="fas fa-download"></i> Download CV
90
- </a>
91
- <style>
92
- .floating-cv-button {
93
- position: fixed;
94
- bottom: 30px;
95
- right: 30px;
96
- background-color: #00ffff; /* Neon cyan */
97
- color: #121212;
98
- padding: 15px 25px;
99
- border-radius: 30px;
100
- text-decoration: none;
101
- font-weight: bold;
102
- box-shadow: 0 4px 8px rgba(0, 255, 255, 0.3);
103
- z-index: 999;
104
- transition: transform 0.3s ease, box-shadow 0.3s ease;
105
- }
106
-
107
- .floating-cv-button:hover {
108
- transform: translateY(-5px);
109
- box-shadow: 0 6px 12px rgba(0, 255, 255, 0.5);
110
- }
111
-
112
- .floating-cv-button i {
113
- margin-right: 10px;
114
- }
115
- </style>
116
-
117
- <div id="particles-js" style="position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;"></div>
118
-
119
- <section id="hero" class="hero">
120
- <div class="hero-content">
121
- <h1 class="neon-text">ABDUL HASEEB</h1>
122
- <p class="hero-subtitle"><span class="typed-text"></span><span class="cursor">|</span></p>
123
- <div class="social-icons">
124
- <a href="YOUR_LINKEDIN_URL_HERE" target="_blank" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
125
- <a href="YOUR_GITHUB_URL_HERE" target="_blank" aria-label="GitHub"><i class="fab fa-github"></i></a>
126
- <a href="YOUR_WEBSITE_URL_HERE" target="_blank" aria-label="Website"><i class="fas fa-globe"></i></a>
127
- <a href="mailto:[email protected]" aria-label="Email"><i class="fas fa-envelope"></i></a>
128
- <a href="tel:+923261087203" aria-label="Phone"><i class="fas fa-phone"></i></a>
129
- </div>
130
- </div>
131
- </section>
132
- <style>
133
- .hero {
134
- background: linear-gradient(45deg, #1a1a1a, #222); /* Dark gradient background */
135
- color: #f0f0f0;
136
- text-align: center;
137
- padding: 150px 0;
138
- position: relative;
139
- overflow: hidden;
140
- }
141
-
142
- .hero-content {
143
- max-width: 800px;
144
- margin: 0 auto;
145
- }
146
-
147
- .neon-text {
148
- font-size: 3em;
149
- color: #fff;
150
- text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
151
- margin-bottom: 20px;
152
- }
153
-
154
- .hero-subtitle {
155
- font-size: 1.5em;
156
- font-weight: bold;
157
- margin-bottom: 30px;
158
- }
159
-
160
- .typed-text {
161
- color: #00ffff;
162
- }
163
-
164
- .cursor {
165
- display: inline-block;
166
- width: 2px;
167
- background-color: #00ffff;
168
- margin-left: 5px;
169
- animation: blink 0.7s infinite;
170
- }
171
-
172
- @keyframes blink {
173
- 0%, 100% { opacity: 1; }
174
- 50% { opacity: 0; }
175
- }
176
-
177
- .social-icons a {
178
- display: inline-block;
179
- margin: 0 15px;
180
- font-size: 1.8em;
181
- color: #f0f0f0;
182
- text-decoration: none;
183
- transition: color 0.3s ease, transform 0.3s ease;
184
- }
185
-
186
- .social-icons a:hover {
187
- color: #00ffff;
188
- transform: scale(1.1);
189
- }
190
- </style>
191
-
192
- <section id="about" class="about">
193
- <div class="container">
194
- <h2 class="section-title">About Me</h2>
195
- <div class="glassmorphism-card" data-aos="fade-right" data-aos-duration="1000">
196
- <p>πŸ‘‹ Hi, I'm Abdul Haseeb, an aspiring <span class="highlight">Generative AI & Data Science Engineer</span> with a strong passion for leveraging the power of AI to solve real-world problems. I'm also a <span class="highlight">Prompt Engineer</span> and <span class="highlight">AI Developer</span>, constantly exploring the exciting frontiers of artificial intelligence.</p>
197
- <p>My journey involves hands-on experience in <span class="highlight">AI model deployment, FastAPI, and Data Engineering</span>. I'm particularly enthusiastic about <span class="highlight">Generative AI, LLMs, and Predictive Analytics</span>. I thrive on challenges and actively participate in hackathons to stay at the forefront of AI innovation.</p>
198
- <p>I'm a proactive problem-solver with a proven track record of building impactful AI-powered projects. My goal is to contribute meaningfully to the AI community and help shape the future through intelligent solutions. Let's connect and explore the transformative potential of AI together! πŸŒπŸ’‘</p>
199
- </div>
200
- </div>
201
- </section>
202
- <style>
203
- .about {
204
- padding: 80px 0;
205
- background: linear-gradient(135deg, #1a1a1a, #222);
206
- color: #f0f0f0;
207
- }
208
-
209
- .about .container {
210
- max-width: 960px;
211
- margin: 0 auto;
212
- padding: 0 20px;
213
- }
214
-
215
- .section-title {
216
- font-size: 2.5em;
217
- text-align: center;
218
- margin-bottom: 40px;
219
- color: #00ffff;
220
- }
221
-
222
- .glassmorphism-card {
223
- background: rgba(255, 255, 255, 0.1);
224
- border-radius: 16px;
225
- box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
226
- backdrop-filter: blur(10px);
227
- -webkit-backdrop-filter: blur(10px);
228
- border: 1px solid rgba(255, 255, 255, 0.3);
229
- padding: 40px;
230
- line-height: 1.8;
231
- color: #f0f0f0;
232
- }
233
-
234
- .light-mode .glassmorphism-card {
235
- background: rgba(0, 0, 0, 0.05);
236
- border: 1px solid rgba(0, 0, 0, 0.1);
237
- color: #333;
238
- }
239
-
240
- .highlight {
241
- color: #00ffff;
242
- font-weight: bold;
243
- }
244
- </style>
245
-
246
- <section id="skills" class="skills">
247
- <div class="container">
248
- <h2 class="section-title">Technical Skills</h2>
249
- <div class="skills-grid">
250
- <div class="skill-category" data-aos="fade-up" data-aos-delay="100">
251
- <h3>Programming Languages</h3>
252
- <div class="skill-badge">Python</div>
253
- </div>
254
- <div class="skill-category" data-aos="fade-up" data-aos-delay="200">
255
- <h3>AI Tools</h3>
256
- <div class="skill-badge">Gen AI</div>
257
- <div class="skill-badge">AI Models</div>
258
- </div>
259
- <div class="skill-category" data-aos="fade-up" data-aos-delay="300">
260
- <h3>Web & App Development</h3>
261
- <div class="skill-badge">Streamlit</div>
262
- <div class="skill-badge">Gradio</div>
263
- <div class="skill-badge">FastAPI</div>
264
- </div>
265
- <div class="skill-category" data-aos="fade-up" data-aos-delay="400">
266
- <h3>Data Management</h3>
267
- <div class="skill-badge">Faiss</div>
268
- <div class="skill-badge">MongoDB</div>
269
- <div class="skill-badge">Postgres</div>
270
- <div class="skill-badge">SQL</div>
271
- </div>
272
- <div class="skill-category" data-aos="fade-up" data-aos-delay="500">
273
- <h3>Cloud Platforms</h3>
274
- <div class="skill-badge">Hugging Face</div>
275
- <div class="skill-badge">Google Colab</div>
276
- </div>
277
- <div class="skill-category" data-aos="fade-up" data-aos-delay="600">
278
- <h3>LLMs</h3>
279
- <div class="skill-badge">LLaMA</div>
280
- <div class="skill-badge">Mistral</div>
281
- </div>
282
- <div class="skill-category" data-aos="fade-up" data-aos-delay="700">
283
- <h3>Medical AI</h3>
284
- <div class="skill-badge">PubMedBERT</div>
285
- <div class="skill-badge">Med-PaLM 2</div>
286
- <div class="skill-badge">WhisperAI</div>
287
- </div>
288
- <div class="skill-category" data-aos="fade-up" data-aos-delay="800">
289
- <h3>Deployment & Tools</h3>
290
- <div class="skill-badge">GitHub</div>
291
- <div class="skill-badge">Poetry</div>
292
- <div class="skill-badge">Rasa</div>
293
- <div class="skill-badge">APIs</div>
294
- <div class="skill-badge">JSON</div>
295
- </div>
296
- </div>
297
- </div>
298
- </section>
299
- <style>
300
- .skills {
301
- padding: 80px 0;
302
- background: linear-gradient(135deg, #222, #1a1a1a);
303
- color: #f0f0f0;
304
- }
305
-
306
- .skills .container {
307
- max-width: 960px;
308
- margin: 0 auto;
309
- padding: 0 20px;
310
- }
311
-
312
- .skills-grid {
313
- display: grid;
314
- grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
315
- gap: 30px;
316
- margin-top: 30px;
317
- }
318
-
319
- .skill-category h3 {
320
- color: #00ffff;
321
- margin-bottom: 15px;
322
- text-align: center;
323
- }
324
-
325
- .skill-badge {
326
- background-color: rgba(0, 255, 255, 0.1);
327
- color: #00ffff;
328
- border: 1px solid #00ffff;
329
- padding: 10px 15px;
330
- border-radius: 20px;
331
- display: inline-block;
332
- margin: 5px;
333
- font-size: 0.9em;
334
- transition: background-color 0.3s ease, color 0.3s ease;
335
- }
336
-
337
- .skill-badge:hover {
338
- background-color: #00ffff;
339
- color: #121212;
340
- }
341
-
342
- .light-mode .skill-badge {
343
- background-color: rgba(0, 0, 0, 0.05);
344
- color: #333;
345
- border-color: #333;
346
- }
347
-
348
- .light-mode .skill-badge:hover {
349
- background-color: #333;
350
- color: #f8f8f8;
351
- }
352
- </style>
353
-
354
- <section id="experience" class="experience" data-aos="fade-down" data-aos-duration="1000">
355
- <div class="parallax-bg" style="background-image: url('YOUR_BACKGROUND_IMAGE_URL_HERE.jpg');"></div>
356
- <div class="container">
357
- <h2 class="section-title">Work Experience & Projects</h2>
358
- <div class="experience-item">
359
- <h3>AI Developer | Self-Initiated Projects | 2024 - Present</h3>
360
- <p>Developed AI applications focused on daily life problems in Educations, Business, HealthCare.</p>
361
- <p>Utilized AI models to enhance generative performance.</p>
362
- <p>Participated in hackathons as a team leader.</p>
363
- <p>Mentored aspiring developers in Python programming and real-world AI applications.</p>
364
- </div>
365
- <div class="experience-item">
366
- <h3>Accountant & Graphic Designer</h3>
367
- <p>Managed financial records, budgeting, and reporting for various clients.</p>
368
- <p>Designed professional graphics, branding materials, and marketing assets.</p>
369
- </div>
370
- <h3 class="subsection-title">Projects</h3>
371
- <div class="project-item">
372
- <h4>RAG-Based Code Generator</h4>
373
- <p>Enabled users to generate clean, efficient code across multiple languages.</p>
374
- <p>Provided a user-friendly interface for task input and seamless code generation.</p>
375
- </div>
376
- <div class="project-item">
377
- <h4>AI Llama-Based Trading Indicator | CoinMarketCap API, Streamlit</h4>
378
- <p>Implemented real-time buy/sell signals for cryptocurrency trading.</p>
379
- <p>Incorporated currency conversion features and an intuitive user interface.</p>
380
- </div>
381
- <div class="project-item">
382
- <h4>Data Extraction and Accounting Automation | Python, OCR, Excel</h4>
383
- <p>Created a pipeline to extract text from images and automate debit/credit calculations.</p>
384
- <p>Enhanced workflow efficiency through automated data storage and operation.</p>
385
- </div>
386
- <div class="project-item">
387
- <h4>Smart Cleaner: Remove all noise and meaningless data from raw datasets.</h4>
388
- </div>
389
- <div class="project-item">
390
- <h4>Epilepsy & Seizure Prediction Chatbot</h4>
391
- <p>Leveraged <strong>LLaMA & PubMedBERT</strong> for medical predictions and recommendations.</p>
392
- </div>
393
- <div class="project-item">
394
- <h4>Voice Call Bot for Medical Triage</h4>
395
- <p>Integrated <strong>WhisperAI, PubMedBot, Rasa, and Med-PaLM 2</strong> to assess patient conditions and provide real-time guidance.</p>
396
- </div>
397
- </div>
398
- </section>
399
- <style>
400
- .experience {
401
- padding: 80px 0;
402
- position: relative;
403
- overflow: hidden;
404
- color: #f0f0f0;
405
- }
406
-
407
- .parallax-bg {
408
- position: absolute;
409
- top: 0;
410
- left: 0;
411
- width: 100%;
412
- height: 100%;
413
- background-size: cover;
414
- background-position: center;
415
- z-index: -1;
416
- filter: blur(5px); /* Optional blur for the background */
417
- transform: translateZ(-1px) scale(1.5); /* Parallax effect */
418
- }
419
-
420
- .experience .container {
421
- max-width: 960px;
422
- margin: 0 auto;
423
- padding: 0 20px;
424
- }
425
-
426
- .experience .section-title {
427
- color: #00ffff;
428
- margin-bottom: 40px;
429
- }
430
-
431
- .experience-item {
432
- background: rgba(255, 255, 255, 0.05);
433
- border-left: 3px solid #00ffff;
434
- padding: 20px;
435
- margin-bottom: 30px;
436
- border-radius: 5px;
437
- backdrop-filter: blur(5px);
438
- -webkit-backdrop-filter: blur(5px);
439
- }
440
-
441
- .light-mode .experience-item {
442
- background: rgba(0, 0, 0, 0.03);
443
- border-left-color: #333;
444
- color: #333;
445
- }
446
-
447
- .experience-item h3 {
448
- color: #00ffff;
449
- margin-top: 0;
450
- margin-bottom: 10px;
451
- }
452
-
453
- .subsection-title {
454
- color: #00ffff;
455
- margin-top: 40px;
456
- margin-bottom: 20px;
457
- font-size: 1.8em;
458
- }
459
-
460
- .project-item {
461
- background: rgba(255, 255, 255, 0.03);
462
- padding: 15px;
463
- margin-bottom: 20px;
464
- border-radius: 5px;
465
- backdrop-filter: blur(5px);
466
- -webkit-backdrop-filter: blur(5px);
467
- }
468
-
469
- .light-mode .project-item {
470
- background: rgba(0, 0, 0, 0.02);
471
- color: #333;
472
- }
473
-
474
- .project-item h4 {
475
- color: #00ffff;
476
- margin-top: 0;
477
- margin-bottom: 5px;
478
- }
479
- </style>
480
-
481
- <section id="achievements" class="achievements">
482
- <div class="container">
483
- <h2 class="section-title">Achievements & Hackathons</h2>
484
- <div class="achievement-card-container">
485
- <div class="achievement-card" data-aos="flip-left" data-aos-duration="1000">
486
- <i class="fas fa-trophy neon-icon"></i>
487
- <h3>Joined multiple international hackathons.</h3>
488
- <p>Actively participated in various global hackathons, showcasing problem-solving and collaborative skills.</p>
489
- </div>
490
- <div class="achievement-card" data-aos="flip-right" data-aos-duration="1000" data-aos-delay="200">
491
- <i class="fas fa-code neon-icon"></i>
492
- <h3>Created AI based code generator supporting multi-language code generation.</h3>
493
- <p>Developed an innovative AI tool capable of generating code in multiple programming languages, enhancing developer productivity.</p>
494
- </div>
495
- <div class="achievement-card" data-aos="flip-left" data-aos-duration="1000" data-aos-delay="400">
496
- <i class="fas fa-chart-line neon-icon"></i>
497
- <h3>Developed an AI Llama-based cryptocurrency trading indicator.</h3>
498
- <p>Built an AI-powered trading indicator using the Llama model, providing buy/sell signals and USD/PKR conversion for cryptocurrency trading.</p>
499
- </div>
500
- <div class="achievement-card" data-aos="flip-right" data-aos-duration="1000" data-aos-delay="600">
501
- <i class="fas fa-network-wired neon-icon"></i>
502
- <h3>AI for Connectivity Hackathon II</h3>
503
- <p>Developing <strong>AI-driven predictive network maintenance solutions</strong> to optimize connectivity.</p>
504
- </div>
505
- <div class="achievement-card" data-aos="flip-left" data-aos-duration="1000" data-aos-delay="800">
506
- <i class="fas fa-brain neon-icon"></i>
507
- <h3>Epilepsy & Seizure Prediction Hackathon</h3>
508
- <p>Designed a <strong>chatbot with medical LLMs</strong> for real-time predictions.</p>
509
- </div>
510
- </div>
511
- </div>
512
- </section>
513
- <style>
514
- .achievements {
515
- padding: 80px 0;
516
- background: linear-gradient(45deg, #222, #1a1a1a);
517
- color: #f0f0f0;
518
- }
519
-
520
- .achievements .container {
521
- max-width: 1000px;
522
- margin: 0 auto;
523
- padding: 0 20px;
524
- }
525
-
526
- .achievement-card-container {
527
- display: grid;
528
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
529
- gap: 30px;
530
- margin-top: 30px;
531
- }
532
-
533
- .achievement-card {
534
- background: rgba(255, 255, 255, 0.05);
535
- padding: 30px;
536
- border-radius: 10px;
537
- text-align: center;
538
- transition: transform 0.3s ease, box-shadow 0.3s ease;
539
- backdrop-filter: blur(5px);
540
- -webkit-backdrop-filter: blur(5px);
541
- }
542
-
543
- .light-mode .achievement-card {
544
- background: rgba(0, 0, 0, 0.03);
545
- color: #333;
546
- }
547
-
548
- .achievement-card:hover {
549
- transform: translateY(-10px);
550
- box-shadow: 0 8px 16px rgba(0, 255, 255, 0.2);
551
- }
552
-
553
- .neon-icon {
554
- font-size: 2em;
555
- color: #00ffff;
556
- margin-bottom: 15px;
557
- text-shadow: 0 0 10px #00ffff;
558
- }
559
-
560
- .achievement-card h3 {
561
- color: #00ffff;
562
- margin-bottom: 10px;
563
- }
564
- </style>
565
-
566
- <section id="certifications" class="certifications">
567
- <div class="container">
568
- <h2 class="section-title">Certifications</h2>
569
- <div class="certification-list">
570
- <div class="certification-item" data-aos="fade-left" data-aos-duration="1000">
571
- <h3>Saylani Mass IT Training (SMIT)</h3>
572
- <p>Diploma in AI & Data Science (Ongoing)</p>
573
- <p>Specialization: Agentic AI, Backend Development, Data Sciences</p>
574
- <p>Key Projects: RAG-based Application, Applied AI apps, Cloud Based Apps.</p>
575
- </div>
576
- <div class="certification-item" data-aos="fade-right" data-aos-duration="1000" data-aos-delay="200">
577
- <h3>PAKANGELS, Aptech</h3>
578
- <p>Generative AI (Online Certificate)</p>
579
- <p>Focus Areas: Generative AI Models, AI implementation in business, RAG-based Application</p>
580
- </div>
581
- <div class="certification-item" data-aos="fade-left" data-aos-duration="1000" data-aos-delay="400">
582
- <h3>iCodeGuru</h3>
583
- <p>Data Structures and Algorithms (DSA)</p>
584
- <p>Topics: Problem-solving with Python, Algorithm Optimization</p>
585
- </div>
586
- <div class="certification-item" data-aos="fade-right" data-aos-duration="1000" data-aos-delay="600">
587
- <h3>PAKANGELS</h3>
588
- <p>Essential Generative AI & Prompt Engineering</p>
589
- </div>
590
- </div>
591
- </div>
592
- </section>
593
- <style>
594
- .certifications {
595
- padding: 80px 0;
596
- background: linear-gradient(135deg, #1a1a1a, #222);
597
- color: #f0f0f0;
598
- }
599
-
600
- .certifications .container {
601
- max-width: 960px;
602
- margin: 0 auto;
603
- padding: 0 20px;
604
- }
605
-
606
- .certification-list {
607
- margin-top: 30px;
608
- }
609
-
610
- .certification-item {
611
- background: rgba(255, 255, 255, 0.05);
612
- padding: 25px;
613
- margin-bottom: 20px;
614
- border-radius: 8px;
615
- border-left: 5px solid #00ffff;
616
- backdrop-filter: blur(5px);
617
- -webkit-backdrop-filter: blur(5px);
618
- }
619
-
620
- .light-mode .certification-item {
621
- background: rgba(0, 0, 0, 0.03);
622
- border-left-color: #333;
623
- color: #333;
624
- }
625
-
626
- .certification-item h3 {
627
- color: #00ffff;
628
- margin-top: 0;
629
- margin-bottom: 10px;
630
- }
631
- </style>
632
-
633
- <section id="education" class="education">
634
- <div class="container">
635
- <h2 class="section-title">Education</h2>
636
- <div class="education-item" data-aos="zoom-in" data-aos-duration="1000">
637
- <h3>Bachelor of Science in Computer Science</h3>
638
- <p>The University of Agriculture, Faisalabad</p>
639
- <p>Sep 2020 - Jun 2024</p>
640
- <p>CGPA: 3.35 / 4.00</p>
641
- </div>
642
- </div>
643
- </section>
644
- <style>
645
- .education {
646
- padding: 80px 0;
647
- background: linear-gradient(45deg, #222, #1a1a1a);
648
- color: #f0f0f0;
649
- }
650
-
651
- .education .container {
652
- max-width: 800px;
653
- margin: 0 auto;
654
- padding: 0 20px;
655
- }
656
-
657
- .education-item {
658
- background: rgba(255, 255, 255, 0.05);
659
- padding: 30px;
660
- border-radius: 10px;
661
- backdrop-filter: blur(5px);
662
- -webkit-backdrop-filter: blur(5px);
663
- }
664
-
665
- .light-mode .education-item {
666
- background: rgba(0, 0, 0, 0.03);
667
- color: #333;
668
- }
669
-
670
- .education-item h3 {
671
- color: #00ffff;
672
- margin-top: 0;
673
- margin-bottom: 10px;
674
- }
675
- </style>
676
-
677
- <section id="contact" class="contact">
678
- <div class="container">
679
- <h2 class="section-title">Let's Connect!</h2>
680
- <p class="contact-message">Open to AI/ML projects, collaborations, and research opportunities. Let's discuss how AI can transform the world! πŸŒπŸ’‘</p>
681
- <div class="contact-info">
682
- <p><i class="fas fa-map-marker-alt"></i> Pakistan</p>
683
- <p><i class="fas fa-envelope"></i> <a href="mailto:[email protected]">[email protected]</a></p>
684
- <p><i class="fas fa-phone"></i> <a href="tel:+923261087203">+92 326 1087203</a></p>
685
- <p><i class="fab fa-linkedin"></i> <a href="YOUR_LINKEDIN_URL_HERE" target="_blank">LinkedIn</a></p>
686
- <p><i class="fab fa-github"></i> <a href="YOUR_GITHUB_URL_HERE" target="_blank">GitHub</a></p>
687
- <p><i class="fas fa-globe"></i> <a href="YOUR_WEBSITE_URL_HERE" target="_blank">WebSite</a></p>
688
- </div>
689
- </div>
690
- </section>
691
- <style>
692
- .contact {
693
- padding: 80px 0;
694
- background: linear-gradient(135deg, #222, #1a1a1a);
695
- color: #f0f0f0;
696
- text-align: center;
697
- }
698
-
699
- .contact .container {
700
- max-width: 700px;
701
- margin: 0 auto;
702
- padding: 0 20px;
703
- }
704
-
705
- .contact-message {
706
- font-size: 1.2em;
707
- margin-bottom: 30px;
708
- }
709
-
710
- .contact-info p {
711
- font-size: 1.1em;
712
- margin-bottom: 15px;
713
- }
714
-
715
- .contact-info a {
716
- color: #00ffff;
717
- text-decoration: none;
718
- transition: color 0.3s ease;
719
- }
720
-
721
- .contact-info a:hover {
722
- color: #fff;
723
- }
724
-
725
- .contact-info i {
726
- margin-right: 10px;
727
- color: #00ffff;
728
- }
729
- </style>
730
-
731
- <footer class="footer">
732
- <div class="container">
733
- <p>&copy; 2025 Abdul Haseeb. All Rights Reserved. ✨ Portfolio Designed with ❀️</p>
734
- </div>
735
- </footer>
736
- <style>
737
- .footer {
738
- background-color: #1a1a1a;
739
- color: #f0f0f0;
740
- text-align: center;
741
- padding: 30px 0;
742
- font-size: 0.9em;
743
- }
744
-
745
- .footer .container {
746
- max-width: 960px;
747
- margin: 0 auto;
748
- padding: 0 20px;
749
- }
750
- </style>
751
-
752
- <script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js"></script>
753
- <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/aos.js"></script>
754
- <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js"></script>
755
- <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/ScrollTrigger.min.js"></script>
756
- <script src="https://cdn.jsdelivr.net/npm/[email protected]/particles.min.js"></script>
757
- <script src="script.js"></script>
758
-
759
- <script>
760
- AOS.init({
761
- once: true, // Whether animation should happen only once - while scrolling down
762
- duration: 1000, // Values from 0 to 3000, with step 50ms
763
- easing: 'ease-out-cubic', // Animation easing
764
- });
765
-
766
- // 🌠 Initialize Particles.js
767
- particlesJS('particles-js', {
768
- particles: {
769
- number: { value: 80, density: { enable: true, value_area: 800 } },
770
- color: { value: '#00ffff' },
771
- shape: { type: 'circle', stroke: { width: 0, color: '#000000' }, polygon: { nb_sides: 5 } },
772
- opacity: { value: 0.5, random: true, anim: { enable: false, speed: 1, opacity_min: 0.1, sync: false } },
773
- size: { value: 3, random: true, anim: { enable: false, speed: 40, size_min: 0.1, sync: false } },
774
- line_linked: { enable: true, distance: 150, color: '#00ffff', opacity: 0.4, width: 1 },
775
- move: { enable: true, speed: 2, direction: 'none', random: true, straight: false, out_mode: 'out', bounce: false, attract: { enable: false, rotateX: 600, rotateY: 1200 } }
776
- },
777
- interactivity: {
778
- detect_on: 'canvas',
779
- events: { onhover: { enable: true, mode: 'grab' }, onclick: { enable: true, mode: 'push' }, resize: true },
780
- modes: { grab: { distance: 140, line_linked: { opacity: 1 } }, bubble: { distance: 200, size: 40, duration: 2, opacity: 0.8, speed: 3 }, repulse: { distance: 250, duration: 0.4 }, push: { particles_nb: 4 }, remove: { particles_nb: 2 } }
781
- },
782
- retina_detect: true
783
- });
784
- </script>
785
-
786
- </body>
787
- </html>