|
<!DOCTYPE html> |
|
<html lang="en" class="scroll-smooth"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Srinivas Nampalli | Mechanical Engineer & AI Innovator</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 rel="preconnect" href="https://fonts.googleapis.com"> |
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet"> |
|
<script> |
|
tailwind.config = { |
|
darkMode: 'class', |
|
theme: { |
|
extend: { |
|
fontFamily: { |
|
sans: ['Inter', 'sans-serif'], |
|
}, |
|
colors: { |
|
primary: { |
|
DEFAULT: '#3B82F6', |
|
50: '#EFF6FF', |
|
100: '#DBEAFE', |
|
200: '#BFDBFE', |
|
300: '#93C5FD', |
|
400: '#60A5FA', |
|
500: '#3B82F6', |
|
600: '#2563EB', |
|
700: '#1D4ED8', |
|
800: '#1E40AF', |
|
900: '#1E3A8A', |
|
}, |
|
dark: { |
|
DEFAULT: '#0F172A', |
|
50: '#F8FAFC', |
|
100: '#F1F5F9', |
|
200: '#E2E8F0', |
|
300: '#CBD5E1', |
|
400: '#94A3B8', |
|
500: '#64748B', |
|
600: '#475569', |
|
700: '#334155', |
|
800: '#1E293B', |
|
900: '#0F172A', |
|
}, |
|
accent: { |
|
DEFAULT: '#10B981', |
|
50: '#ECFDF5', |
|
100: '#D1FAE5', |
|
200: '#A7F3D0', |
|
300: '#6EE7B7', |
|
400: '#34D399', |
|
500: '#10B981', |
|
600: '#059669', |
|
700: '#047857', |
|
800: '#065F46', |
|
900: '#064E3B', |
|
}, |
|
}, |
|
animation: { |
|
'float': 'float 6s ease-in-out infinite', |
|
'float-reverse': 'float-reverse 6s ease-in-out infinite', |
|
'text-gradient': 'text-gradient 8s ease infinite', |
|
}, |
|
keyframes: { |
|
'float': { |
|
'0%, 100%': { transform: 'translateY(0)' }, |
|
'50%': { transform: 'translateY(-20px)' }, |
|
}, |
|
'float-reverse': { |
|
'0%, 100%': { transform: 'translateY(0)' }, |
|
'50%': { transform: 'translateY(20px)' }, |
|
}, |
|
'text-gradient': { |
|
'0%, 100%': { 'background-position': '0% 50%' }, |
|
'50%': { 'background-position': '100% 50%' }, |
|
} |
|
} |
|
} |
|
} |
|
} |
|
</script> |
|
<style> |
|
html { |
|
scroll-behavior: smooth; |
|
} |
|
body { |
|
font-family: 'Inter', sans-serif; |
|
background-color: #0F172A; |
|
color: #F1F5F9; |
|
} |
|
.gradient-text { |
|
background: linear-gradient(90deg, #3B82F6, #10B981, #3B82F6); |
|
background-size: 200% auto; |
|
color: transparent; |
|
-webkit-background-clip: text; |
|
background-clip: text; |
|
animation: text-gradient 8s ease infinite; |
|
} |
|
.gradient-bg { |
|
background: linear-gradient(135deg, #0F172A, #1E293B); |
|
} |
|
.glass-effect { |
|
background: rgba(15, 23, 42, 0.7); |
|
backdrop-filter: blur(10px); |
|
-webkit-backdrop-filter: blur(10px); |
|
border: 1px solid rgba(255, 255, 255, 0.1); |
|
} |
|
.timeline-item::before { |
|
content: ''; |
|
position: absolute; |
|
left: -38px; |
|
top: 0; |
|
width: 24px; |
|
height: 24px; |
|
border-radius: 50%; |
|
background: #3B82F6; |
|
border: 4px solid #0F172A; |
|
} |
|
.timeline::before { |
|
content: ''; |
|
position: absolute; |
|
left: 32px; |
|
top: 0; |
|
height: 100%; |
|
width: 2px; |
|
background: #334155; |
|
} |
|
.project-card:hover .project-overlay { |
|
opacity: 1; |
|
transform: translateY(0); |
|
} |
|
.cursor-dot { |
|
width: 10px; |
|
height: 10px; |
|
background-color: #3B82F6; |
|
} |
|
.cursor-outline { |
|
width: 30px; |
|
height: 30px; |
|
border: 2px solid #3B82F6; |
|
} |
|
.cursor-dot, |
|
.cursor-outline { |
|
position: fixed; |
|
top: 0; |
|
left: 0; |
|
transform: translate(-50%, -50%); |
|
border-radius: 50%; |
|
z-index: 999; |
|
pointer-events: none; |
|
transition: transform 0.1s ease; |
|
} |
|
.typewriter { |
|
border-right: 2px solid #3B82F6; |
|
animation: blink-caret 0.75s step-end infinite; |
|
} |
|
@keyframes blink-caret { |
|
from, to { border-color: transparent } |
|
50% { border-color: #3B82F6; } |
|
} |
|
.skill-bar { |
|
height: 6px; |
|
background: #1E293B; |
|
border-radius: 3px; |
|
} |
|
.skill-progress { |
|
height: 100%; |
|
border-radius: 3px; |
|
background: linear-gradient(90deg, #3B82F6, #10B981); |
|
transition: width 1s ease; |
|
} |
|
</style> |
|
</head> |
|
<body class="antialiased gradient-bg"> |
|
|
|
<div class="cursor-dot"></div> |
|
<div class="cursor-outline"></div> |
|
|
|
|
|
<nav class="glass-effect fixed w-full z-50 top-0 left-0"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="flex justify-between h-20 items-center"> |
|
<div class="flex-shrink-0 flex items-center"> |
|
<a href="#" class="text-2xl font-bold text-white"> |
|
<span class="gradient-text">SN</span> |
|
</a> |
|
</div> |
|
<div class="hidden md:block"> |
|
<div class="ml-10 flex items-baseline space-x-8"> |
|
<a href="#home" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors duration-300">Home</a> |
|
<a href="#about" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors duration-300">About</a> |
|
<a href="#projects" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors duration-300">Projects</a> |
|
<a href="#blog" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors duration-300">Blog</a> |
|
<a href="#contact" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors duration-300">Contact</a> |
|
<button id="theme-toggle" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors duration-300"> |
|
<i class="fas fa-moon"></i> |
|
</button> |
|
</div> |
|
</div> |
|
<div class="md:hidden"> |
|
<button id="mobile-menu-button" class="text-gray-300 hover:text-white focus:outline-none"> |
|
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path> |
|
</svg> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div id="mobile-menu" class="hidden md:hidden"> |
|
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> |
|
<a href="#home" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium transition-colors duration-300">Home</a> |
|
<a href="#about" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium transition-colors duration-300">About</a> |
|
<a href="#projects" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium transition-colors duration-300">Projects</a> |
|
<a href="#blog" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium transition-colors duration-300">Blog</a> |
|
<a href="#contact" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium transition-colors duration-300">Contact</a> |
|
<button id="theme-toggle-mobile" class="text-gray-300 hover:text-white block px-3 py-2 rounded-md text-base font-medium transition-colors duration-300 w-full text-left"> |
|
<i class="fas fa-moon"></i> Toggle Theme |
|
</button> |
|
</div> |
|
</div> |
|
</nav> |
|
|
|
|
|
<section id="home" class="min-h-screen flex items-center justify-center relative overflow-hidden pt-20"> |
|
<div class="absolute inset-0 overflow-hidden"> |
|
<div class="absolute inset-0 bg-gradient-to-b from-dark-900/80 to-dark-900 z-10"></div> |
|
<div class="absolute inset-0 grid grid-cols-12 grid-rows-12 gap-1 opacity-20"> |
|
<div class="col-span-1 row-span-1 bg-primary-500 animate-pulse" style="animation-delay: 0.1s;"></div> |
|
<div class="col-span-1 row-span-1 bg-primary-500 animate-pulse" style="animation-delay: 0.3s;"></div> |
|
<div class="col-span-1 row-span-1 bg-primary-500 animate-pulse" style="animation-delay: 0.5s;"></div> |
|
|
|
</div> |
|
<div class="absolute top-1/4 left-1/4 w-32 h-32 rounded-full bg-primary-500/20 blur-3xl animate-float"></div> |
|
<div class="absolute top-1/3 right-1/4 w-40 h-40 rounded-full bg-accent-500/20 blur-3xl animate-float-reverse"></div> |
|
</div> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-20 text-center"> |
|
<div class="mb-8"> |
|
<span class="text-sm font-medium px-4 py-1 rounded-full bg-dark-800 text-primary-500">Mechanical Engineer & AI Innovator</span> |
|
</div> |
|
<h1 class="text-5xl md:text-7xl font-bold mb-6"> |
|
<span class="gradient-text">Srinivas Nampalli</span> |
|
</h1> |
|
<div class="typewriter-container text-2xl md:text-4xl font-medium mb-8"> |
|
<span class="typewriter">Engineer × AI Researcher × Systems Thinker</span> |
|
</div> |
|
<p class="text-lg md:text-xl text-gray-300 max-w-3xl mx-auto mb-12"> |
|
Bridging mechanical engineering with artificial intelligence to create innovative solutions for tomorrow's challenges. |
|
</p> |
|
<div class="flex flex-wrap justify-center gap-4"> |
|
<a href="#projects" class="px-8 py-3 rounded-full bg-primary-600 hover:bg-primary-700 text-white font-medium transition-colors duration-300 shadow-lg hover:shadow-primary-500/30"> |
|
View Projects |
|
</a> |
|
<a href="#" class="px-8 py-3 rounded-full bg-dark-700 hover:bg-dark-600 text-white font-medium transition-colors duration-300 border border-dark-500 shadow-lg hover:shadow-dark-500/20"> |
|
Download Resume |
|
</a> |
|
</div> |
|
</div> |
|
<div class="absolute bottom-8 left-0 right-0 text-center"> |
|
<a href="#about" class="inline-block animate-bounce"> |
|
<svg class="h-8 w-8 text-gray-400" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3"></path> |
|
</svg> |
|
</a> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="about" class="py-20 relative"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold mb-4"> |
|
<span class="gradient-text">About Me</span> |
|
</h2> |
|
<p class="text-lg text-gray-300 max-w-3xl mx-auto"> |
|
My journey from mechanical engineering to AI innovation has been driven by curiosity and a passion for solving complex problems. |
|
</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center"> |
|
<div class="relative"> |
|
<div class="glass-effect p-1 rounded-2xl inline-block"> |
|
<img src="https://images.unsplash.com/photo-1571171637578-41bc2dd41cd2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" |
|
alt="Srinivas Nampalli" |
|
class="rounded-2xl w-full h-auto max-w-lg mx-auto"> |
|
</div> |
|
<div class="absolute -bottom-6 -right-6 bg-dark-800 p-4 rounded-xl shadow-xl border border-dark-700 hidden md:block"> |
|
<div class="flex items-center"> |
|
<div class="bg-primary-500 p-2 rounded-lg mr-3"> |
|
<i class="fas fa-award text-white text-xl"></i> |
|
</div> |
|
<div> |
|
<p class="text-sm text-gray-300">Featured in</p> |
|
<p class="font-medium">Forbes 30 Under 30</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div> |
|
<h3 class="text-2xl font-bold mb-6">My Journey</h3> |
|
<div class="relative timeline pl-16"> |
|
<div class="relative mb-8 timeline-item"> |
|
<div class="glass-effect p-6 rounded-xl"> |
|
<div class="flex justify-between items-start mb-2"> |
|
<h4 class="font-bold text-lg">IIT Ropar</h4> |
|
<span class="text-sm bg-primary-500/20 text-primary-500 px-2 py-1 rounded">2016-2020</span> |
|
</div> |
|
<p class="text-gray-300">Bachelor of Technology in Mechanical Engineering with Minor in Artificial Intelligence</p> |
|
</div> |
|
</div> |
|
<div class="relative mb-8 timeline-item"> |
|
<div class="glass-effect p-6 rounded-xl"> |
|
<div class="flex justify-between items-start mb-2"> |
|
<h4 class="font-bold text-lg">Ford Motor Company</h4> |
|
<span class="text-sm bg-primary-500/20 text-primary-500 px-2 py-1 rounded">2020-2021</span> |
|
</div> |
|
<p class="text-gray-300">Developed AI-powered predictive maintenance systems for automotive manufacturing</p> |
|
</div> |
|
</div> |
|
<div class="relative timeline-item"> |
|
<div class="glass-effect p-6 rounded-xl"> |
|
<div class="flex justify-between items-start mb-2"> |
|
<h4 class="font-bold text-lg">GE Aerospace</h4> |
|
<span class="text-sm bg-primary-500/20 text-primary-500 px-2 py-1 rounded">2021-Present</span> |
|
</div> |
|
<p class="text-gray-300">Leading AI integration for aerospace systems design and optimization</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-20"> |
|
<h3 class="text-2xl font-bold mb-8 text-center">Skills & Expertise</h3> |
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6"> |
|
<div class="glass-effect p-6 rounded-xl"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-primary-500/20 p-3 rounded-lg mr-4"> |
|
<i class="fas fa-cogs text-primary-500 text-xl"></i> |
|
</div> |
|
<h4 class="font-bold">Mechanical Engineering</h4> |
|
</div> |
|
<div class="skill-bar"> |
|
<div class="skill-progress" style="width: 90%"></div> |
|
</div> |
|
</div> |
|
<div class="glass-effect p-6 rounded-xl"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-primary-500/20 p-3 rounded-lg mr-4"> |
|
<i class="fas fa-brain text-primary-500 text-xl"></i> |
|
</div> |
|
<h4 class="font-bold">AI/ML</h4> |
|
</div> |
|
<div class="skill-bar"> |
|
<div class="skill-progress" style="width: 85%"></div> |
|
</div> |
|
</div> |
|
<div class="glass-effect p-6 rounded-xl"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-primary-500/20 p-3 rounded-lg mr-4"> |
|
<i class="fas fa-project-diagram text-primary-500 text-xl"></i> |
|
</div> |
|
<h4 class="font-bold">Systems Design</h4> |
|
</div> |
|
<div class="skill-bar"> |
|
<div class="skill-progress" style="width: 88%"></div> |
|
</div> |
|
</div> |
|
<div class="glass-effect p-6 rounded-xl"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-primary-500/20 p-3 rounded-lg mr-4"> |
|
<i class="fas fa-comments text-primary-500 text-xl"></i> |
|
</div> |
|
<h4 class="font-bold">Technical Communication</h4> |
|
</div> |
|
<div class="skill-bar"> |
|
<div class="skill-progress" style="width: 92%"></div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-16 glass-effect p-8 rounded-2xl"> |
|
<blockquote class="text-center"> |
|
<p class="text-2xl md:text-3xl font-medium italic mb-6"> |
|
"Engineering tomorrow's intelligence, today." |
|
</p> |
|
<footer class="text-gray-300"> |
|
— Srinivas Nampalli |
|
</footer> |
|
</blockquote> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="projects" class="py-20 relative"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold mb-4"> |
|
<span class="gradient-text">Featured Projects</span> |
|
</h2> |
|
<p class="text-lg text-gray-300 max-w-3xl mx-auto"> |
|
A selection of my most impactful work at the intersection of mechanical engineering and artificial intelligence. |
|
</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
|
<div class="group relative overflow-hidden rounded-2xl glass-effect"> |
|
<div class="h-48 overflow-hidden"> |
|
<img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" |
|
alt="AI-Powered CAD Assistant" |
|
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"> |
|
</div> |
|
<div class="p-6"> |
|
<div class="flex justify-between items-start mb-2"> |
|
<h3 class="text-xl font-bold">AI-Powered CAD Assistant</h3> |
|
<span class="text-xs bg-accent-500/20 text-accent-500 px-2 py-1 rounded">AI</span> |
|
</div> |
|
<p class="text-gray-300 text-sm mb-4"> |
|
Machine learning system that accelerates mechanical design by predicting optimal CAD parameters. |
|
</p> |
|
<div class="flex flex-wrap gap-2 mb-4"> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">Python</span> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">TensorFlow</span> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">SolidWorks API</span> |
|
</div> |
|
</div> |
|
<div class="project-overlay absolute inset-0 bg-gradient-to-t from-dark-900/90 via-dark-900/70 to-transparent opacity-0 translate-y-4 transition-all duration-300 flex flex-col justify-end p-6"> |
|
<a href="#" class="text-primary-500 hover:text-primary-400 font-medium mb-2 transition-colors duration-300"> |
|
View Case Study → |
|
</a> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="group relative overflow-hidden rounded-2xl glass-effect"> |
|
<div class="h-48 overflow-hidden"> |
|
<img src="https://images.unsplash.com/photo-1622473590773-043089f720f7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" |
|
alt="Predictive Maintenance System" |
|
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"> |
|
</div> |
|
<div class="p-6"> |
|
<div class="flex justify-between items-start mb-2"> |
|
<h3 class="text-xl font-bold">Predictive Maintenance System</h3> |
|
<span class="text-xs bg-accent-500/20 text-accent-500 px-2 py-1 rounded">Industry 4.0</span> |
|
</div> |
|
<p class="text-gray-300 text-sm mb-4"> |
|
Real-time monitoring and failure prediction for industrial equipment using vibration analysis. |
|
</p> |
|
<div class="flex flex-wrap gap-2 mb-4"> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">IoT</span> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">Time Series</span> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">PyTorch</span> |
|
</div> |
|
</div> |
|
<div class="project-overlay absolute inset-0 bg-gradient-to-t from-dark-900/90 via-dark-900/70 to-transparent opacity-0 translate-y-4 transition-all duration-300 flex flex-col justify-end p-6"> |
|
<a href="#" class="text-primary-500 hover:text-primary-400 font-medium mb-2 transition-colors duration-300"> |
|
View Case Study → |
|
</a> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="group relative overflow-hidden rounded-2xl glass-effect"> |
|
<div class="h-48 overflow-hidden"> |
|
<img src="https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" |
|
alt="Aerodynamic Optimization" |
|
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"> |
|
</div> |
|
<div class="p-6"> |
|
<div class="flex justify-between items-start mb-2"> |
|
<h3 class="text-xl font-bold">Aerodynamic Optimization</h3> |
|
<span class="text-xs bg-accent-500/20 text-accent-500 px-2 py-1 rounded">CFD</span> |
|
</div> |
|
<p class="text-gray-300 text-sm mb-4"> |
|
Genetic algorithm approach to optimize turbine blade designs reducing drag by 18%. |
|
</p> |
|
<div class="flex flex-wrap gap-2 mb-4"> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">ANSYS</span> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">Genetic Algorithm</span> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">MATLAB</span> |
|
</div> |
|
</div> |
|
<div class="project-overlay absolute inset-0 bg-gradient-to-t from-dark-900/90 via-dark-900/70 to-transparent opacity-0 translate-y-4 transition-all duration-300 flex flex-col justify-end p-6"> |
|
<a href="#" class="text-primary-500 hover:text-primary-400 font-medium mb-2 transition-colors duration-300"> |
|
View Case Study → |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="text-center mt-12"> |
|
<a href="#" class="inline-flex items-center px-6 py-3 border border-dark-600 text-white font-medium rounded-full hover:bg-dark-700 transition-colors duration-300"> |
|
View All Projects |
|
<svg class="ml-2 -mr-1 w-4 h-4" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> |
|
<path fill-rule="evenodd" d="M10.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L12.586 11H5a1 1 0 110-2h7.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"></path> |
|
</svg> |
|
</a> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="blog" class="py-20 relative"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold mb-4"> |
|
<span class="gradient-text">Latest Articles</span> |
|
</h2> |
|
<p class="text-lg text-gray-300 max-w-3xl mx-auto"> |
|
Sharing insights on AI in engineering, research methodologies, and the future of intelligent systems. |
|
</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
|
<div class="group glass-effect rounded-2xl overflow-hidden transition-transform duration-300 hover:-translate-y-2"> |
|
<div class="h-48 overflow-hidden"> |
|
<img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" |
|
alt="AI in CAD" |
|
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"> |
|
</div> |
|
<div class="p-6"> |
|
<div class="flex items-center text-sm text-gray-400 mb-3"> |
|
<span>June 15, 2023</span> |
|
<span class="mx-2">•</span> |
|
<span>8 min read</span> |
|
</div> |
|
<h3 class="text-xl font-bold mb-3 group-hover:text-primary-500 transition-colors duration-300"> |
|
How AI is Transforming Mechanical CAD Design |
|
</h3> |
|
<p class="text-gray-300 text-sm mb-4"> |
|
Exploring the revolutionary impact of machine learning on traditional CAD workflows and what it means for engineers. |
|
</p> |
|
<div class="flex flex-wrap gap-2"> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">#AI</span> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">#CAD</span> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">#Future</span> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="group glass-effect rounded-2xl overflow-hidden transition-transform duration-300 hover:-translate-y-2"> |
|
<div class="h-48 overflow-hidden"> |
|
<img src="https://images.unsplash.com/photo-1622473590773-043089f720f7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" |
|
alt="Industry 4.0" |
|
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"> |
|
</div> |
|
<div class="p-6"> |
|
<div class="flex items-center text-sm text-gray-400 mb-3"> |
|
<span>May 2, 2023</span> |
|
<span class="mx-2">•</span> |
|
<span>12 min read</span> |
|
</div> |
|
<h3 class="text-xl font-bold mb-3 group-hover:text-primary-500 transition-colors duration-300"> |
|
The Road to Industry 4.0: Challenges & Opportunities |
|
</h3> |
|
<p class="text-gray-300 text-sm mb-4"> |
|
Analyzing the practical implementation challenges of Industry 4.0 technologies in traditional manufacturing. |
|
</p> |
|
<div class="flex flex-wrap gap-2"> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">#Industry4.0</span> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">#Manufacturing</span> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">#IoT</span> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="group glass-effect rounded-2xl overflow-hidden transition-transform duration-300 hover:-translate-y-2"> |
|
<div class="h-48 overflow-hidden"> |
|
<img src="https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" |
|
alt="AI Research" |
|
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"> |
|
</div> |
|
<div class="p-6"> |
|
<div class="flex items-center text-sm text-gray-400 mb-3"> |
|
<span>April 10, 2023</span> |
|
<span class="mx-2">•</span> |
|
<span>6 min read</span> |
|
</div> |
|
<h3 class="text-xl font-bold mb-3 group-hover:text-primary-500 transition-colors duration-300"> |
|
My Journey: From Mechanical Engineering to AI Research |
|
</h3> |
|
<p class="text-gray-300 text-sm mb-4"> |
|
Personal reflections on transitioning between these fields and the surprising synergies I discovered. |
|
</p> |
|
<div class="flex flex-wrap gap-2"> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">#Career</span> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">#AI</span> |
|
<span class="text-xs bg-dark-700 px-2 py-1 rounded">#Engineering</span> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="text-center mt-12"> |
|
<a href="#" class="inline-flex items-center px-6 py-3 border border-dark-600 text-white font-medium rounded-full hover:bg-dark-700 transition-colors duration-300"> |
|
Read All Articles |
|
<svg class="ml-2 -mr-1 w-4 h-4" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> |
|
<path fill-rule="evenodd" d="M10.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L12.586 11H5a1 1 0 110-2h7.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"></path> |
|
</svg> |
|
</a> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="contact" class="py-20 relative"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold mb-4"> |
|
<span class="gradient-text">Get In Touch</span> |
|
</h2> |
|
<p class="text-lg text-gray-300 max-w-3xl mx-auto"> |
|
Interested in collaborating or have questions about my work? I'd love to hear from you. |
|
</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12"> |
|
<div class="glass-effect p-8 rounded-2xl"> |
|
<h3 class="text-2xl font-bold mb-6">Send Me a Message</h3> |
|
<form> |
|
<div class="mb-6"> |
|
<label for="name" class="block text-sm font-medium text-gray-300 mb-2">Your Name</label> |
|
<input type="text" id="name" class="w-full px-4 py-3 bg-dark-800 border border-dark-700 rounded-lg focus:ring-primary-500 focus:border-primary-500 text-white placeholder-gray-500 transition-colors duration-300" placeholder="John Doe"> |
|
</div> |
|
<div class="mb-6"> |
|
<label for="email" class="block text-sm font-medium text-gray-300 mb-2">Email Address</label> |
|
<input type="email" id="email" class="w-full px-4 py-3 bg-dark-800 border border-dark-700 rounded-lg focus:ring-primary-500 focus:border-primary-500 text-white placeholder-gray-500 transition-colors duration-300" placeholder="[email protected]"> |
|
</div> |
|
<div class="mb-6"> |
|
<label for="message" class="block text-sm font-medium text-gray-300 mb-2">Your Message</label> |
|
<textarea id="message" rows="5" class="w-full px-4 py-3 bg-dark-800 border border-dark-700 rounded-lg focus:ring-primary-500 focus:border-primary-500 text-white placeholder-gray-500 transition-colors duration-300" placeholder="Hello Srinivas..."></textarea> |
|
</div> |
|
<button type="submit" class="w-full px-6 py-3 bg-primary-600 hover:bg-primary-700 text-white font-medium rounded-lg transition-colors duration-300"> |
|
Send Message |
|
</button> |
|
</form> |
|
</div> |
|
|
|
<div> |
|
<div class="glass-effect p-8 rounded-2xl mb-8"> |
|
<h3 class="text-2xl font-bold mb-6">Contact Information</h3> |
|
<div class="space-y-6"> |
|
<div class="flex items-start"> |
|
<div class="bg-primary-500/20 p-3 rounded-lg mr-4"> |
|
<i class="fas fa-envelope text-primary-500"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-medium mb-1">Email</h4> |
|
<a href="mailto:[email protected]" class="text-gray-300 hover:text-primary-500 transition-colors duration-300">[email protected]</a> |
|
</div> |
|
</div> |
|
<div class="flex items-start"> |
|
<div class="bg-primary-500/20 p-3 rounded-lg mr-4"> |
|
<i class="fas fa-map-marker-alt text-primary-500"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-medium mb-1">Location</h4> |
|
<p class="text-gray-300">Bangalore, India</p> |
|
</div> |
|
</div> |
|
<div class="flex items-start"> |
|
<div class="bg-primary-500/20 p-3 rounded-lg mr-4"> |
|
<i class="fas fa-calendar-alt text-primary-500"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-medium mb-1">Availability</h4> |
|
<p class="text-gray-300">Monday - Friday, 9AM - 5PM IST</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="glass-effect p-8 rounded-2xl"> |
|
<h3 class="text-2xl font-bold mb-6">Connect With Me</h3> |
|
<div class="flex space-x-4"> |
|
<a href="#" class="w-12 h-12 flex items-center justify-center bg-dark-700 hover:bg-dark-600 rounded-full transition-colors duration-300"> |
|
<i class="fab fa-linkedin-in text-xl"></i> |
|
</a> |
|
<a href="#" class="w-12 h-12 flex items-center justify-center bg-dark-700 hover:bg-dark-600 rounded-full transition-colors duration-300"> |
|
<i class="fab fa-github text-xl"></i> |
|
</a> |
|
<a href="#" class="w-12 h-12 flex items-center justify-center bg-dark-700 hover:bg-dark-600 rounded-full transition-colors duration-300"> |
|
<i class="fab fa-twitter text-xl"></i> |
|
</a> |
|
<a href="#" class="w-12 h-12 flex items-center justify-center bg-dark-700 hover:bg-dark-600 rounded-full transition-colors duration-300"> |
|
<i class="fab fa-youtube text-xl"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<footer class="py-12 border-t border-dark-700"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="flex flex-col md:flex-row justify-between items-center"> |
|
<div class="mb-6 md:mb-0"> |
|
<a href="#" class="text-2xl font-bold text-white"> |
|
<span class="gradient-text">SN</span> |
|
</a> |
|
</div> |
|
<div class="flex flex-wrap justify-center gap-6 mb-6 md:mb-0"> |
|
<a href="#home" class="text-gray-300 hover:text-white transition-colors duration-300">Home</a> |
|
<a href="#about" class="text-gray-300 hover:text-white transition-colors duration-300">About</a> |
|
<a href="#projects" class="text-gray-300 hover:text-white transition-colors duration-300">Projects</a> |
|
<a href="#blog" class="text-gray-300 hover:text-white transition-colors duration-300">Blog</a> |
|
<a href="#contact" class="text-gray-300 hover:text-white transition-colors duration-300">Contact</a> |
|
</div> |
|
<div> |
|
<a href="#" class="inline-flex items-center px-4 py-2 border border-dark-600 text-white font-medium rounded-full hover:bg-dark-700 transition-colors duration-300"> |
|
Download Resume |
|
<i class="fas fa-download ml-2"></i> |
|
</a> |
|
</div> |
|
</div> |
|
<div class="mt-8 pt-8 border-t border-dark-700 flex flex-col md:flex-row justify-between items-center"> |
|
<p class="text-gray-400 text-sm mb-4 md:mb-0"> |
|
© 2023 Srinivas Nampalli. All rights reserved. |
|
</p> |
|
<p class="text-gray-400 text-sm"> |
|
Built with <span class="text-primary-500">💡 + 🔬</span> by Srinivas Nampalli |
|
</p> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
<script> |
|
|
|
const mobileMenuButton = document.getElementById('mobile-menu-button'); |
|
const mobileMenu = document.getElementById('mobile-menu'); |
|
|
|
mobileMenuButton.addEventListener('click', () => { |
|
mobileMenu.classList.toggle('hidden'); |
|
}); |
|
|
|
|
|
const themeToggle = document.getElementById('theme-toggle'); |
|
const themeToggleMobile = document.getElementById('theme-toggle-mobile'); |
|
|
|
function toggleTheme() { |
|
if (localStorage.getItem('color-theme') === 'dark' || (!('color-theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) { |
|
document.documentElement.classList.remove('dark'); |
|
localStorage.setItem('color-theme', 'light'); |
|
themeToggle.innerHTML = '<i class="fas fa-moon"></i>'; |
|
themeToggleMobile.innerHTML = '<i class="fas fa-moon"></i> Toggle Theme'; |
|
} else { |
|
document.documentElement.classList.add('dark'); |
|
localStorage.setItem('color-theme', 'dark'); |
|
themeToggle.innerHTML = '<i class="fas fa-sun"></i>'; |
|
themeToggleMobile.innerHTML = '<i class="fas fa-sun"></i> Toggle Theme'; |
|
} |
|
} |
|
|
|
themeToggle.addEventListener('click', toggleTheme); |
|
themeToggleMobile.addEventListener('click', toggleTheme); |
|
|
|
|
|
if (localStorage.getItem('color-theme') === 'dark' || (!('color-theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) { |
|
document.documentElement.classList.add('dark'); |
|
themeToggle.innerHTML = '<i class="fas fa-sun"></i>'; |
|
themeToggleMobile.innerHTML = '<i class="fas fa-sun"></i> Toggle Theme'; |
|
} else { |
|
document.documentElement.classList.remove('dark'); |
|
themeToggle.innerHTML = '<i class="fas fa-moon"></i>'; |
|
themeToggleMobile.innerHTML = '<i class="fas fa-moon"></i> Toggle Theme'; |
|
} |
|
|
|
|
|
const cursorDot = document.querySelector(".cursor-dot"); |
|
const cursorOutline = document.querySelector(".cursor-outline"); |
|
|
|
window.addEventListener("mousemove", (e) => { |
|
const posX = e.clientX; |
|
const posY = e.clientY; |
|
|
|
cursorDot.style.left = `${posX}px`; |
|
cursorDot.style.top = `${posY}px`; |
|
|
|
cursorOutline.animate({ |
|
left: `${posX}px`, |
|
top: `${posY}px` |
|
}, { duration: 500, fill: "forwards" }); |
|
}); |
|
|
|
|
|
const interactiveElements = document.querySelectorAll("a, button, input, textarea, .project-card"); |
|
|
|
interactiveElements.forEach(element => { |
|
element.addEventListener("mouseenter", () => { |
|
cursorDot.style.transform = "translate(-50%, -50%) scale(1.5)"; |
|
cursorOutline.style.transform = "translate(-50%, -50%) scale(1.5)"; |
|
}); |
|
|
|
element.addEventListener("mouseleave", () => { |
|
cursorDot.style.transform = "translate(-50%, -50%) scale(1)"; |
|
cursorOutline.style.transform = "translate(-50%, -50%) scale(1)"; |
|
}); |
|
}); |
|
|
|
|
|
const typewriterText = "Engineer × AI Researcher × Systems Thinker"; |
|
const typewriterElement = document.querySelector(".typewriter"); |
|
let i = 0; |
|
|
|
function typeWriter() { |
|
if (i < typewriterText.length) { |
|
typewriterElement.textContent += typewriterText.charAt(i); |
|
i++; |
|
setTimeout(typeWriter, 100); |
|
} else { |
|
|
|
typewriterElement.classList.add("typewriter"); |
|
} |
|
} |
|
|
|
|
|
setTimeout(typeWriter, 1000); |
|
|
|
|
|
const scrollRevealElements = document.querySelectorAll(".timeline-item, .project-card, .glass-effect"); |
|
|
|
const scrollReveal = () => { |
|
scrollRevealElements.forEach(element => { |
|
const elementPosition = element.getBoundingClientRect().top; |
|
const screenPosition = window.innerHeight / 1.2; |
|
|
|
if (elementPosition < screenPosition) { |
|
element.style.opacity = "1"; |
|
element.style.transform = "translateY(0)"; |
|
} |
|
}); |
|
}; |
|
|
|
|
|
scrollRevealElements.forEach(element => { |
|
element.style.opacity = "0"; |
|
element.style.transform = "translateY(20px)"; |
|
element.style.transition = "opacity 0.6s ease, transform 0.6s ease"; |
|
}); |
|
|
|
window.addEventListener("scroll", scrollReveal); |
|
window.addEventListener("load", scrollReveal); |
|
|
|
|
|
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' |
|
}); |
|
|
|
|
|
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=Srinivasmec26/srinivas-namapalli" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |