adamqab's picture
Update index.html
2e2dcb5 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Portfolio of Adham Qab, Tech Innovator and AI Enthusiast.">
<title>Adham Qab | Tech Innovator</title>
<link rel="icon" href="favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Montserrat:wght@300;400;500;600&display=swap');
:root {
--primary-red: #e63946;
--primary-gold: #ffd700;
--primary-black: #0a0a0a;
--space-blue: #1a1a2e;
}
body {
font-family: 'Montserrat', sans-serif;
background-color: var(--primary-black);
color: white;
scroll-behavior: smooth;
}
h1, h2, h3, .tech-font {
font-family: 'Orbitron', sans-serif;
}
.hero-section {
height: 100vh;
background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)),
url('https://i.postimg.cc/hjBVvCM8/4uoIBUi.jpg') no-repeat center center/cover;
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: var(--primary-gold);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.project-card {
background: rgba(26, 26, 46, 0.5);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 215, 0, 0.1);
transition: all 0.3s ease;
}
.project-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
border-color: rgba(255, 215, 0, 0.3);
}
.gold-accent {
color: var(--primary-gold);
}
.red-accent {
color: var(--primary-red);
}
.section-divider {
height: 100px;
background: linear-gradient(to bottom, var(--primary-black), var(--space-blue));
}
.tech-icon {
transition: all 0.3s ease;
}
.tech-icon:hover {
transform: scale(1.2);
color: var(--primary-gold);
}
.floating {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.glow {
text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}
.typewriter {
overflow: hidden;
border-right: 3px solid var(--primary-gold);
white-space: nowrap;
margin: 0 auto;
letter-spacing: 2px;
animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: var(--primary-gold) }
}
.scroll-indicator {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
40% { transform: translateY(-20px) translateX(-50%); }
60% { transform: translateY(-10px) translateX(-50%); }
}
.contact-input {
background: rgba(26, 26, 46, 0.5);
border: 1px solid rgba(255, 215, 0, 0.2);
color: white;
}
.contact-input:focus {
outline: none;
border-color: var(--primary-gold);
box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
/* Basic animation for elements coming into view */
.animate-fadeIn {
animation: fadeIn 1s ease-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body>
<section class="hero-section relative flex items-center justify-center text-center overflow-hidden">
<div class="absolute inset-0 bg-black opacity-40"></div>
<div class="relative z-10 px-6 max-w-4xl">
<h1 class="text-5xl md:text-7xl font-bold mb-6 glow">
ADHAM <span class="red-accent">QAB</span>
</h1>
<div class="typewriter">
<h2 class="text-2xl md:text-3xl gold-accent tech-font">TECH INNOVATOR & AI ENTHUSIAST</h2>
</div>
<p class="text-lg md:text-xl mt-8 mb-10">
"Shaping the future with AI and emerging technologies"
</p>
<div class="flex justify-center space-x-6">
<a href="https://www.instagram.com/adhamqab" target="_blank" class="w-12 h-12 rounded-full bg-black bg-opacity-50 flex items-center justify-center text-white hover:bg-opacity-70 hover:text-red-500 transition-all duration-300" aria-label="Instagram profile">
<i class="fab fa-instagram text-2xl"></i>
</a>
<a href="https://www.linkedin.com/in/adam-qab-620856187/" target="_blank" class="w-12 h-12 rounded-full bg-black bg-opacity-50 flex items-center justify-center text-white hover:bg-opacity-70 hover:text-blue-400 transition-all duration-300" aria-label="LinkedIn profile">
<i class="fab fa-linkedin-in text-2xl"></i>
</a>
</div>
</div>
<div class="scroll-indicator">
<a href="#about" class="text-white text-4xl" aria-label="Scroll to about section">
<i class="fas fa-chevron-down"></i>
</a>
</div>
</section>
<nav class="fixed top-0 left-0 right-0 z-50 bg-black bg-opacity-80 backdrop-filter backdrop-blur-lg py-4 px-6 shadow-lg">
<div class="max-w-6xl mx-auto flex justify-between items-center">
<a href="#" class="text-2xl font-bold tech-font">
<span class="red-accent">A</span>DHAM <span class="gold-accent">Q</span>AB
</a>
<div class="hidden md:flex space-x-8">
<a href="#about" class="nav-link text-white hover:text-gold-500">About</a>
<a href="#projects" class="nav-link text-white hover:text-gold-500">Projects</a>
<a href="#achievements" class="nav-link text-white hover:text-gold-500">Achievements</a>
<a href="#contact" class="nav-link text-white hover:text-gold-500">Contact</a>
</div>
<button class="md:hidden text-white text-2xl mobile-menu-button" aria-label="Open navigation menu">
<i class="fas fa-bars"></i>
</button>
</div>
<div id="mobile-menu" class="hidden md:hidden mt-4 space-y-2 px-2 pt-2 pb-3 bg-black bg-opacity-90 rounded-md">
<a href="#about" class="block nav-link text-white hover:text-gold-500 px-3 py-2 rounded-md text-base font-medium">About</a>
<a href="#projects" class="block nav-link text-white hover:text-gold-500 px-3 py-2 rounded-md text-base font-medium">Projects</a>
<a href="#achievements" class="block nav-link text-white hover:text-gold-500 px-3 py-2 rounded-md text-base font-medium">Achievements</a>
<a href="#contact" class="block nav-link text-white hover:text-gold-500 px-3 py-2 rounded-md text-base font-medium">Contact</a>
</div>
</nav>
<section id="about" class="py-20 bg-space-blue">
<div class="max-w-6xl mx-auto px-6">
<h2 class="text-4xl font-bold mb-16 tech-font text-center">
<span class="gold-accent">//</span> ABOUT <span class="red-accent">ME</span>
</h2>
<div class="flex flex-col lg:flex-row items-center gap-12">
<div class="lg:w-1/2">
<div class="relative">
<div class="w-64 h-64 bg-red-500 rounded-full mx-auto floating"></div>
<div class="absolute -inset-4 border-2 border-gold-500 rounded-full opacity-20"></div>
</div>
</div>
<div class="lg:w-1/2">
<h3 class="text-3xl font-bold mb-6 tech-font">
I'M <span class="red-accent">ADHAM QAB</span>
</h3>
<p class="text-lg mb-6 leading-relaxed">
A tech enthusiast passionate about AI, digital innovation, and building tools that help others. Originally from Yemen and based in the U.S., I'm on a mission to use AI and emerging technologies to shape the future.
</p>
<div class="grid grid-cols-2 gap-4 mb-8">
<div class="flex items-center">
<i class="fas fa-map-marker-alt mr-3 gold-accent"></i>
<span>United States</span>
</div>
<div class="flex items-center">
<i class="fas fa-code mr-3 gold-accent"></i>
<span>Full Stack Developer</span>
</div>
<div class="flex items-center">
<i class="fas fa-brain mr-3 gold-accent"></i>
<span>AI Specialist</span>
</div>
<div class="flex items-center">
<i class="fas fa-shield-alt mr-3 gold-accent"></i> <span>Cyber Security Enthusiast</span>
</div>
<div class="flex items-center">
<i class="fas fa-rocket mr-3 gold-accent"></i>
<span>Tech Innovator</span>
</div>
</div>
<div class="flex flex-wrap gap-3">
<span class="px-3 py-1 bg-black bg-opacity-40 rounded-full text-sm flex items-center">
<i class="fab fa-python mr-2 tech-icon"></i> Python
</span>
<span class="px-3 py-1 bg-black bg-opacity-40 rounded-full text-sm flex items-center">
<i class="fas fa-robot mr-2 tech-icon"></i> AI/ML
</span>
<span class="px-3 py-1 bg-black bg-opacity-40 rounded-full text-sm flex items-center">
<i class="fab fa-js mr-2 tech-icon"></i> JavaScript
</span>
<span class="px-3 py-1 bg-black bg-opacity-40 rounded-full text-sm flex items-center">
<i class="fab fa-react mr-2 tech-icon"></i> React
</span>
</div>
</div>
</div>
</div>
</section>
<div class="section-divider"></div>
<section id="projects" class="py-20 bg-black">
<div class="max-w-6xl mx-auto px-6">
<h2 class="text-4xl font-bold mb-16 tech-font text-center">
<span class="gold-accent">//</span> MY <span class="red-accent">PROJECTS</span>
</h2>
<div class="grid md:grid-cols-2 gap-8">
<div class="project-card rounded-xl p-8 relative overflow-hidden">
<div class="absolute -right-10 -top-10 w-32 h-32 bg-green-500 rounded-full opacity-10"></div>
<div class="absolute -left-10 -bottom-10 w-32 h-32 bg-blue-500 rounded-full opacity-10"></div>
<div class="flex items-center mb-6">
<div class="w-16 h-16 bg-green-500 bg-opacity-20 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-gamepad text-3xl text-green-400"></i>
</div>
<h3 class="text-2xl font-bold tech-font">Snake Game</h3>
</div>
<p class="mb-6 text-gray-300">
A classic Snake game built with HTML, CSS, and JavaScript. Try to get the highest score!
</p>
<div class="flex justify-center mb-4">
<iframe src="https://adhamqabban37.github.io/snakegame/" width="100%" height="400px" style="border:none; border-radius: 12px;"></iframe>
</div>
<a href="https://adhamqabban37.github.io/snakegame/" target="_blank" class="text-green-400 hover:text-green-200 transition">
Play in full screen <i class="fas fa-arrow-right ml-1"></i>
</a>
</div>
<div class="project-card rounded-xl p-8 relative overflow-hidden">
<div class="absolute -right-10 -top-10 w-32 h-32 bg-yellow-500 rounded-full opacity-10"></div>
<div class="absolute -left-10 -bottom-10 w-32 h-32 bg-pink-500 rounded-full opacity-10"></div>
<div class="flex items-center mb-6">
<div class="w-16 h-16 bg-yellow-500 bg-opacity-20 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-gamepad text-3xl text-yellow-400"></i>
</div>
<h3 class="text-2xl font-bold tech-font">XO Tic-Tac-Toe Game</h3>
</div>
<p class="mb-6 text-gray-300">
A simple and fun Tic-Tac-Toe game made with HTML, CSS, and JavaScript. Play and challenge yourself!
</p>
<div class="flex justify-center mb-4">
<iframe src="https://adhamqabban37.github.io/xo/" width="100%" height="400px" style="border:none; border-radius: 12px;"></iframe>
</div>
<a href="https://adhamqabban37.github.io/xo/" target="_blank" class="text-yellow-400 hover:text-yellow-200 transition">
Play in full screen <i class="fas fa-arrow-right ml-1"></i>
</a>
</div>
<div class="project-card rounded-xl p-8 relative overflow-hidden">
<div class="absolute -right-10 -top-10 w-32 h-32 bg-red-500 rounded-full opacity-10"></div>
<div class="absolute -left-10 -bottom-10 w-32 h-32 bg-gold-500 rounded-full opacity-10"></div>
<div class="flex items-center mb-6">
<div class="w-16 h-16 bg-red-500 bg-opacity-20 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-robot text-3xl red-accent"></i>
</div>
<h3 class="text-2xl font-bold tech-font">AI Chatbot</h3>
</div>
<p class="mb-6 text-gray-300">
A sophisticated conversational AI built with Flask and OpenAI API, demonstrating cutting-edge natural language processing capabilities.
</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="px-3 py-1 bg-black bg-opacity-40 rounded-full text-xs">Python</span>
<span class="px-3 py-1 bg-black bg-opacity-40 rounded-full text-xs">Flask</span>
<span class="px-3 py-1 bg-black bg-opacity-40 rounded-full text-xs">OpenAI API</span>
<span class="px-3 py-1 bg-black bg-opacity-40 rounded-full text-xs">NLP</span>
</div>
<a href="#" class="inline-flex items-center text-gold-500 hover:text-gold-300 transition">
View Project <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<div class="project-card rounded-xl p-8 relative overflow-hidden">
<div class="absolute -right-10 -top-10 w-32 h-32 bg-blue-500 rounded-full opacity-10"></div>
<div class="absolute -left-10 -bottom-10 w-32 h-32 bg-green-500 rounded-full opacity-10"></div>
<div class="flex items-center mb-6">
<div class="w-16 h-16 bg-blue-500 bg-opacity-20 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-cogs text-3xl text-blue-500"></i>
</div>
<h3 class="text-2xl font-bold tech-font">n8n Automation Project</h3>
</div>
<p class="mb-6 text-gray-300">
This project showcases an automation workflow built using n8n. The goal was to streamline specific tasks, improving efficiency through automated processes. The solution integrates multiple services, allowing data to flow seamlessly between them, reducing manual effort and errors.
</p>
<div class="relative rounded-lg overflow-hidden group">
<img src="./assets/n8n.png" alt="n8n Project" class="w-full h-64 object-cover object-center">
<div class="absolute inset-0 bg-black bg-opacity-80 flex flex-col items-center justify-center gap-4 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
<h3 class="text-xl font-semibold text-white tech-font">n8n Workflow Automation</h3>
<p class="text-gray-300 text-center px-6">Automated various tasks and workflows using n8n, a powerful open-source automation platform.</p>
<a href="#" class="px-4 py-2 bg-gold-500 text-black rounded-md hover:bg-gold-300 transition-colors duration-300">Learn More</a>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-block px-8 py-3 border border-gold-500 text-gold-500 rounded-lg hover:bg-gold-500 hover:text-black transition font-bold tech-font">
VIEW ALL PROJECTS
</a>
</div>
</div>
</section>
<div class="section-divider"></div>
<section id="achievements" class="py-20 bg-space-blue">
<div class="max-w-6xl mx-auto px-6">
<h2 class="text-4xl font-bold mb-16 tech-font text-center">
<span class="gold-accent">//</span> ACHIEVEMENTS <span class="red-accent">&</span> MILESTONES
</h2>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-black bg-opacity-40 rounded-xl p-8 border border-gray-800 hover:border-gold-500 transition achievement-card">
<div class="w-16 h-16 bg-red-500 bg-opacity-20 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-certificate text-2xl gold-accent"></i>
</div>
<h3 class="text-xl font-bold mb-3 tech-font">Getting Started with Microsoft Excel</h3>
<p class="text-gray-300">
This course provided a foundation in Microsoft Excel, covering essential functions like data organization, formula creation, and spreadsheet formatting. It enhanced my ability to work efficiently with Excel for data analysis and reporting.
</p>
<a href="https://coursera.org/share/97c37f369e95bc4dd67a0751e8f6757d" target="_blank" class="text-blue-500 hover:underline">View Certificate</a>
</div>
<div class="bg-black bg-opacity-40 rounded-xl p-8 border border-gray-800 hover:border-gold-500 transition achievement-card">
<div class="w-16 h-16 bg-red-500 bg-opacity-20 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-certificate text-2xl gold-accent"></i>
</div>
<h3 class="text-xl font-bold mb-3 tech-font">Ethical Hacking</h3>
<p class="text-gray-300">
This course introduced the fundamentals of ethical hacking, including techniques for identifying vulnerabilities and strengthening security in IT systems.
</p>
<a href="https://coursera.org/share/6830f096fca708ed65a144449430c5e3" target="_blank" class="text-blue-500 hover:underline">View Certificate</a>
</div>
<div class="bg-black bg-opacity-40 rounded-xl p-8 border border-gray-800 hover:border-gold-500 transition achievement-card">
<div class="w-16 h-16 bg-red-500 bg-opacity-20 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-certificate text-2xl gold-accent"></i>
</div>
<h3 class="text-xl font-bold mb-3 tech-font">Foundations of Digital Marketing and E-commerce</h3>
<p class="text-gray-300">
This course provided a comprehensive overview of digital marketing strategies and e-commerce tools for building a successful online presence.
</p>
<a href="https://coursera.org/share/4fe48a65a7b6c2d0ee755ec6f0cdda4d" target="_blank" class="text-blue-500 hover:underline">View Certificate</a>
</div>
<div class="bg-black bg-opacity-40 rounded-xl p-8 border border-gray-800 hover:border-gold-500 transition achievement-card">
<div class="w-16 h-16 bg-red-500 bg-opacity-20 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-certificate text-2xl gold-accent"></i>
</div>
<h3 class="text-xl font-bold mb-3 tech-font">Google AI Essentials</h3>
<p class="text-gray-300">
A deep dive into the basics of Artificial Intelligence (AI), learning how machine learning models are developed and implemented.
</p>
<a href="https://coursera.org/share/01a61a5901227771f5d1a0d670697e7c" target="_blank" class="text-blue-500 hover:underline">View Certificate</a>
</div>
<div class="bg-black bg-opacity-40 rounded-xl p-8 border border-gray-800 hover:border-gold-500 transition achievement-card">
<div class="w-16 h-16 bg-red-500 bg-opacity-20 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-certificate text-2xl gold-accent"></i>
</div>
<h3 class="text-xl font-bold mb-3 tech-font">ChatGPT Prompt Engineering for Developers</h3>
<p class="text-gray-300">
This course equipped me with the skills to effectively use ChatGPT and other large language models (LLMs) by teaching best practices for prompt engineering. I learned how to craft prompts to generate various types of content, debug code, and use LLMs in applications.
</p>
<a href="https://coursera.org/share/9b6f3af40f86aa9958b34fcc3ac03e93" target="_blank" class="text-blue-500 hover:underline">View Certificate</a>
</div>
<div class="bg-black bg-opacity-40 rounded-xl p-8 border border-gray-800 hover:border-gold-500 transition achievement-card">
<div class="w-16 h-16 bg-red-500 bg-opacity-20 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-certificate text-2xl gold-accent"></i>
</div>
<h3 class="text-xl font-bold mb-3 tech-font">The Bits and Bytes of Computer Networking</h3>
<p class="text-gray-300">
This course provided a comprehensive introduction to computer networking, covering topics such as network fundamentals, protocols, and infrastructure. It enhanced my understanding of how devices communicate and the principles behind network design and troubleshooting.
</p>
<a href="https://coursera.org/share/d374547dad6cb9cf97f4ea0e07d13543" target="_blank" class="text-blue-500 hover:underline">View Certificate</a>
</div>
<div class="bg-black bg-opacity-40 rounded-xl p-8 border border-gray-800 hover:border-gold-500 transition achievement-card">
<div class="w-16 h-16 bg-red-500 bg-opacity-20 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-certificate text-2xl gold-accent"></i>
</div>
<h3 class="text-xl font-bold mb-3 tech-font">Technical Support Fundamentals</h3>
<p class="text-gray-300">
This course covered the core skills and concepts needed for a career in technical support. I learned troubleshooting methodologies, customer service best practices, and essential IT support tools, preparing me to effectively assist users with technical issues.
</p>
<a href="#" class="text-blue-500 hover:underline">View Certificate</a>
</div>
<div class="bg-black bg-opacity-40 rounded-xl p-8 border border-gray-800 hover:border-gold-500 transition achievement-card">
<div class="w-16 h-16 bg-red-500 bg-opacity-20 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-certificate text-2xl gold-accent"></i>
</div>
<h3 class="text-xl font-bold mb-3 tech-font">System Administration and IT Infrastructure Services</h3>
<p class="text-gray-300">
This course provided essential skills for managing and maintaining IT infrastructure, covering topics like system administration, network services, and server management to ensure operational reliability and security.
</p>
<a href="https://coursera.org/share/9dfd0fb1ea4ceec86e38d830e8d6a50c" target="_blank" class="text-blue-500 hover:underline">View Certificate</a>
</div>
<div class="bg-black bg-opacity-40 rounded-xl p-8 border border-gray-800 hover:border-gold-500 transition achievement-card">
<div class="w-16 h-16 bg-red-500 bg-opacity-20 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-robot text-2xl gold-accent"></i>
</div>
<h3 class="text-xl font-bold mb-3 tech-font">Machine Learning Crash Course: Linear Regression</h3>
<p class="text-gray-300">
Completed the Linear Regression module of Google's Machine Learning Crash Course, gaining a solid understanding of this fundamental supervised learning algorithm for prediction tasks.
</p>
<a href="https://developers.google.com/profile/badges/playlists/machine-learning-crash-course/linear-regression" target="_blank" class="text-blue-500 hover:underline">View Badge</a>
</div>
</div>
</div>
</section>
<div class="section-divider"></div>
<section id="contact" class="py-20 bg-black">
<div class="max-w-6xl mx-auto px-6">
<h2 class="text-4xl font-bold mb-16 tech-font text-center">
<span class="gold-accent">//</span> GET IN <span class="red-accent">TOUCH</span>
</h2>
<div class="grid md:grid-cols-2 gap-12">
<div>
<h3 class="text-2xl font-bold mb-6 tech-font">
LET'S <span class="red-accent">CONNECT</span>
</h3>
<p class="mb-8 text-gray-300">
Interested in collaborating or have questions about my work? Feel free to reach out through this form or connect with me on social media.
</p>
<div class="space-y-4">
<div class="flex items-center">
<div class="w-12 h-12 bg-red-500 bg-opacity-20 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-envelope gold-accent"></i>
</div>
<div>
<h4 class="font-bold">Email</h4>
<p class="text-gray-400">adamqab.18@gmail.com</p>
</div>
</div>
<div class="flex items-center">
<div class="w-12 h-12 bg-red-500 bg-opacity-20 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-map-marker-alt gold-accent"></i>
</div>
<div>
<h4 class="font-bold">Location</h4>
<p class="text-gray-400">United States</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-bold mb-4">Follow Me</h4>
<div class="flex space-x-4">
<a href="https://www.instagram.com/adhamqab" target="_blank" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-white hover:bg-red-500 transition" aria-label="Instagram profile">
<i class="fab fa-instagram"></i>
</a>
<a href="https://www.linkedin.com/in/adam-qab-620856187/" target="_blank" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-white hover:bg-blue-600 transition" aria-label="LinkedIn profile">
<i class="fab fa-linkedin-in"></i>
</a>
</a>
<a href="https://github.com/adhamqabban37" target="_blank" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-white hover:bg-gray-600 transition" aria-label="GitHub profile"> <i class="fab fa-github"></i>
</a>
</div>
</div>
</div>
<div>
<form class="space-y-6">
<div>
<label for="name" class="block mb-2 text-sm font-medium">Your Name</label>
<input type="text" id="name" name="name" class="contact-input w-full px-4 py-3 rounded-lg focus:ring-2 focus:ring-gold-500" required>
</div>
<div>
<label for="email" class="block mb-2 text-sm font-medium">Your Email</label>
<input type="email" id="email" name="email" class="contact-input w-full px-4 py-3 rounded-lg focus:ring-2 focus:ring-gold-500" required>
</div>
<div>
<label for="subject" class="block mb-2 text-sm font-medium">Subject</label>
<input type="text" id="subject" name="subject" class="contact-input w-full px-4 py-3 rounded-lg focus:ring-2 focus:ring-gold-500">
</div>
<div>
<label for="message" class="block mb-2 text-sm font-medium">Message</label>
<textarea id="message" name="message" rows="5" class="contact-input w-full px-4 py-3 rounded-lg focus:ring-2 focus:ring-gold-500" required></textarea>
</div>
<button type="submit" class="w-full py-3 bg-red-500 hover:bg-red-600 text-white font-bold rounded-lg transition flex items-center justify-center">
SEND MESSAGE <i class="fas fa-paper-plane ml-2"></i>
</button>
</form>
</div>
</div>
</div>
</section>
<footer class="bg-black border-t border-gray-800 py-8">
<div class="max-w-6xl mx-auto px-6 text-center">
<div class="flex justify-center mb-6">
<a href="#" class="text-2xl font-bold tech-font">
<span class="red-accent">A</span>DHAM <span class="gold-accent">Q</span>AB
</a>
</div>
<p class="text-gray-500 mb-6">
&copy; <span id="currentYear">2025</span> Adham Qab. All rights reserved.
</p>
<div class="flex justify-center space-x-6">
<a href="https://www.instagram.com/adhamqab" target="_blank" class="text-gray-500 hover:text-red-500 transition" aria-label="Instagram profile">
<i class="fab fa-instagram"></i>
</a>
<a href="https://www.linkedin.com/in/adam-qab-620856187/" target="_blank" class="text-gray-500 hover:text-blue-400 transition" aria-label="LinkedIn profile">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="https://github.com/adhamqabban37" target="_blank" class="text-gray-500 hover:text-white transition" aria-label="GitHub profile">
</a>
<a href="https://github.com/adhamqabban37" target="_blank" class="text-gray-500 hover:text-white transition" aria-label="GitHub profile"> <i class="fab fa-github"></i>
</a>
</div>
</div>
</footer>
<script>
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetElement = document.querySelector(this.getAttribute('href'));
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
}
// Close mobile menu if open and it exists
const mobileMenu = document.getElementById('mobile-menu');
if (mobileMenu && !mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
});
});
// Mobile menu toggle
const mobileMenuButton = document.querySelector('.mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
if (mobileMenuButton && mobileMenu) {
mobileMenuButton.addEventListener('click', function() {
mobileMenu.classList.toggle('hidden');
});
}
// Animate elements when they come into view
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate-fadeIn');
observer.unobserve(entry.target); // Optional: unobserve after animation
}
});
}, { threshold: 0.1 });
document.querySelectorAll('.project-card, .achievement-card').forEach(card => {
observer.observe(card);
});
// Typewriter effect - ensure border is removed
const typewriterElement = document.querySelector('.typewriter');
if (typewriterElement) {
// Ensure animation completes before removing border if animation-duration is known
// For this example, using a timeout matching CSS animation
setTimeout(() => {
typewriterElement.style.borderRight = 'none';
}, 3500); // Match the 'typing' animation duration in CSS
}
// Update copyright year dynamically
document.getElementById('currentYear').textContent = new Date().getFullYear();
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=adamqab/https-huggingface-co-spaces-adamqab-myweb" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p>
</body>
</html>