My Portfolio

Showcasing My Creative Work

Explore a selection of my projects, highlighting my skills and passion for design and development.

Project 1

E-commerce Redesign

A complete overhaul of an existing e-commerce platform, focusing on user experience and conversion optimization.

View Project
Project 2

Mobile App Development

Developed an intuitive and engaging mobile application for a startup in the health and wellness sector.

View Project
Project 3

Brand Identity Design

Crafted a distinctive brand identity for a new artisan coffee shop, including logo, color palette, and typography.

View Project
Project 4

Data Visualization Dashboard

Created an interactive dashboard to visualize complex datasets, enabling better insights and decision-making.

View Project
Project 5

Website for Non-Profit

Designed and developed a modern, accessible website for a local non-profit organization to increase engagement and donations.

View Project
Project 6

UI/UX Case Study

A detailed exploration of the UI/UX design process for a fictional SaaS product, from research to prototyping.

View Project
``` ```css /* style.css */ /* General Styles */ body { font-family: 'Open Sans', sans-serif; line-height: 1.6; margin: 0; padding: 0; background-color: #f4f4f4; color: #333; } .container { width: 80%; margin: auto; overflow: hidden; } h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: #333; } a { color: #007bff; text-decoration: none; } a:hover { color: #0056b3; } .highlight { color: #007bff; font-weight: 600; } /* Header */ header { background: #fff; padding-top: 30px; min-height: 70px; border-bottom: #007bff 3px solid; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } header #branding { float: left; } header #branding h1 { margin: 0; font-size: 28px; } header nav { float: right; margin-top: 10px; } header ul { margin: 0; padding: 0; list-style: none; } header li { display: inline; padding: 0 20px 0 20px; } header a { color: #333; text-transform: uppercase; font-size: 16px; font-weight: 600; transition: color 0.3s ease; } header a:hover { color: #007bff; } header .current a { color: #007bff; font-weight: 700; } /* Showcase Section */ #showcase { min-height: 400px; background: url('images/hero-bg.jpg') no-repeat 0 -400px; background-size: cover; text-align: center; color: #fff; display: flex; align-items: center; justify-content: center; position: relative; } #showcase::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); } #showcase .container { z-index: 1; } #showcase h2 { margin-top: 0; font-size: 48px; margin-bottom: 10px; color: #fff; } #showcase p { font-size: 20px; color: #eee; } /* Portfolio Items */ #portfolio-items { padding: 50px 0; text-align: center; } #portfolio-items h2 { font-size: 36px; margin-bottom: 40px; color: #333; } .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .portfolio-item { background: #fff; padding: 25px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; justify-content: space-between; } .portfolio-item:hover { transform: translateY(-10px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); } .portfolio-item img { max-width: 100%; height: 200px; object-fit: cover; border-radius: 5px; margin-bottom: 20px; } .portfolio-item h3 { font-size: 24px; margin-bottom: 10px; color: #007bff; } .portfolio-item p { font-size: 16px; flex-grow: 1; /* Allows paragraph to take available space */ margin-bottom: 20px; } .btn-outline { display: inline-block; padding: 10px 25px; border: 2px solid #007bff; color: #007bff; border-radius: 5px; font-weight: 600; transition: background-color 0.3s ease, color 0.3s ease; } .btn-outline:hover { background-color: #007bff; color: #fff; } /* Footer */ footer { background: #333; color: #fff; text-align: center; padding: 30px 0; margin-top: 40px; } footer p { margin: 0; font-size: 16px; } /* Responsive Design */ @media (max-width: 768px) { header .container { flex-direction: column; text-align: center; } header #branding { float: none; margin-bottom: 15px; } header nav { float: none; margin-top: 0; } header ul { display: flex; flex-direction: column; align-items: center; } header li { padding: 10px 0; } #showcase h2 { font-size: 36px; } .portfolio-grid { grid-template-columns: 1fr; } } @media (max-width: 480px) { #showcase h2 { font-size: 30px; } #showcase p { font-size: 18px; } .portfolio-item { padding: 15px; } } ``` ```js // (No specific JS needed for basic functionality, but could be added for interactivity) // Example: Adding smooth scrolling to anchor links if they were present // document.querySelectorAll('a[href^="#"]').forEach(anchor => { // anchor.addEventListener('click', function (e) { // e.preventDefault(); // document.querySelector(this.getAttribute('href')).scrollIntoView({ // behavior: 'smooth' // }); // }); // });