|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Aditya Singh Gaur - Portfolio</title> |
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
<style> |
|
:root { |
|
--primary: #6c63ff; |
|
--secondary: #4a44b5; |
|
--dark: #2a2a4a; |
|
--light: #f8f9fa; |
|
} |
|
|
|
* { |
|
margin: 0; |
|
padding: 0; |
|
box-sizing: border-box; |
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
|
} |
|
|
|
body { |
|
background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); |
|
color: var(--light); |
|
min-height: 100vh; |
|
} |
|
|
|
.gradient-bg { |
|
background: linear-gradient(135deg, var(--primary), var(--secondary)); |
|
} |
|
|
|
.container { |
|
width: 100%; |
|
max-width: 1200px; |
|
margin: 0 auto; |
|
padding: 0 20px; |
|
} |
|
|
|
header { |
|
padding: 80px 0; |
|
position: relative; |
|
overflow: hidden; |
|
} |
|
|
|
header::before { |
|
content: ""; |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
width: 100%; |
|
height: 100%; |
|
background: radial-gradient(circle at top right, rgba(108, 99, 255, 0.2), transparent 70%); |
|
pointer-events: none; |
|
} |
|
|
|
.flex { |
|
display: flex; |
|
} |
|
|
|
.flex-col { |
|
flex-direction: column; |
|
} |
|
|
|
.md\:flex-row { |
|
flex-direction: column; |
|
} |
|
|
|
.items-center { |
|
align-items: center; |
|
} |
|
|
|
.justify-between { |
|
justify-content: space-between; |
|
} |
|
|
|
.mb-8 { |
|
margin-bottom: 2rem; |
|
} |
|
|
|
.md\:mb-0 { |
|
margin-bottom: 0; |
|
} |
|
|
|
.text-4xl { |
|
font-size: 2.25rem; |
|
} |
|
|
|
.md\:text-5xl { |
|
font-size: 3rem; |
|
} |
|
|
|
.font-bold { |
|
font-weight: 700; |
|
} |
|
|
|
.mb-2 { |
|
margin-bottom: 0.5rem; |
|
} |
|
|
|
.text-xl { |
|
font-size: 1.25rem; |
|
} |
|
|
|
.md\:text-2xl { |
|
font-size: 1.5rem; |
|
} |
|
|
|
.opacity-90 { |
|
opacity: 0.9; |
|
} |
|
|
|
.space-x-4 > * + * { |
|
margin-left: 1rem; |
|
} |
|
|
|
.bg-white { |
|
background-color: white; |
|
} |
|
|
|
.text-purple-700 { |
|
color: #6c63ff; |
|
} |
|
|
|
.p-3 { |
|
padding: 0.75rem; |
|
} |
|
|
|
.rounded-full { |
|
border-radius: 9999px; |
|
} |
|
|
|
.hover\:bg-purple-100:hover { |
|
background-color: #e0d7ff; |
|
} |
|
|
|
.transition { |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.text-2xl { |
|
font-size: 1.5rem; |
|
} |
|
|
|
.text-blue-600 { |
|
color: #2563eb; |
|
} |
|
|
|
.hover\:bg-blue-100:hover { |
|
background-color: #dbeafe; |
|
} |
|
|
|
.text-red-500 { |
|
color: #ef4444; |
|
} |
|
|
|
.hover\:bg-red-100:hover { |
|
background-color: #fee2e2; |
|
} |
|
|
|
|
|
.content { |
|
padding: 60px 0; |
|
background-color: rgba(255, 255, 255, 0.05); |
|
backdrop-filter: blur(10px); |
|
border-radius: 20px; |
|
margin: 40px; |
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); |
|
} |
|
|
|
.section-title { |
|
text-align: center; |
|
font-size: 2.5rem; |
|
margin-bottom: 40px; |
|
position: relative; |
|
} |
|
|
|
.section-title::after { |
|
content: ""; |
|
position: absolute; |
|
bottom: -10px; |
|
left: 50%; |
|
transform: translateX(-50%); |
|
width: 80px; |
|
height: 4px; |
|
background: linear-gradient(to right, var(--primary), var(--secondary)); |
|
border-radius: 2px; |
|
} |
|
|
|
.skills-container { |
|
display: grid; |
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); |
|
gap: 30px; |
|
padding: 0 40px; |
|
} |
|
|
|
.skill-card { |
|
background: rgba(255, 255, 255, 0.1); |
|
border-radius: 15px; |
|
padding: 30px; |
|
text-align: center; |
|
transition: transform 0.3s ease; |
|
} |
|
|
|
.skill-card:hover { |
|
transform: translateY(-10px); |
|
background: rgba(255, 255, 255, 0.15); |
|
} |
|
|
|
.skill-icon { |
|
font-size: 3rem; |
|
margin-bottom: 20px; |
|
color: var(--primary); |
|
} |
|
|
|
.skill-title { |
|
font-size: 1.5rem; |
|
margin-bottom: 15px; |
|
} |
|
|
|
.skill-desc { |
|
color: rgba(255, 255, 255, 0.8); |
|
line-height: 1.6; |
|
} |
|
|
|
@media (min-width: 768px) { |
|
.md\:flex-row { |
|
flex-direction: row; |
|
} |
|
} |
|
|
|
|
|
@keyframes fadeInUp { |
|
from { |
|
opacity: 0; |
|
transform: translateY(20px); |
|
} |
|
to { |
|
opacity: 1; |
|
transform: translateY(0); |
|
} |
|
} |
|
|
|
.animated { |
|
animation: fadeInUp 1s ease-out forwards; |
|
} |
|
|
|
.delay-1 { |
|
animation-delay: 0.2s; |
|
} |
|
|
|
.delay-2 { |
|
animation-delay: 0.4s; |
|
} |
|
|
|
.delay-3 { |
|
animation-delay: 0.6s; |
|
} |
|
|
|
|
|
footer { |
|
text-align: center; |
|
padding: 30px 0; |
|
color: rgba(255, 255, 255, 0.6); |
|
font-size: 0.9rem; |
|
border-top: 1px solid rgba(255, 255, 255, 0.1); |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
<header class="gradient-bg text-white py-12"> |
|
<div class="container mx-auto px-4"> |
|
<div class="flex flex-col md:flex-row items-center justify-between"> |
|
<div class="mb-8 md:mb-0 animated"> |
|
<h1 class="text-4xl md:text-5xl font-bold mb-2">Aditya Singh Gaur</h1> |
|
<p class="text-xl md:text-2xl opacity-90 delay-1 animated">AI/ML Engineer & Generative AI Specialist</p> |
|
</div> |
|
<div class="flex space-x-4"> |
|
<a href="mailto:[email protected]" class="bg-white text-red-500 p-3 rounded-full hover:bg-red-100 transition delay-2 animated"> |
|
<i class="fas fa-envelope text-2xl"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</header> |
|
|
|
<main class="content"> |
|
<h2 class="section-title">My Skills</h2> |
|
<div class="skills-container"> |
|
<div class="skill-card"> |
|
<div class="skill-icon"> |
|
<i class="fas fa-brain"></i> |
|
</div> |
|
<h3 class="skill-title">Machine Learning</h3> |
|
<p class="skill-desc">Building predictive models and implementing ML algorithms for real-world applications.</p> |
|
</div> |
|
|
|
<div class="skill-card"> |
|
<div class="skill-icon"> |
|
<i class="fas fa-robot"></i> |
|
</div> |
|
<h3 class="skill-title">Generative AI</h3> |
|
<p class="skill-desc">Creating innovative solutions with GANs, transformers, and other generative models.</p> |
|
</div> |
|
|
|
<div class="skill-card"> |
|
<div class="skill-icon"> |
|
<i class="fas fa-chart-line"></i> |
|
</div> |
|
<h3 class="skill-title">Data Science</h3> |
|
<p class="skill-desc">Extracting insights from complex datasets and creating visualizations.</p> |
|
</div> |
|
|
|
<div class="skill-card"> |
|
<div class="skill-icon"> |
|
<i class="fas fa-code"></i> |
|
</div> |
|
<h3 class="skill-title">Deep Learning</h3> |
|
<p class="skill-desc">Developing neural network architectures for computer vision and NLP tasks.</p> |
|
</div> |
|
</div> |
|
</main> |
|
|
|
<footer> |
|
<div class="container"> |
|
<p>© 2023 Aditya Singh Gaur. All rights reserved.</p> |
|
<p class="mt-2">Designed with ❤️ and AI</p> |
|
</div> |
|
</footer> |
|
</body> |
|
</html> |