File size: 34,513 Bytes
21d73fb |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern Portfolio | Professional Designer</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">
<style>
/* Custom CSS for animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.animate-fade-in {
animation: fadeIn 1s ease-out forwards;
}
.animate-float {
animation: float 4s ease-in-out infinite;
}
.gradient-bg {
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover: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);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: white;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.skill-bar {
height: 8px;
border-radius: 4px;
background: rgba(255, 255, 255, 0.2);
overflow: hidden;
}
.skill-progress {
height: 100%;
border-radius: 4px;
background: white;
transform-origin: left;
transform: scaleX(0);
transition: transform 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.animate-progress {
transform: scaleX(1);
}
.timeline-item::before {
content: '';
position: absolute;
width: 20px;
height: 20px;
border-radius: 50%;
background: white;
left: -10px;
top: 0;
}
.timeline::before {
content: '';
position: absolute;
width: 2px;
height: 100%;
background: rgba(255, 255, 255, 0.2);
left: 0;
top: 0;
}
</style>
</head>
<body class="bg-gray-900 text-white font-sans">
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-gray-900 bg-opacity-90 backdrop-filter backdrop-blur-sm">
<div class="container mx-auto px-6 py-4">
<div class="flex justify-between items-center">
<a href="#" class="text-2xl font-bold text-white animate-fade-in" style="animation-delay: 0.2s;">
<span class="text-transparent bg-clip-text bg-gradient-to-r from-pink-500 to-blue-500">PORTFOLIO</span>
</a>
<div class="hidden md:flex space-x-8 animate-fade-in" style="animation-delay: 0.4s;">
<a href="#home" class="nav-link">Home</a>
<a href="#about" class="nav-link">About</a>
<a href="#skills" class="nav-link">Skills</a>
<a href="#work" class="nav-link">Work</a>
<a href="#contact" class="nav-link">Contact</a>
</div>
<button class="md:hidden focus:outline-none animate-fade-in" style="animation-delay: 0.4s;" id="menu-toggle">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<!-- Mobile Menu -->
<div class="md:hidden hidden pt-4" id="mobile-menu">
<div class="flex flex-col space-y-4">
<a href="#home" class="nav-link">Home</a>
<a href="#about" class="nav-link">About</a>
<a href="#skills" class="nav-link">Skills</a>
<a href="#work" class="nav-link">Work</a>
<a href="#contact" class="nav-link">Contact</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="gradient-bg min-h-screen flex items-center justify-center relative overflow-hidden">
<div class="absolute inset-0 bg-black opacity-30"></div>
<div class="container mx-auto px-6 z-10">
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="md:w-1/2 animate-fade-in" style="animation-delay: 0.6s;">
<h1 class="text-4xl md:text-6xl font-bold mb-4">Hi, I'm <span class="text-transparent bg-clip-text bg-gradient-to-r from-yellow-400 to-pink-500">Alex</span></h1>
<h2 class="text-2xl md:text-3xl font-semibold mb-6">Creative <span class="text-transparent bg-clip-text bg-gradient-to-r from-green-400 to-blue-500">Designer</span> & Developer</h2>
<p class="text-lg mb-8 text-gray-200 max-w-lg">I craft beautiful digital experiences that blend creativity with technology to deliver impactful solutions.</p>
<div class="flex space-x-4">
<a href="#work" class="px-6 py-3 bg-white text-gray-900 font-semibold rounded-full hover:bg-gray-200 transition duration-300 transform hover:scale-105">View Work</a>
<a href="#contact" class="px-6 py-3 border-2 border-white text-white font-semibold rounded-full hover:bg-white hover:text-gray-900 transition duration-300 transform hover:scale-105">Contact Me</a>
</div>
</div>
<div class="md:w-1/2 mt-12 md:mt-0 flex justify-center animate-fade-in animate-float" style="animation-delay: 0.8s;">
<div class="relative">
<div class="w-64 h-64 md:w-80 md:h-80 rounded-full overflow-hidden border-4 border-white shadow-2xl">
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80" alt="Profile" class="w-full h-full object-cover">
</div>
<div class="absolute -bottom-5 -right-5 bg-gray-900 p-4 rounded-full shadow-xl">
<div class="w-16 h-16 rounded-full bg-gradient-to-r from-pink-500 to-blue-500 flex items-center justify-center">
<i class="fas fa-code text-2xl text-white"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 animate-bounce">
<a href="#about" class="text-white text-2xl">
<i class="fas fa-chevron-down"></i>
</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gray-800">
<div class="container mx-auto px-6">
<div class="text-center mb-16 animate-fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">About <span class="text-transparent bg-clip-text bg-gradient-to-r from-purple-400 to-pink-600">Me</span></h2>
<div class="w-20 h-1 bg-gradient-to-r from-purple-400 to-pink-600 mx-auto"></div>
</div>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/3 mb-10 md:mb-0 flex justify-center animate-fade-in" style="animation-delay: 0.2s;">
<div class="relative">
<div class="w-64 h-64 rounded-lg overflow-hidden shadow-2xl transform rotate-3">
<img src="https://images.unsplash.com/photo-1522075469751-3a6694fb2f61?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=880&q=80" alt="About" class="w-full h-full object-cover">
</div>
<div class="absolute -bottom-5 -right-5 bg-gray-900 p-4 rounded-lg shadow-xl transform -rotate-6">
<div class="w-16 h-16 rounded-lg bg-gradient-to-r from-yellow-400 to-red-500 flex items-center justify-center">
<i class="fas fa-award text-2xl text-white"></i>
</div>
</div>
</div>
</div>
<div class="md:w-2/3 md:pl-12 animate-fade-in" style="animation-delay: 0.4s;">
<h3 class="text-2xl font-semibold mb-6">Who am I?</h3>
<p class="text-gray-300 mb-6 leading-relaxed">
I'm a passionate designer and developer with over 8 years of experience creating digital products that people love. My journey began with a degree in Graphic Design, but my curiosity led me to explore the world of web development, where I found my true calling in blending aesthetics with functionality.
</p>
<p class="text-gray-300 mb-8 leading-relaxed">
I believe in design that solves problems, not just looks pretty. My approach combines user-centered design principles with cutting-edge technology to create experiences that are both beautiful and intuitive. When I'm not designing or coding, you can find me hiking, reading sci-fi novels, or experimenting with new cooking recipes.
</p>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4">
<div class="bg-gray-700 p-4 rounded-lg">
<div class="text-2xl text-pink-500 mb-2">
<i class="fas fa-project-diagram"></i>
</div>
<h4 class="font-semibold">150+</h4>
<p class="text-sm text-gray-400">Projects Completed</p>
</div>
<div class="bg-gray-700 p-4 rounded-lg">
<div class="text-2xl text-blue-500 mb-2">
<i class="fas fa-users"></i>
</div>
<h4 class="font-semibold">80+</h4>
<p class="text-sm text-gray-400">Happy Clients</p>
</div>
<div class="bg-gray-700 p-4 rounded-lg">
<div class="text-2xl text-yellow-500 mb-2">
<i class="fas fa-trophy"></i>
</div>
<h4 class="font-semibold">12</h4>
<p class="text-sm text-gray-400">Awards Won</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-20 bg-gray-900">
<div class="container mx-auto px-6">
<div class="text-center mb-16 animate-fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">My <span class="text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-green-600">Skills</span></h2>
<div class="w-20 h-1 bg-gradient-to-r from-blue-400 to-green-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12">
<div class="animate-fade-in" style="animation-delay: 0.2s;">
<h3 class="text-2xl font-semibold mb-6">Technical Skills</h3>
<div class="space-y-6">
<div>
<div class="flex justify-between mb-2">
<span>UI/UX Design</span>
<span>95%</span>
</div>
<div class="skill-bar">
<div class="skill-progress bg-gradient-to-r from-pink-500 to-purple-600" data-width="95%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span>Web Development</span>
<span>90%</span>
</div>
<div class="skill-bar">
<div class="skill-progress bg-gradient-to-r from-blue-500 to-green-500" data-width="90%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span>Mobile App Design</span>
<span>85%</span>
</div>
<div class="skill-bar">
<div class="skill-progress bg-gradient-to-r from-yellow-500 to-red-500" data-width="85%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span>Branding</span>
<span>80%</span>
</div>
<div class="skill-bar">
<div class="skill-progress bg-gradient-to-r from-purple-500 to-pink-500" data-width="80%"></div>
</div>
</div>
</div>
</div>
<div class="animate-fade-in" style="animation-delay: 0.4s;">
<h3 class="text-2xl font-semibold mb-6">Professional Skills</h3>
<div class="space-y-6">
<div>
<div class="flex justify-between mb-2">
<span>Communication</span>
<span>95%</span>
</div>
<div class="skill-bar">
<div class="skill-progress bg-gradient-to-r from-green-500 to-blue-500" data-width="95%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span>Team Work</span>
<span>90%</span>
</div>
<div class="skill-bar">
<div class="skill-progress bg-gradient-to-r from-orange-500 to-yellow-500" data-width="90%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span>Project Management</span>
<span>85%</span>
</div>
<div class="skill-bar">
<div class="skill-progress bg-gradient-to-r from-red-500 to-pink-500" data-width="85%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span>Creativity</span>
<span>98%</span>
</div>
<div class="skill-bar">
<div class="skill-progress bg-gradient-to-r from-indigo-500 to-purple-500" data-width="98%"></div>
</div>
</div>
</div>
</div>
</div>
<div class="mt-16 animate-fade-in" style="animation-delay: 0.6s;">
<h3 class="text-2xl font-semibold mb-8 text-center">Tools & Technologies</h3>
<div class="flex flex-wrap justify-center gap-6">
<div class="w-20 h-20 bg-gray-800 rounded-lg flex items-center justify-center shadow-lg hover:shadow-xl transition duration-300 transform hover:scale-110">
<i class="fab fa-figma text-4xl text-purple-500"></i>
</div>
<div class="w-20 h-20 bg-gray-800 rounded-lg flex items-center justify-center shadow-lg hover:shadow-xl transition duration-300 transform hover:scale-110">
<i class="fab fa-adobe text-4xl text-red-500"></i>
</div>
<div class="w-20 h-20 bg-gray-800 rounded-lg flex items-center justify-center shadow-lg hover:shadow-xl transition duration-300 transform hover:scale-110">
<i class="fab fa-html5 text-4xl text-orange-500"></i>
</div>
<div class="w-20 h-20 bg-gray-800 rounded-lg flex items-center justify-center shadow-lg hover:shadow-xl transition duration-300 transform hover:scale-110">
<i class="fab fa-css3-alt text-4xl text-blue-500"></i>
</div>
<div class="w-20 h-20 bg-gray-800 rounded-lg flex items-center justify-center shadow-lg hover:shadow-xl transition duration-300 transform hover:scale-110">
<i class="fab fa-js text-4xl text-yellow-500"></i>
</div>
<div class="w-20 h-20 bg-gray-800 rounded-lg flex items-center justify-center shadow-lg hover:shadow-xl transition duration-300 transform hover:scale-110">
<i class="fab fa-react text-4xl text-blue-400"></i>
</div>
<div class="w-20 h-20 bg-gray-800 rounded-lg flex items-center justify-center shadow-lg hover:shadow-xl transition duration-300 transform hover:scale-110">
<i class="fab fa-node-js text-4xl text-green-500"></i>
</div>
<div class="w-20 h-20 bg-gray-800 rounded-lg flex items-center justify-center shadow-lg hover:shadow-xl transition duration-300 transform hover:scale-110">
<i class="fab fa-git-alt text-4xl text-orange-600"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Experience & Education -->
<section class="py-20 bg-gray-800">
<div class="container mx-auto px-6">
<div class="text-center mb-16 animate-fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Experience & <span class="text-transparent bg-clip-text bg-gradient-to-r from-yellow-400 to-red-600">Education</span></h2>
<div class="w-20 h-1 bg-gradient-to-r from-yellow-400 to-red-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12">
<div class="animate-fade-in" style="animation-delay: 0.2s;">
<h3 class="text-2xl font-semibold mb-8 flex items-center">
<i class="fas fa-briefcase mr-3 text-yellow-500"></i> Experience
</h3>
<div class="relative pl-8 timeline">
<div class="mb-8 relative timeline-item">
<div class="bg-gray-700 p-6 rounded-lg shadow-lg">
<div class="flex justify-between items-center mb-2">
<h4 class="font-semibold text-lg">Senior UI/UX Designer</h4>
<span class="text-sm bg-yellow-500 text-gray-900 px-2 py-1 rounded">2020 - Present</span>
</div>
<h5 class="text-blue-400 mb-3">TechVision Inc.</h5>
<p class="text-gray-300">Leading design team to create innovative digital products for Fortune 500 clients. Responsible for design strategy and user research.</p>
</div>
</div>
<div class="mb-8 relative timeline-item">
<div class="bg-gray-700 p-6 rounded-lg shadow-lg">
<div class="flex justify-between items-center mb-2">
<h4 class="font-semibold text-lg">UI Designer</h4>
<span class="text-sm bg-yellow-500 text-gray-900 px-2 py-1 rounded">2017 - 2020</span>
</div>
<h5 class="text-blue-400 mb-3">Digital Creations</h5>
<p class="text-gray-300">Designed web and mobile interfaces for various clients. Collaborated with developers to implement designs.</p>
</div>
</div>
<div class="relative timeline-item">
<div class="bg-gray-700 p-6 rounded-lg shadow-lg">
<div class="flex justify-between items-center mb-2">
<h4 class="font-semibold text-lg">Junior Designer</h4>
<span class="text-sm bg-yellow-500 text-gray-900 px-2 py-1 rounded">2015 - 2017</span>
</div>
<h5 class="text-blue-400 mb-3">Creative Studio</h5>
<p class="text-gray-300">Started my career assisting senior designers with various projects. Learned fundamentals of design and user experience.</p>
</div>
</div>
</div>
</div>
<div class="animate-fade-in" style="animation-delay: 0.4s;">
<h3 class="text-2xl font-semibold mb-8 flex items-center">
<i class="fas fa-graduation-cap mr-3 text-red-500"></i> Education
</h3>
<div class="relative pl-8 timeline">
<div class="mb-8 relative timeline-item">
<div class="bg-gray-700 p-6 rounded-lg shadow-lg">
<div class="flex justify-between items-center mb-2">
<h4 class="font-semibold text-lg">Master in Interaction Design</h4>
<span class="text-sm bg-red-500 text-gray-900 px-2 py-1 rounded">2018 - 2020</span>
</div>
<h5 class="text-blue-400 mb-3">Stanford University</h5>
<p class="text-gray-300">Specialized in human-computer interaction and advanced UX methodologies. Thesis on emotional design in mobile applications.</p>
</div>
</div>
<div class="mb-8 relative timeline-item">
<div class="bg-gray-700 p-6 rounded-lg shadow-lg">
<div class="flex justify-between items-center mb-2">
<h4 class="font-semibold text-lg">Bachelor of Fine Arts</h4>
<span class="text-sm bg-red-500 text-gray-900 px-2 py-1 rounded">2011 - 2015</span>
</div>
<h5 class="text-blue-400 mb-3">School of Visual Arts</h5>
<p class="text-gray-300">Major in Graphic Design with minor in Digital Media. Graduated with honors.</p>
</div>
</div>
<div class="relative timeline-item">
<div class="bg-gray-700 p-6 rounded-lg shadow-lg">
<div class="flex justify-between items-center mb-2">
<h4 class="font-semibold text-lg">Web Development Bootcamp</h4>
<span class="text-sm bg-red-500 text-gray-900 px-2 py-1 rounded">2016</span>
</div>
<h5 class="text-blue-400 mb-3">General Assembly</h5>
<p class="text-gray-300">Intensive 12-week program covering full-stack web development. Learned HTML, CSS, JavaScript, and React.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Work/Portfolio Section -->
<section id="work" class="py-20 bg-gray-900">
<div class="container mx-auto px-6">
<div class="text-center mb-16 animate-fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">My <span class="text-transparent bg-clip-text bg-gradient-to-r from-purple-400 to-blue-600">Work</span></h2>
<div class="w-20 h-1 bg-gradient-to-r from-purple-400 to-blue-600 mx-auto"></div>
<p class="text-gray-400 mt-6 max-w-2xl mx-auto">Here are some of my recent projects. Each one was carefully crafted to solve specific problems and deliver exceptional user experiences.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg card-hover animate-fade-in" style="animation-delay: 0.2s;">
<div class="relative overflow-hidden h-64">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Project 1" class="w-full h-full object-cover transition duration-500 hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-80"></div>
<div class="absolute bottom-0 left-0 p-6">
<h3 class="text-xl font-bold text-white">E-commerce Platform</h3>
<p class="text-gray-300">UI/UX Design, Frontend</p>
</div>
</div>
<div class="p-6">
<p class="text-gray-300 mb-4">A modern e-commerce platform with intuitive navigation and seamless checkout experience.</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-gray-700 text-sm rounded-full">React</span>
<span class="px-3 py-1 bg-gray-700 text-sm rounded-full">Figma</span>
<span class="px-3 py-1 bg-gray-700 text-sm rounded-full">Node.js</span>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg card-hover animate-fade-in" style="animation-delay: 0.4s;">
<div class="relative overflow-hidden h-64">
<img src="https://images.unsplash.com/photo-1555774698-0b77e0d5fac6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Project 2" class="w-full h-full object-cover transition duration-500 hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-80"></div>
<div class="absolute bottom-0 left-0 p-6">
<h3 class="text-xl font-bold text-white">Health & Fitness App</h3>
<p class="text-gray-300">Mobile Design, UX Research</p>
</div>
</div>
<div class="p-6">
<p class="text-gray-300 mb-4">A personalized fitness app that tracks workouts, nutrition, and health metrics with beautiful data visualization.</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-gray-700 text-sm rounded-full">Figma</span>
<span class="px-3 py-1 bg-gray-700 text-sm rounded-full">Swift</span>
<span class="px-3 py-1 bg-gray-700 text-sm rounded-full">Firebase</span>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg card-hover animate-fade-in" style="animation-delay: 0.6s;">
<div class="relative overflow-hidden h-64">
<img src="https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80" alt="Project 3" class="w-full h-full object-cover transition duration-500 hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-80"></div>
<div class="absolute bottom-0 left-0 p-6">
<h3 class="text-xl font-bold text-white">Corporate Website</h3>
<p class="text-gray-300">Web Design, Development</p>
</div>
</div>
<div class="p-6">
<p class="text-gray-300 mb-4">A responsive corporate website with interactive elements and smooth animations to enhance user engagement.</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-gray-700 text-sm rounded-full">HTML/CSS</span>
<span class="px-3 py-1 bg-gray-700 text-sm rounded-full">JavaScript</span>
<span class="px-3 py-1 bg-gray-700 text-sm rounded-full">GSAP</span>
</div>
</div>
</div>
</div>
<div class="text-center mt-12 animate-fade-in" style="animation-delay: 0.8s;">
<a href="#" class="inline-block px-8 py-3 bg-gradient-to-r from-purple-500 to-blue-600 text-white font-semibold rounded-full hover:shadow-xl transition duration-300 transform hover:scale-105">
View All Projects
</a>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 bg-gray-800">
<div class="container mx-auto px-6">
<div class="text-center mb-16 animate-fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Client <span class="text-transparent bg-clip-text bg-gradient-to-r from-pink-500 to-orange-500">Testimonials</span></h2>
<div class="w-20 h-1 bg-gradient-to-r from-pink-500 to-orange-500 mx-auto"></div>
<p class="text-gray-400 mt-6 max-w-2xl mx-auto">Here's what some of my clients and colleagues have to say about working with me.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-700 p-8 rounded-xl shadow-lg card-hover animate-fade-in" style="animation-delay: 0.2s;">
<div class="flex items-center mb-6">
<div class="w-16 h-16 rounded-full overflow-hidden mr-4">
<img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=688&q=80" alt="Client" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-semibold">Sarah Johnson</h4>
<p class="text-gray-400 text-sm">CEO, TechSolutions</p>
</div>
</div>
<p class="text-gray-300 italic mb-6">"Alex transformed our outdated website into a modern, user-friendly platform that increased our conversion rate by 40%. His attention to detail and creative solutions were exactly what we needed."</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-700 p-8 rounded-xl shadow-lg card-hover animate-fade-in" style="animation-delay: 0.4s;">
<div class="flex items-center mb-6">
<div class="w-16 h-16 rounded-full overflow-hidden mr-4">
<
</html> |