Spaces:
Running
Running
now there are two forms now contact information and how to reach me, make it one with cool animations and graphics - Initial Deployment
e4905b5
verified
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Taha Hassan | Digital Marketer</title> | |
| <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"> | |
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#FF6B00', | |
| secondary: '#FF8C42', | |
| dark: '#1A1A1A', | |
| light: '#F5F5F5' | |
| }, | |
| animation: { | |
| 'fade-in': 'fadeIn 0.8s ease-in-out', | |
| 'slide-up': 'slideUp 0.6s ease-out', | |
| 'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite' | |
| }, | |
| keyframes: { | |
| fadeIn: { | |
| '0%': { opacity: '0' }, | |
| '100%': { opacity: '1' } | |
| }, | |
| slideUp: { | |
| '0%': { transform: 'translateY(20px)', opacity: '0' }, | |
| '100%': { transform: 'translateY(0)', opacity: '1' } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| body { | |
| font-family: 'Poppins', sans-serif; | |
| background-color: #f8f9fa; | |
| color: #333; | |
| scroll-behavior: smooth; | |
| } | |
| .section-title { | |
| position: relative; | |
| display: inline-block; | |
| margin-bottom: 2rem; | |
| } | |
| .section-title::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: -8px; | |
| left: 0; | |
| width: 50px; | |
| height: 4px; | |
| background: linear-gradient(90deg, #FF6B00, #FF8C42); | |
| border-radius: 2px; | |
| } | |
| .timeline-item { | |
| position: relative; | |
| padding-left: 30px; | |
| margin-bottom: 30px; | |
| } | |
| .timeline-item::before { | |
| content: ''; | |
| position: absolute; | |
| left: 0; | |
| top: 8px; | |
| width: 12px; | |
| height: 12px; | |
| border-radius: 50%; | |
| background-color: #FF6B00; | |
| z-index: 2; | |
| } | |
| .timeline-item::after { | |
| content: ''; | |
| position: absolute; | |
| left: 5px; | |
| top: 8px; | |
| width: 2px; | |
| height: 100%; | |
| background-color: #FF6B00; | |
| z-index: 1; | |
| } | |
| .timeline-item:last-child::after { | |
| height: 20px; | |
| } | |
| .skill-bar { | |
| height: 8px; | |
| background-color: #e9ecef; | |
| border-radius: 4px; | |
| overflow: hidden; | |
| } | |
| .skill-progress { | |
| height: 100%; | |
| background: linear-gradient(90deg, #FF6B00, #FF8C42); | |
| border-radius: 4px; | |
| } | |
| .project-card:hover { | |
| transform: translateY(-10px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
| } | |
| .animate-on-scroll { | |
| opacity: 0; | |
| transform: translateY(20px); | |
| transition: opacity 0.6s ease-out, transform 0.6s ease-out; | |
| } | |
| .animate-on-scroll.visible { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| .hero-pattern { | |
| background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, rgba(255,255,255,0) 70%); | |
| } | |
| .floating { | |
| animation: floating 3s ease-in-out infinite; | |
| } | |
| @keyframes floating { | |
| 0% { transform: translateY(0px); } | |
| 50% { transform: translateY(-10px); } | |
| 100% { transform: translateY(0px); } | |
| } | |
| .cert-badge { | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .cert-badge::before { | |
| content: ''; | |
| position: absolute; | |
| top: -50%; | |
| left: -50%; | |
| width: 20px; | |
| height: 200%; | |
| background: rgba(255,255,255,0.2); | |
| transform: rotate(25deg); | |
| transition: all 0.6s; | |
| } | |
| .cert-badge:hover::before { | |
| left: 120%; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50"> | |
| <!-- Header/Navigation --> | |
| <header class="fixed w-full z-50 bg-white shadow-md"> | |
| <div class="container mx-auto px-4 py-3 flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <div class="w-10 h-10 rounded-full bg-primary flex items-center justify-center"> | |
| <span class="text-white font-bold text-xl">TH</span> | |
| </div> | |
| <h1 class="ml-3 text-xl font-bold text-dark">Taha <span class="text-primary">Hassan</span></h1> | |
| </div> | |
| <nav class="hidden md:block"> | |
| <ul class="flex space-x-8"> | |
| <li><a href="#home" class="text-dark hover:text-primary transition">Home</a></li> | |
| <li><a href="#about" class="text-dark hover:text-primary transition">About</a></li> | |
| <li><a href="#education" class="text-dark hover:text-primary transition">Education</a></li> | |
| <li><a href="#experience" class="text-dark hover:text-primary transition">Experience</a></li> | |
| <li><a href="#certifications" class="text-dark hover:text-primary transition">Certifications</a></li> | |
| <li><a href="#projects" class="text-dark hover:text-primary transition">Projects</a></li> | |
| </ul> | |
| </nav> | |
| <button class="md:hidden text-dark"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| </div> | |
| </header> | |
| <!-- Hero Section --> | |
| <section id="home" class="pt-24 pb-16 hero-pattern"> | |
| <div class="container mx-auto px-4 flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0 animate-on-scroll"> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-4 text-dark"> | |
| Hi, I'm <span class="text-primary">Taha Hassan</span> | |
| </h1> | |
| <h2 class="text-2xl md:text-3xl font-semibold mb-6 text-gray-700"> | |
| Digital Marketing Professional | |
| </h2> | |
| <p class="text-lg mb-8 text-gray-600 max-w-lg"> | |
| Ambitious Digital Marketer pursuing an MSc in Digital Marketing at the University of West Scotland. Skilled in crafting data-driven campaigns and boosting brand engagement. | |
| </p> | |
| <div class="flex flex-wrap gap-4"> | |
| <a href="#contact" class="px-6 py-3 bg-primary text-white font-medium rounded-full shadow-lg hover:bg-secondary transition transform hover:-translate-y-1"> | |
| Contact Me | |
| </a> | |
| <a href="#projects" class="px-6 py-3 bg-white text-primary font-medium rounded-full border-2 border-primary shadow-lg hover:bg-gray-50 transition transform hover:-translate-y-1"> | |
| View Projects | |
| </a> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 flex justify-center animate-on-scroll"> | |
| <div class="relative"> | |
| <div class="w-64 h-64 md:w-80 md:h-80 rounded-full overflow-hidden border-4 border-white shadow-xl"> | |
| <div class="w-full h-full bg-gray-200 border-2 border-dashed rounded-xl flex items-center justify-center"> | |
| <span class="text-gray-500">Profile Image</span> | |
| </div> | |
| </div> | |
| <div class="absolute -bottom-4 -right-4 bg-primary text-white py-2 px-4 rounded-full shadow-lg floating"> | |
| <span>Available for work</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- About Section --> | |
| <section id="about" class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-3xl font-bold mb-12 text-center section-title">About Me</h2> | |
| <div class="flex flex-col md:flex-row gap-8"> | |
| <div class="md:w-1/3 animate-on-scroll"> | |
| <div class="bg-gray-50 p-6 rounded-xl shadow-lg"> | |
| <h3 class="text-xl font-semibold mb-4 text-dark">Personal Info</h3> | |
| <ul class="space-y-3"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-map-marker-alt text-primary mr-3"></i> | |
| <span>Paisley, UK</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-phone text-primary mr-3"></i> | |
| <span>+44 7728974631</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-envelope text-primary mr-3"></i> | |
| <span>[email protected]</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fab fa-linkedin text-primary mr-3"></i> | |
| <a href="https://www.linkedin.com/in/tahahassan12121996" target="_blank" class="hover:text-primary transition">LinkedIn Profile</a> | |
| </li> | |
| </ul> | |
| <h3 class="text-xl font-semibold mt-8 mb-4 text-dark">Skills</h3> | |
| <div class="space-y-4"> | |
| <div> | |
| <p class="mb-1">Digital Marketing</p> | |
| <div class="skill-bar"> | |
| <div class="skill-progress w-4/5"></div> | |
| </div> | |
| </div> | |
| <div> | |
| <p class="mb-1">Content Creation</p> | |
| <div class="skill-bar"> | |
| <div class="skill-progress w-3/4"></div> | |
| </div> | |
| </div> | |
| <div> | |
| <p class="mb-1">Social Media Management</p> | |
| <div class="skill-bar"> | |
| <div class="skill-progress w-4/5"></div> | |
| </div> | |
| </div> | |
| <div> | |
| <p class="mb-1">Data Analytics</p> | |
| <div class="skill-bar"> | |
| <div class="skill-progress w-3/5"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-2/3 animate-on-scroll"> | |
| <div class="bg-gray-50 p-6 rounded-xl shadow-lg"> | |
| <h3 class="text-xl font-semibold mb-4 text-dark">Professional Summary</h3> | |
| <p class="mb-6 text-gray-700 leading-relaxed"> | |
| Ambitious Digital Marketer pursuing an MSc in Digital Marketing at the University of West Scotland. Skilled in crafting data-driven campaigns, content creation, and social media management to boost brand engagement. Proficient in using digital tools and analytics to drive results, with a passion for innovation and marketing trends. | |
| </p> | |
| <h3 class="text-xl font-semibold mb-4 text-dark">Career Goals</h3> | |
| <p class="text-gray-700 leading-relaxed"> | |
| Seeking opportunities to apply my expertise in digital marketing strategies and analytics to help organizations enhance their online presence, engage target audiences, and achieve measurable business growth. Passionate about staying at the forefront of digital marketing innovations and trends. | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-4 mt-8"> | |
| <div class="bg-primary text-white p-4 rounded-lg text-center shadow-md"> | |
| <i class="fas fa-chart-line text-3xl mb-2"></i> | |
| <p>Analytics</p> | |
| </div> | |
| <div class="bg-secondary text-white p-4 rounded-lg text-center shadow-md"> | |
| <i class="fas fa-hashtag text-3xl mb-2"></i> | |
| <p>Social Media</p> | |
| </div> | |
| <div class="bg-primary text-white p-4 rounded-lg text-center shadow-md"> | |
| <i class="fas fa-search text-3xl mb-2"></i> | |
| <p>SEO</p> | |
| </div> | |
| <div class="bg-secondary text-white p-4 rounded-lg text-center shadow-md"> | |
| <i class="fas fa-pen-fancy text-3xl mb-2"></i> | |
| <p>Content</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Education Section --> | |
| <section id="education" class="py-16 bg-gray-50"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-3xl font-bold mb-12 text-center section-title">Education</h2> | |
| <div class="max-w-3xl mx-auto"> | |
| <div class="timeline-item animate-on-scroll"> | |
| <div class="bg-white p-6 rounded-xl shadow-md"> | |
| <div class="flex justify-between items-center mb-2"> | |
| <h3 class="text-xl font-bold text-dark">University of West Scotland</h3> | |
| <span class="bg-primary text-white px-3 py-1 rounded-full text-sm">2024-2025</span> | |
| </div> | |
| <p class="text-lg font-semibold text-primary mb-3">M.Sc. Digital Marketing</p> | |
| <p class="text-gray-600 mb-3"><span class="font-medium">Courses:</span> Digital Branding, Digital Marketing Practice, Future Marketing And Transformational Technology</p> | |
| </div> | |
| </div> | |
| <div class="timeline-item animate-on-scroll"> | |
| <div class="bg-white p-6 rounded-xl shadow-md"> | |
| <div class="flex justify-between items-center mb-2"> | |
| <h3 class="text-xl font-bold text-dark">Bahria University, Karachi</h3> | |
| <span class="bg-primary text-white px-3 py-1 rounded-full text-sm">2021-2022</span> | |
| </div> | |
| <p class="text-lg font-semibold text-primary mb-3">Master Of Business Administration</p> | |
| <p class="text-gray-600 mb-3"><span class="font-medium">Courses:</span> Inventory Management, Strategic Procurement, Demand Forecasting, Green Supply Chain</p> | |
| </div> | |
| </div> | |
| <div class="timeline-item animate-on-scroll"> | |
| <div class="bg-white p-6 rounded-xl shadow-md"> | |
| <div class="flex justify-between items-center mb-2"> | |
| <h3 class="text-xl font-bold text-dark">Bahria University, Karachi</h3> | |
| <span class="bg-primary text-white px-3 py-1 rounded-full text-sm">2017-2021</span> | |
| </div> | |
| <p class="text-lg font-semibold text-primary mb-3">Bachelor in Business Management</p> | |
| <p class="text-gray-600 mb-3"><span class="font-medium">Courses:</span> Sales Management, Procurement, Brand Management, Shipping in SCM, Distribution Management</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Experience Section --> | |
| <section id="experience" class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-3xl font-bold mb-12 text-center section-title">Work Experience</h2> | |
| <div class="max-w-4xl mx-auto"> | |
| <div class="mb-12 animate-on-scroll"> | |
| <div class="flex items-start"> | |
| <div class="bg-primary text-white w-14 h-14 rounded-full flex items-center justify-center flex-shrink-0 mr-4"> | |
| <i class="fas fa-briefcase text-xl"></i> | |
| </div> | |
| <div> | |
| <div class="flex flex-wrap justify-between items-center mb-2"> | |
| <h3 class="text-xl font-bold text-dark">DHL Global Forwarding</h3> | |
| <span class="bg-gray-100 px-3 py-1 rounded-full text-sm">2023-2024 / Karachi</span> | |
| </div> | |
| <p class="text-lg font-semibold text-primary mb-3">Officer OMS</p> | |
| <ul class="list-disc pl-5 space-y-2 text-gray-600"> | |
| <li>Developed and maintained strong partnerships with numerous carriers, ensuring timely and consistent service</li> | |
| <li>Established and maintained relationships with key business partners, including carriers and vendors</li> | |
| <li>Maintained detailed records of cargo, including weight and volume, for each load</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mb-12 animate-on-scroll"> | |
| <div class="flex items-start"> | |
| <div class="bg-primary text-white w-14 h-14 rounded-full flex items-center justify-center flex-shrink-0 mr-4"> | |
| <i class="fas fa-briefcase text-xl"></i> | |
| </div> | |
| <div> | |
| <div class="flex flex-wrap justify-between items-center mb-2"> | |
| <h3 class="text-xl font-bold text-dark">NZ Enterprises</h3> | |
| <span class="bg-gray-100 px-3 py-1 rounded-full text-sm">2022-2023 / Karachi</span> | |
| </div> | |
| <p class="text-lg font-semibold text-primary mb-3">Assistant Manager</p> | |
| <ul class="list-disc pl-5 space-y-2 text-gray-600"> | |
| <li>Developed relationships with existing customers and handled customer inquiries professionally</li> | |
| <li>Set key performance indicators to measure success and managed expenses and budgets</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="animate-on-scroll"> | |
| <div class="flex items-start"> | |
| <div class="bg-primary text-white w-14 h-14 rounded-full flex items-center justify-center flex-shrink-0 mr-4"> | |
| <i class="fas fa-briefcase text-xl"></i> | |
| </div> | |
| <div> | |
| <div class="flex flex-wrap justify-between items-center mb-2"> | |
| <h3 class="text-xl font-bold text-dark">Workers Education & Research Org.</h3> | |
| <span class="bg-gray-100 px-3 py-1 rounded-full text-sm">2021-2022 / Karachi</span> | |
| </div> | |
| <p class="text-lg font-semibold text-primary mb-3">Assistant Manager</p> | |
| <ul class="list-disc pl-5 space-y-2 text-gray-600"> | |
| <li>Recommended creative and cost effective promotional activities and generated sales and marketing reports</li> | |
| <li>Analyzed sales data to determine sales forecasts and evaluated current marketing programs to recommend improvements</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Certifications Section --> | |
| <section id="certifications" class="py-16 bg-gray-50"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-3xl font-bold mb-12 text-center section-title">Certifications</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-6 max-w-4xl mx-auto"> | |
| <div class="cert-badge animate-on-scroll bg-white p-5 rounded-xl shadow-md hover:shadow-lg transition relative overflow-hidden"> | |
| <div class="flex items-start"> | |
| <div class="bg-primary bg-opacity-10 text-primary w-12 h-12 rounded-lg flex items-center justify-center flex-shrink-0 mr-4"> | |
| <i class="fas fa-certificate"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-1">Marketing Analytics</h3> | |
| <p class="text-gray-600">University of Virginia (Darden School of Business)</p> | |
| <a href="https://www.coursera.org/account/accomplishments/verify/Y6HHVYKUA69Z" target="_blank" class="text-primary text-sm mt-2 inline-block hover:underline">View Certificate</a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="cert-badge animate-on-scroll bg-white p-5 rounded-xl shadow-md hover:shadow-lg transition relative overflow-hidden"> | |
| <div class="flex items-start"> | |
| <div class="bg-primary bg-opacity-10 text-primary w-12 h-12 rounded-lg flex items-center justify-center flex-shrink-0 mr-4"> | |
| <i class="fas fa-certificate"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-1">Google Digital Garage</h3> | |
| <p class="text-gray-600">The fundamentals of digital marketing</p> | |
| <a href="https://www.dropbox.com/scl/fi/qqle73whzcinfsg2ngvzt/GOOGLE-CERTIFICATE.pdf" target="_blank" class="text-primary text-sm mt-2 inline-block hover:underline">View Certificate</a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="cert-badge animate-on-scroll bg-white p-5 rounded-xl shadow-md hover:shadow-lg transition relative overflow-hidden"> | |
| <div class="flex items-start"> | |
| <div class="bg-primary bg-opacity-10 text-primary w-12 h-12 rounded-lg flex items-center justify-center flex-shrink-0 mr-4"> | |
| <i class="fas fa-certificate"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-1">Excel Skills for Business</h3> | |
| <p class="text-gray-600">Macquarie University Australia</p> | |
| <a href="https://coursera.org/account/accomplishments/verify/XQE3FH4RQ3J2" target="_blank" class="text-primary text-sm mt-2 inline-block hover:underline">View Certificate</a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="cert-badge animate-on-scroll bg-white p-5 rounded-xl shadow-md hover:shadow-lg transition relative overflow-hidden"> | |
| <div class="flex items-start"> | |
| <div class="bg-primary bg-opacity-10 text-primary w-12 h-12 rounded-lg flex items-center justify-center flex-shrink-0 mr-4"> | |
| <i class="fas fa-certificate"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-1">Marketing Strategy for Entrepreneurs</h3> | |
| <p class="text-gray-600">Coursera</p> | |
| <a href="https://www.coursera.org/account/accomplishments/verify/H3X24JWC892D" target="_blank" class="text-primary text-sm mt-2 inline-block hover:underline">View Certificate</a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="cert-badge animate-on-scroll bg-white p-5 rounded-xl shadow-md hover:shadow-lg transition relative overflow-hidden"> | |
| <div class="flex items-start"> | |
| <div class="bg-primary bg-opacity-10 text-primary w-12 h-12 rounded-lg flex items-center justify-center flex-shrink-0 mr-4"> | |
| <i class="fas fa-certificate"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-1">Leading Teams: Developing as a Leader</h3> | |
| <p class="text-gray-600">University of Illinois Urbana-Champaign</p> | |
| <a href="https://www.coursera.org/account/accomplishments/verify/3KQL67LJBXM6" target="_blank" class="text-primary text-sm mt-2 inline-block hover:underline">View Certificate</a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Projects Section --> | |
| <section id="projects" class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-3xl font-bold mb-12 text-center section-title">Projects</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> | |
| <div class="project-card animate-on-scroll bg-gray-50 rounded-xl overflow-hidden shadow-md transition duration-300"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2 text-dark"> | |
| <a href="https://theleatherjackets.com.au/" target="_blank" class="hover:text-primary transition">Digital Marketing Practice</a> | |
| </h3> | |
| <p class="text-gray-600 mb-4"> | |
| Developed a website, implemented SEO, social media marketing, and created engaging content. | |
| </p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="bg-primary bg-opacity-10 text-primary px-3 py-1 rounded-full text-sm">SEO</span> | |
| <span class="bg-primary bg-opacity-10 text-primary px-3 py-1 rounded-full text-sm">Content Creation</span> | |
| <span class="bg-primary bg-opacity-10 text-primary px-3 py-1 rounded-full text-sm">Social Media</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="project-card animate-on-scroll bg-gray-50 rounded-xl overflow-hidden shadow-md transition duration-300"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2 text-dark"> | |
| <a href="https://www.thinglink.com/card/1920505707195532132" target="_blank" class="hover:text-primary transition">Future Marketing and Transformational Technology</a> | |
| </h3> | |
| <p class="text-gray-600 mb-4"> | |
| Focused on DARQ technology and its role in transforming the healthcare sector. | |
| </p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="bg-primary bg-opacity-10 text-primary px-3 py-1 rounded-full text-sm">Technology</span> | |
| <span class="bg-primary bg-opacity-10 text-primary px-3 py-1 rounded-full text-sm">Research</span> | |
| <span class="bg-primary bg-opacity-10 text-primary px-3 py-1 rounded-full text-sm">Healthcare</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="project-card animate-on-scroll bg-gray-50 rounded-xl overflow-hidden shadow-md transition duration-300"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2 text-dark">Digital Branding</h3> | |
| <p class="text-gray-600 mb-4"> | |
| Researched Kapferer Brand Identity Prism and analysed Revolut's brand extension. | |
| </p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="bg-primary bg-opacity-10 text-primary px-3 py-1 rounded-full text-sm">Branding</span> | |
| <span class="bg-primary bg-opacity-10 text-primary px-3 py-1 rounded-full text-sm">Analysis</span> | |
| <span class="bg-primary bg-opacity-10 text-primary px-3 py-1 rounded-full text-sm">Strategy</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="project-card animate-on-scroll bg-gray-50 rounded-xl overflow-hidden shadow-md transition duration-300"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2 text-dark">Thesis on Supply Chain Performance</h3> | |
| <p class="text-gray-600 mb-4"> | |
| Studied the integration of supply chains, e-procurement, and the impact of total quality management in Pakistan's textile sector. | |
| </p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="bg-primary bg-opacity-10 text-primary px-3 py-1 rounded-full text-sm">Supply Chain</span> | |
| <span class="bg-primary bg-opacity-10 text-primary px-3 py-1 rounded-full text-sm">Research</span> | |
| <span class="bg-primary bg-opacity-10 text-primary px-3 py-1 rounded-full text-sm">Textile Industry</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-16 bg-primary bg-opacity-5"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-3xl font-bold mb-12 text-center section-title animate-on-scroll">Get In Touch</h2> | |
| <div class="max-w-4xl mx-auto bg-white rounded-xl shadow-2xl overflow-hidden animate-on-scroll"> | |
| <div class="md:flex"> | |
| <div class="md:w-1/2 bg-gradient-to-br from-primary to-secondary p-8 text-white relative overflow-hidden"> | |
| <div class="absolute -top-20 -right-20 w-40 h-40 rounded-full bg-white bg-opacity-10"></div> | |
| <div class="absolute -bottom-20 -left-20 w-40 h-40 rounded-full bg-white bg-opacity-10"></div> | |
| <div class="relative z-10"> | |
| <h3 class="text-2xl font-bold mb-4">Let's Connect!</h3> | |
| <p class="mb-6 opacity-90">I'm always open to discussing new opportunities, projects, or collaborations.</p> | |
| <div class="space-y-6"> | |
| <div class="flex items-center group"> | |
| <div class="w-12 h-12 rounded-full bg-white bg-opacity-20 flex items-center justify-center mr-4 group-hover:bg-opacity-30 transition duration-300"> | |
| <i class="fas fa-map-marker-alt text-xl"></i> | |
| </div> | |
| <div> | |
| <p class="font-medium">Location</p> | |
| <p>Paisley, UK</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center group"> | |
| <div class="w-12 h-12 rounded-full bg-white bg-opacity-20 flex items-center justify-center mr-4 group-hover:bg-opacity-30 transition duration-300"> | |
| <i class="fas fa-phone text-xl"></i> | |
| </div> | |
| <div> | |
| <p class="font-medium">Phone</p> | |
| <a href="tel:+447728974631" class="hover:underline">+44 7728974631</a> | |
| </div> | |
| </div> | |
| <div class="flex items-center group"> | |
| <div class="w-12 h-12 rounded-full bg-white bg-opacity-20 flex items-center justify-center mr-4 group-hover:bg-opacity-30 transition duration-300"> | |
| <i class="fas fa-envelope text-xl"></i> | |
| </div> | |
| <div> | |
| <p class="font-medium">Email</p> | |
| <a href="mailto:[email protected]" class="hover:underline">[email protected]</a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-10"> | |
| <h4 class="text-xl font-bold mb-4">Follow Me</h4> | |
| <div class="flex space-x-4"> | |
| <a href="https://www.linkedin.com/in/tahahassan12121996" target="_blank" class="w-12 h-12 rounded-full bg-white bg-opacity-20 flex items-center justify-center hover:bg-opacity-30 transition transform hover:-translate-y-1"> | |
| <i class="fab fa-linkedin-in text-xl"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 p-8 flex flex-col justify-center"> | |
| <div class="text-center mb-8"> | |
| <div class="w-20 h-20 mx-auto mb-4 rounded-full bg-primary bg-opacity-10 flex items-center justify-center text-primary text-3xl animate-pulse-slow"> | |
| <i class="fas fa-paper-plane"></i> | |
| </div> | |
| <h3 class="text-2xl font-bold mb-2 text-dark">Ready to Start a Conversation?</h3> | |
| <p class="text-gray-600">Drop me a message through any of the contact methods listed here.</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-6"> | |
| <div class="bg-gray-50 p-4 rounded-lg text-center transition transform hover:scale-105 hover:shadow-md"> | |
| <div class="w-12 h-12 mx-auto mb-3 rounded-full bg-primary bg-opacity-10 text-primary flex items-center justify-center"> | |
| <i class="fas fa-envelope"></i> | |
| </div> | |
| <a href="mailto:[email protected]" class="text-primary font-medium hover:underline">Email Me</a> | |
| </div> | |
| <div class="bg-gray-50 p-4 rounded-lg text-center transition transform hover:scale-105 hover:shadow-md"> | |
| <div class="w-12 h-12 mx-auto mb-3 rounded-full bg-primary bg-opacity-10 text-primary flex items-center justify-center"> | |
| <i class="fas fa-phone"></i> | |
| </div> | |
| <a href="tel:+447728974631" class="text-primary font-medium hover:underline">Call Me</a> | |
| </div> | |
| <div class="bg-gray-50 p-4 rounded-lg text-center transition transform hover:scale-105 hover:shadow-md"> | |
| <div class="w-12 h-12 mx-auto mb-3 rounded-full bg-primary bg-opacity-10 text-primary flex items-center justify-center"> | |
| <i class="fab fa-linkedin-in"></i> | |
| </div> | |
| <a href="https://www.linkedin.com/in/tahahassan12121996" target="_blank" class="text-primary font-medium hover:underline">LinkedIn</a> | |
| </div> | |
| <div class="bg-gray-50 p-4 rounded-lg text-center transition transform hover:scale-105 hover:shadow-md"> | |
| <div class="w-12 h-12 mx-auto mb-3 rounded-full bg-primary bg-opacity-10 text-primary flex items-center justify-center"> | |
| <i class="fas fa-map-marker-alt"></i> | |
| </div> | |
| <p class="text-primary font-medium">Paisley, UK</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-dark text-white py-8"> | |
| <div class="container mx-auto px-4 text-center"> | |
| <p>© 2023 Taha Hassan. All rights reserved.</p> | |
| <p class="mt-2 text-gray-400">Digital Marketing Professional</p> | |
| </div> | |
| </footer> | |
| <script> | |
| // Animation on scroll | |
| document.addEventListener('DOMContentLoaded', function() { | |
| const observer = new IntersectionObserver((entries) => { | |
| entries.forEach(entry => { | |
| if (entry.isIntersecting) { | |
| entry.target.classList.add('visible'); | |
| } | |
| }); | |
| }, { | |
| threshold: 0.1 | |
| }); | |
| document.querySelectorAll('.animate-on-scroll').forEach(el => { | |
| observer.observe(el); | |
| }); | |
| // Smooth scrolling for navigation links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function(e) { | |
| e.preventDefault(); | |
| const targetId = this.getAttribute('href'); | |
| const targetElement = document.querySelector(targetId); | |
| if (targetElement) { | |
| window.scrollTo({ | |
| top: targetElement.offsetTop - 80, | |
| behavior: 'smooth' | |
| }); | |
| } | |
| }); | |
| }); | |
| }); | |
| </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=muneebable/taha-s-cv" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |