File size: 42,021 Bytes
cbe6011 |
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 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dr. Alex Carter | Multidisciplinary Expert</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>
.gradient-bg {
background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
}
.hover-scale {
transition: transform 0.3s ease;
}
.hover-scale:hover {
transform: scale(1.03);
}
.skill-bar {
height: 8px;
border-radius: 4px;
background-color: #e0e0e0;
}
.skill-progress {
height: 100%;
border-radius: 4px;
background: linear-gradient(90deg, #6e48aa, #9d50bb);
}
</style>
</head>
<body class="font-sans antialiased text-gray-800 bg-gray-50">
<!-- Navigation -->
<nav class="gradient-bg text-white shadow-lg sticky top-0 z-50">
<div class="container mx-auto px-6 py-3">
<div class="flex justify-between items-center">
<div class="text-2xl font-bold">
<a href="#" class="flex items-center">
<i class="fas fa-brain mr-2"></i>
<span>Dr. Alex Carter</span>
</a>
</div>
<div class="hidden md:flex space-x-8">
<a href="#about" class="hover:text-gray-200 transition">About</a>
<a href="#expertise" class="hover:text-gray-200 transition">Expertise</a>
<a href="#projects" class="hover:text-gray-200 transition">Projects</a>
<a href="#testimonials" class="hover:text-gray-200 transition">Testimonials</a>
<a href="#contact" class="hover:text-gray-200 transition">Contact</a>
</div>
<div class="md:hidden">
<button class="mobile-menu-button">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Mobile Menu -->
<div class="mobile-menu hidden md:hidden gradient-bg text-white py-4 px-6">
<a href="#about" class="block py-2 hover:text-gray-200 transition">About</a>
<a href="#expertise" class="block py-2 hover:text-gray-200 transition">Expertise</a>
<a href="#projects" class="block py-2 hover:text-gray-200 transition">Projects</a>
<a href="#testimonials" class="block py-2 hover:text-gray-200 transition">Testimonials</a>
<a href="#contact" class="block py-2 hover:text-gray-200 transition">Contact</a>
</div>
<!-- Hero Section -->
<header class="gradient-bg text-white py-20">
<div class="container mx-auto px-6 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Bridging Minds, Markets & Machines</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">
Where psychology meets finance, enhanced by AI, and communicated through compelling writing.
</p>
<div class="flex flex-col md:flex-row justify-center gap-4">
<a href="#contact" class="bg-white text-purple-800 hover:bg-gray-100 px-8 py-3 rounded-full font-semibold transition hover-scale">
Get In Touch <i class="fas fa-arrow-right ml-2"></i>
</a>
<a href="#projects" class="border-2 border-white text-white hover:bg-white hover:text-purple-800 px-8 py-3 rounded-full font-semibold transition hover-scale">
View My Work <i class="fas fa-eye ml-2"></i>
</a>
</div>
</div>
</header>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/3 mb-10 md:mb-0 flex justify-center">
<div class="relative">
<img src="https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80"
alt="Dr. Alex Carter"
class="rounded-full w-64 h-64 object-cover border-8 border-purple-100 shadow-xl">
<div class="absolute -bottom-5 -right-5 bg-purple-600 text-white p-4 rounded-full shadow-lg">
<i class="fas fa-graduation-cap text-2xl"></i>
</div>
</div>
</div>
<div class="md:w-2/3 md:pl-16">
<h2 class="text-3xl font-bold mb-6 text-purple-800">About Me</h2>
<p class="text-lg mb-6">
I'm Dr. Alex Carter, a multidisciplinary professional with over 15 years of experience at the intersection of psychology, finance, artificial intelligence, and technical writing. My unique perspective allows me to solve complex problems that span human behavior, market dynamics, and technological innovation.
</p>
<p class="text-lg mb-6">
With a PhD in Cognitive Psychology and an MBA in Finance, I've dedicated my career to understanding how human decision-making interacts with financial systems, and how AI can enhance both. My writing serves as the bridge that makes these complex concepts accessible to diverse audiences.
</p>
<div class="flex flex-wrap gap-4 mt-8">
<div class="bg-purple-100 text-purple-800 px-4 py-2 rounded-full flex items-center">
<i class="fas fa-pen-fancy mr-2"></i> Technical Writing
</div>
<div class="bg-purple-100 text-purple-800 px-4 py-2 rounded-full flex items-center">
<i class="fas fa-chart-line mr-2"></i> Behavioral Finance
</div>
<div class="bg-purple-100 text-purple-800 px-4 py-2 rounded-full flex items-center">
<i class="fas fa-brain mr-2"></i> Cognitive Psychology
</div>
<div class="bg-purple-100 text-purple-800 px-4 py-2 rounded-full flex items-center">
<i class="fas fa-robot mr-2"></i> AI Applications
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Expertise Section -->
<section id="expertise" class="py-20 bg-gray-100">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold mb-16 text-center text-purple-800">My Expertise</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Writing -->
<div class="bg-white p-8 rounded-xl shadow-lg hover-scale">
<div class="text-purple-600 mb-4">
<i class="fas fa-pen-nib text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Technical Writing</h3>
<p class="text-gray-600 mb-4">
Specializing in translating complex financial, psychological, and technical concepts into clear, engaging content for diverse audiences.
</p>
<div class="mt-4">
<h4 class="font-semibold mb-2">Key Skills:</h4>
<div class="skill-bar mb-2">
<div class="skill-progress" style="width: 95%"></div>
</div>
<span>Financial Reports</span>
<div class="skill-bar mb-2 mt-2">
<div class="skill-progress" style="width: 90%"></div>
</div>
<span>Technical Documentation</span>
<div class="skill-bar mb-2 mt-2">
<div class="skill-progress" style="width: 85%"></div>
</div>
<span>Scientific Communication</span>
</div>
</div>
<!-- Finance -->
<div class="bg-white p-8 rounded-xl shadow-lg hover-scale">
<div class="text-purple-600 mb-4">
<i class="fas fa-chart-pie text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Behavioral Finance</h3>
<p class="text-gray-600 mb-4">
Applying psychological principles to financial decision-making, market analysis, and investment strategies with a behavioral economics lens.
</p>
<div class="mt-4">
<h4 class="font-semibold mb-2">Key Skills:</h4>
<div class="skill-bar mb-2">
<div class="skill-progress" style="width: 90%"></div>
</div>
<span>Market Psychology</span>
<div class="skill-bar mb-2 mt-2">
<div class="skill-progress" style="width: 85%"></div>
</div>
<span>Investment Strategy</span>
<div class="skill-bar mb-2 mt-2">
<div class="skill-progress" style="width: 80%"></div>
</div>
<span>Risk Assessment</span>
</div>
</div>
<!-- Psychology -->
<div class="bg-white p-8 rounded-xl shadow-lg hover-scale">
<div class="text-purple-600 mb-4">
<i class="fas fa-mind-share text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Cognitive Psychology</h3>
<p class="text-gray-600 mb-4">
Expertise in human cognition, decision-making processes, and behavioral patterns with applications in business and technology.
</p>
<div class="mt-4">
<h4 class="font-semibold mb-2">Key Skills:</h4>
<div class="skill-bar mb-2">
<div class="skill-progress" style="width: 92%"></div>
</div>
<span>Decision Science</span>
<div class="skill-bar mb-2 mt-2">
<div class="skill-progress" style="width: 88%"></div>
</div>
<span>User Behavior</span>
<div class="skill-bar mb-2 mt-2">
<div class="skill-progress" style="width: 85%"></div>
</div>
<span>Learning Systems</span>
</div>
</div>
<!-- AI -->
<div class="bg-white p-8 rounded-xl shadow-lg hover-scale">
<div class="text-purple-600 mb-4">
<i class="fas fa-robot text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">AI Applications</h3>
<p class="text-gray-600 mb-4">
Developing AI systems that incorporate psychological principles for finance, education, and human-computer interaction.
</p>
<div class="mt-4">
<h4 class="font-semibold mb-2">Key Skills:</h4>
<div class="skill-bar mb-2">
<div class="skill-progress" style="width: 85%"></div>
</div>
<span>Machine Learning</span>
<div class="skill-bar mb-2 mt-2">
<div class="skill-progress" style="width: 80%"></div>
</div>
<span>NLP Systems</span>
<div class="skill-bar mb-2 mt-2">
<div class="skill-progress" style="width: 75%"></div>
</div>
<span>Behavioral Modeling</span>
</div>
</div>
</div>
<div class="mt-16 bg-white p-8 rounded-xl shadow-lg">
<h3 class="text-2xl font-bold mb-6 text-purple-800">Integrated Approach</h3>
<div class="grid md:grid-cols-2 gap-8">
<div>
<h4 class="text-xl font-semibold mb-3">Unique Value Proposition</h4>
<p class="text-gray-600">
My interdisciplinary expertise allows me to approach problems from multiple angles simultaneously. For example, when developing financial AI tools, I consider not just the technical implementation but also the psychological factors that influence how users will interact with the system and the most effective ways to communicate its functionality.
</p>
</div>
<div>
<h4 class="text-xl font-semibold mb-3">Collaboration Opportunities</h4>
<p class="text-gray-600">
I collaborate with financial institutions, tech companies, and research organizations to:
<ul class="list-disc pl-5 mt-2 space-y-1 text-gray-600">
<li>Develop psychologically-informed AI financial tools</li>
<li>Create educational content that bridges technical and non-technical audiences</li>
<li>Analyze market behavior through cognitive science lenses</li>
<li>Design human-centered AI interfaces</li>
</ul>
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 bg-white">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold mb-6 text-center text-purple-800">Projects & Portfolio</h2>
<p class="text-xl text-center mb-16 max-w-3xl mx-auto text-gray-600">
Selected work demonstrating the intersection of my four core disciplines
</p>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-lg hover-scale">
<div class="h-48 bg-purple-200 flex items-center justify-center">
<i class="fas fa-comment-dollar text-6xl text-purple-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Behavioral Finance AI Assistant</h3>
<p class="text-gray-600 mb-4">
An AI-powered tool that helps investors recognize and overcome cognitive biases in their decision-making process.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">AI Development</span>
<span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">Behavioral Economics</span>
<span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">Technical Writing</span>
</div>
<a href="#" class="text-purple-600 font-semibold hover:text-purple-800 transition">
View Case Study <i class="fas fa-arrow-right ml-1"></i>
</a>
</div>
</div>
<!-- Project 2 -->
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-lg hover-scale">
<div class="h-48 bg-blue-200 flex items-center justify-center">
<i class="fas fa-book-reader text-6xl text-blue-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Psychology of Market Cycles</h3>
<p class="text-gray-600 mb-4">
A comprehensive white paper and educational series analyzing psychological patterns in financial market cycles.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Research</span>
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Technical Writing</span>
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Data Visualization</span>
</div>
<a href="#" class="text-blue-600 font-semibold hover:text-blue-800 transition">
Read Publication <i class="fas fa-arrow-right ml-1"></i>
</a>
</div>
</div>
<!-- Project 3 -->
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-lg hover-scale">
<div class="h-48 bg-green-200 flex items-center justify-center">
<i class="fas fa-robot text-6xl text-green-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">AI-Powered Financial Coach</h3>
<p class="text-gray-600 mb-4">
A conversational AI system that provides personalized financial advice based on cognitive behavioral principles.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">NLP</span>
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">Psychology</span>
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">UX Design</span>
</div>
<a href="#" class="text-green-600 font-semibold hover:text-green-800 transition">
View Demo <i class="fas fa-arrow-right ml-1"></i>
</a>
</div>
</div>
<!-- Project 4 -->
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-lg hover-scale">
<div class="h-48 bg-yellow-200 flex items-center justify-center">
<i class="fas fa-chart-bar text-6xl text-yellow-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Investor Sentiment Analysis</h3>
<p class="text-gray-600 mb-4">
Machine learning models that analyze financial news and social media to predict market sentiment shifts.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-yellow-100 text-yellow-800 text-xs px-3 py-1 rounded-full">Data Science</span>
<span class="bg-yellow-100 text-yellow-800 text-xs px-3 py-1 rounded-full">Behavioral Finance</span>
<span class="bg-yellow-100 text-yellow-800 text-xs px-3 py-1 rounded-full">Natural Language Processing</span>
</div>
<a href="#" class="text-yellow-600 font-semibold hover:text-yellow-800 transition">
See Methodology <i class="fas fa-arrow-right ml-1"></i>
</a>
</div>
</div>
<!-- Project 5 -->
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-lg hover-scale">
<div class="h-48 bg-red-200 flex items-center justify-center">
<i class="fas fa-graduation-cap text-6xl text-red-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Financial Literacy Curriculum</h3>
<p class="text-gray-600 mb-4">
A psychologically-informed educational program that improves financial decision-making across demographics.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-red-100 text-red-800 text-xs px-3 py-1 rounded-full">Education</span>
<span class="bg-red-100 text-red-800 text-xs px-3 py-1 rounded-full">Cognitive Science</span>
<span class="bg-red-100 text-red-800 text-xs px-3 py-1 rounded-full">Curriculum Design</span>
</div>
<a href="#" class="text-red-600 font-semibold hover:text-red-800 transition">
Learn More <i class="fas fa-arrow-right ml-1"></i>
</a>
</div>
</div>
<!-- Project 6 -->
<div class="bg-gray-50 rounded-xl overflow-hidden shadow-lg hover-scale">
<div class="h-48 bg-indigo-200 flex items-center justify-center">
<i class="fas fa-brain text-6xl text-indigo-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Cognitive Bias Detection API</h3>
<p class="text-gray-600 mb-4">
A developer tool that identifies potential cognitive biases in financial documents and decision frameworks.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-indigo-100 text-indigo-800 text-xs px-3 py-1 rounded-full">API Development</span>
<span class="bg-indigo-100 text-indigo-800 text-xs px-3 py-1 rounded-full">Psychology</span>
<span class="bg-indigo-100 text-indigo-800 text-xs px-3 py-1 rounded-full">Financial Analysis</span>
</div>
<a href="#" class="text-indigo-600 font-semibold hover:text-indigo-800 transition">
View Documentation <i class="fas fa-arrow-right ml-1"></i>
</a>
</div>
</div>
</div>
<div class="text-center mt-16">
<a href="#" class="inline-block gradient-bg text-white hover:bg-purple-700 px-8 py-3 rounded-full font-semibold transition hover-scale">
View Full Portfolio <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-20 bg-gray-100">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold mb-6 text-center text-purple-800">Client & Colleague Testimonials</h2>
<p class="text-xl text-center mb-16 max-w-3xl mx-auto text-gray-600">
What professionals across industries say about working with me
</p>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-8 rounded-xl shadow-lg hover-scale">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<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>
<p class="text-gray-600 italic mb-6">
"Alex's ability to explain complex AI concepts in financial contexts is unparalleled. The white papers they produced for our firm became essential reading for our entire analyst team."
</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full mr-4 object-cover">
<div>
<h4 class="font-bold">Sarah Johnson</h4>
<p class="text-gray-500 text-sm">CFO, Vertex Capital</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-8 rounded-xl shadow-lg hover-scale">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<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>
<p class="text-gray-600 italic mb-6">
"The behavioral finance workshop Alex conducted for our team transformed how we approach client interactions. Their unique blend of psychology and finance expertise is truly remarkable."
</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen" class="w-12 h-12 rounded-full mr-4 object-cover">
<div>
<h4 class="font-bold">Michael Chen</h4>
<p class="text-gray-500 text-sm">Director, Goldman Wealth Management</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-8 rounded-xl shadow-lg hover-scale">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<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>
<p class="text-gray-600 italic mb-6">
"Working with Alex on our AI financial advisor was a game-changer. They brought psychological depth to the project that none of our engineers had considered, dramatically improving user engagement."
</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Priya Patel" class="w-12 h-12 rounded-full mr-4 object-cover">
<div>
<h4 class="font-bold">Priya Patel</h4>
<p class="text-gray-500 text-sm">CTO, FinTech Innovations</p>
</div>
</div>
</div>
</div>
<div class="mt-16 bg-white p-8 rounded-xl shadow-lg">
<h3 class="text-2xl font-bold mb-6 text-purple-800">Featured Collaborations</h3>
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 items-center justify-center">
<img src="https://via.placeholder.com/150x60?text=FinTech+Inc" alt="FinTech Inc" class="h-12 object-contain opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/150x60?text=Neuro+Capital" alt="Neuro Capital" class="h-12 object-contain opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/150x60?text=AI+Finance+Labs" alt="AI Finance Labs" class="h-12 object-contain opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/150x60?text=Cogni+Bank" alt="Cogni Bank" class="h-12 object-contain opacity-70 hover:opacity-100 transition">
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 gradient-bg text-white">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold mb-6 text-center">Let's Collaborate</h2>
<p class="text-xl text-center mb-16 max-w-3xl mx-auto">
Interested in working together or learning more about my interdisciplinary approach?
</p>
<div class="grid md:grid-cols-2 gap-12">
<div>
<h3 class="text-2xl font-bold mb-6">Get In Touch</h3>
<form class="space-y-6">
<div>
<label for="name" class="block mb-2 font-medium">Your Name</label>
<input type="text" id="name" class="w-full px-4 py-3 rounded-lg bg-purple-700 bg-opacity-20 border border-purple-300 focus:border-white focus:outline-none placeholder-purple-200">
</div>
<div>
<label for="email" class="block mb-2 font-medium">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-3 rounded-lg bg-purple-700 bg-opacity-20 border border-purple-300 focus:border-white focus:outline-none placeholder-purple-200">
</div>
<div>
<label for="subject" class="block mb-2 font-medium">Subject</label>
<select id="subject" class="w-full px-4 py-3 rounded-lg bg-purple-700 bg-opacity-20 border border-purple-300 focus:border-white focus:outline-none text-white">
<option value="" disabled selected>Select a topic</option>
<option value="writing">Writing Project</option>
<option value="finance">Financial Consultation</option>
<option value="psychology">Psychology Research</option>
<option value="ai">AI Development</option>
<option value="other">Other</option>
</select>
</div>
<div>
<label for="message" class="block mb-2 font-medium">Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 rounded-lg bg-purple-700 bg-opacity-20 border border-purple-300 focus:border-white focus:outline-none placeholder-purple-200"></textarea>
</div>
<button type="submit" class="w-full bg-white text-purple-800 hover:bg-gray-100 px-6 py-3 rounded-lg font-semibold transition">
Send Message <i class="fas fa-paper-plane ml-2"></i>
</button>
</form>
</div>
<div>
<h3 class="text-2xl font-bold mb-6">Contact Information</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="text-xl mr-4 mt-1">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-bold mb-1">Email</h4>
<a href="mailto:[email protected]" class="hover:underline">[email protected]</a>
</div>
</div>
<div class="flex items-start">
<div class="text-xl mr-4 mt-1">
<i class="fas fa-phone-alt"></i>
</div>
<div>
<h4 class="font-bold mb-1">Phone</h4>
<a href="tel:+11234567890" class="hover:underline">+1 (123) 456-7890</a>
</div>
</div>
<div class="flex items-start">
<div class="text-xl mr-4 mt-1">
<i class="fas fa-map-marker-alt"></i>
</div>
<div>
<h4 class="font-bold mb-1">Location</h4>
<p>Boston, MA / Remote Worldwide</p>
</div>
</div>
</div>
<div class="mt-12">
<h4 class="text-xl font-bold mb-4">Connect With Me</h4>
<div class="flex space-x-4">
<a href="#" class="w-12 h-12 rounded-full bg-purple-700 bg-opacity-30 flex items-center justify-center hover:bg-opacity-50 transition">
<i class="fab fa-linkedin-in text-xl"></i>
</a>
<a href="#" class="w-12 h-12 rounded-full bg-purple-700 bg-opacity-30 flex items-center justify-center hover:bg-opacity-50 transition">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="w-12 h-12 rounded-full bg-purple-700 bg-opacity-30 flex items-center justify-center hover:bg-opacity-50 transition">
<i class="fab fa-github text-xl"></i>
</a>
<a href="#" class="w-12 h-12 rounded-full bg-purple-700 bg-opacity-30 flex items-center justify-center hover:bg-opacity-50 transition">
<i class="fab fa-medium text-xl"></i>
</a>
</div>
</div>
<div class="mt-12 bg-white bg-opacity-10 p-6 rounded-xl">
<h4 class="text-xl font-bold mb-3">Speaking Engagements</h4>
<p class="mb-4">
I regularly speak at conferences and events about the intersection of psychology, finance, and AI. Invite me to your next event.
</p>
<a href="#" class="inline-block border-2 border-white text-white hover:bg-white hover:text-purple-800 px-6 py-2 rounded-full font-semibold transition">
Request Speaker Info <i class="fas fa-bullhorn ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-6">
<div class="grid md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-brain mr-2"></i>
<span>Dr. Alex Carter</span>
</h3>
<p class="text-gray-400">
Bridging the gap between human behavior, financial systems, and artificial intelligence through research, writing, and innovative solutions.
</p>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#about" class="text-gray-400 hover:text-white transition">About</a></li>
<li><a href="#expertise" class="text-gray-400 hover:text-white transition">Expertise</a></li>
<li><a href="#projects" class="text-gray-400 hover:text-white transition">Projects</a></li>
<li><a href="#testimonials" class="text-gray-400 hover:text-white transition">Testimonials</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Services</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Consulting</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Technical Writing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Workshops</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Research Collaboration</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Speaking Engagements</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Newsletter</h4>
<p class="text-gray-400 mb-4">
Subscribe to my interdisciplinary insights newsletter.
</p>
<form class="flex">
<input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-lg text-gray-800 w-full focus:outline-none">
<button type="submit" class="bg-purple-600 hover:bg-purple-700 px-4 py-2 rounded-r-lg transition">
<i class="fas fa-paper-plane"></i>
</button>
</form>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">
© 2023 Dr. Alex Carter. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-github"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-medium"></i>
</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const mobileMenuButton = document.querySelector('.mobile-menu-button');
const mobileMenu = document.querySelector('.mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
});
});
</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=AI4U2/alex" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |