db.portfolio / index.html
db69's picture
Update index.html
74732d3 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Divyam - Quantum Data Alchemist</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>
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&family=Rubik+Mono+One&display=swap');
body {
font-family: 'Comic Neue', cursive;
background-color: #0f172a;
background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,10 Q50,5 70,10 Q95,15 90,40 Q85,65 70,80 Q50,95 30,80 Q15,65 10,40 Q5,15 30,10" fill="none" stroke="%231e40af" stroke-width="0.5"/></svg>');
color: #e2e8f0;
}
.quantum-flask {
position: relative;
width: 120px;
height: 180px;
background: linear-gradient(to bottom, #1e40af, #3b82f6);
border-radius: 40px 40px 10px 10px;
border: 4px solid #60a5fa;
box-shadow: 0 0 30px rgba(96, 165, 250, 0.7);
overflow: hidden;
}
.quantum-flask:before {
content: '';
position: absolute;
top: -15px;
left: 15px;
width: 90px;
height: 30px;
background: #93c5fd;
border-radius: 45px;
filter: blur(5px);
}
.quantum-flask:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 50%;
background: linear-gradient(to bottom, rgba(59, 130, 246, 0.5), transparent);
border-radius: 0 0 40px 40px;
}
.data-bubble {
position: absolute;
background-color: rgba(255, 255, 255, 0.9);
border-radius: 50%;
animation: quantum-float 4s infinite ease-in-out;
filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
}
@keyframes quantum-float {
0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
25% { transform: translateY(-40px) rotate(10deg) scale(1.2); }
50% { transform: translateY(-80px) rotate(-10deg) scale(0.8); }
75% { transform: translateY(-40px) rotate(5deg) scale(1.1); }
}
.section-title {
position: relative;
display: inline-block;
font-family: 'Rubik Mono One', sans-serif;
font-weight: 400;
background: linear-gradient(90deg, #f59e0b, #ef4444, #a855f7);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-transform: uppercase;
letter-spacing: 1px;
}
.section-title:after {
content: '⚛️';
position: absolute;
right: -35px;
top: -5px;
font-size: 1.8rem;
animation: spin 10s linear infinite;
}
@keyframes spin {
100% { transform: rotate(360deg); }
}
.timeline-item {
position: relative;
padding-left: 40px;
margin-bottom: 40px;
border-left: 3px dashed #f59e0b;
}
.timeline-item:before {
content: '🧑‍💻';
position: absolute;
left: -22px;
top: 0;
font-size: 1.8rem;
background: #1e293b;
border-radius: 50%;
padding: 3px;
border: 2px solid #f59e0b;
}
.quantum-card {
background: rgba(30, 41, 59, 0.7);
border-radius: 15px;
padding: 20px;
margin-bottom: 25px;
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
border-left: 8px solid #10b981;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
backdrop-filter: blur(5px);
}
.quantum-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 20px rgba(0, 0, 0, 0.4);
border-left: 8px solid #f59e0b;
}
.quantum-card:before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 40px;
height: 40px;
background: linear-gradient(45deg, #10b981, transparent);
border-radius: 0 0 0 40px;
}
.binary-rain {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
opacity: 0.1;
}
.binary-digit {
position: absolute;
color: #60a5fa;
font-size: 1rem;
animation: fall linear infinite;
}
@keyframes fall {
to {
transform: translateY(100vh);
}
}
.tech-badge {
display: inline-block;
padding: 3px 10px;
border-radius: 20px;
margin: 3px;
font-size: 0.8rem;
font-weight: bold;
position: relative;
overflow: hidden;
}
.tech-badge:after {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(
to bottom right,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.1) 50%,
rgba(255, 255, 255, 0) 100%
);
transform: rotate(30deg);
animation: shine 3s infinite;
}
@keyframes shine {
0% { transform: translateX(-100%) rotate(30deg); }
100% { transform: translateX(100%) rotate(30deg); }
}
.glow-text {
text-shadow: 0 0 10px rgba(96, 165, 250, 0.7);
}
.portal {
width: 150px;
height: 150px;
border-radius: 50%;
background: radial-gradient(circle, #3b82f6, #1e40af);
position: relative;
margin: 0 auto;
box-shadow: 0 0 30px #3b82f6;
animation: pulse 3s infinite alternate;
}
@keyframes pulse {
0% { box-shadow: 0 0 30px #3b82f6; }
100% { box-shadow: 0 0 50px #a855f7; }
}
.portal:before {
content: '';
position: absolute;
top: 10px;
left: 10px;
right: 10px;
bottom: 10px;
border-radius: 50%;
border: 5px dashed rgba(255, 255, 255, 0.3);
animation: spin 20s linear infinite reverse;
}
.portal:after {
content: '';
position: absolute;
top: 25px;
left: 25px;
right: 25px;
bottom: 25px;
border-radius: 50%;
background: rgba(30, 41, 59, 0.7);
box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}
.disclaimer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(239, 68, 68, 0.9);
color: white;
padding: 10px;
text-align: center;
font-size: 0.8rem;
z-index: 1000;
display: none;
}
</style>
</head>
<body class="text-gray-200">
<div class="binary-rain" id="binaryRain"></div>
<div class="max-w-6xl mx-auto px-4 py-8 md:py-12 relative">
<!-- Header Section -->
<div class="bg-gradient-to-br from-slate-800 to-slate-900 rounded-2xl shadow-2xl overflow-hidden mb-10 border-4 border-double border-blue-500 relative">
<div class="absolute inset-0 bg-gradient-to-r from-blue-900/20 to-purple-900/20"></div>
<div class="relative md:flex z-10">
<div class="md:w-1/3 bg-gradient-to-br from-blue-900 to-purple-900 p-8 flex flex-col items-center justify-center text-gray-100 relative overflow-hidden">
<div class="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==')] opacity-20"></div>
<!-- Quantum Data Flask -->
<div class="quantum-flask mb-8" id="quantumFlask">
<!-- Data bubbles will be added by JS -->
</div>
<h1 class="text-4xl font-bold mb-2 text-center glow-text">
<span class="molecule">
<span class="text-red-400">D</span>
<span class="text-blue-400">i</span>
<span class="text-green-400">v</span>
<span class="text-yellow-400">y</span>
<span class="text-purple-400">a</span>
<span class="text-pink-400">m</span>
</span>
<span class="molecule ml-2">
<span class="text-red-400">B</span>
<span class="text-blue-400">a</span>
<span class="text-green-400">n</span>
<span class="text-yellow-400">s</span>
<span class="text-purple-400">a</span>
<span class="text-pink-400">l</span>
</span>
</h1>
<p class="text-xl mb-4 text-center text-blue-200 font-semibold">Quantum Data Alchemist</p>
<div class="w-full mt-6 space-y-4 text-sm">
<div class="flex items-center bg-white/10 p-3 rounded-lg backdrop-blur-sm border border-blue-400/30">
<i class="fas fa-atom mr-3 text-blue-300 text-lg"></i>
<span>B.Tech - Chemical Science & Technology</span>
</div>
<div class="flex items-center bg-white/10 p-3 rounded-lg backdrop-blur-sm border border-purple-400/30">
<i class="fas fa-university mr-3 text-purple-300 text-lg"></i>
<span>IIT Guwahati | 180122015</span>
</div>
<div class="flex items-center bg-white/10 p-3 rounded-lg backdrop-blur-sm border border-pink-400/30">
<i class="fas fa-phone-alt mr-3 text-pink-300 text-lg"></i>
<span>+91-9034675106</span>
</div>
<div class="flex items-center bg-white/10 p-3 rounded-lg backdrop-blur-sm border border-green-400/30">
<i class="fas fa-envelope mr-3 text-green-300 text-lg"></i>
<span>db.mail.765@gmail.com</span>
</div>
<div class="flex items-center bg-white/10 p-3 rounded-lg backdrop-blur-sm border border-yellow-400/30">
<i class="fab fa-linkedin mr-3 text-yellow-300 text-lg"></i>
<a href="https://www.linkedin.com/in/the-outcast" target="_blank" class="hover:underline hover:text-blue-300">LinkedIn Profile</a>
</div>
</div>
<div class="absolute bottom-4 right-4 text-xs text-blue-300/70">
<i class="fas fa-exclamation-triangle mr-1"></i> Warning: Contains unstable data particles
</div>
</div>
<div class="md:w-2/3 p-8 bg-slate-800/70 backdrop-blur-sm">
<h2 class="text-3xl font-bold mb-6 section-title">Quantum Manifesto</h2>
<p class="text-gray-300 mb-6 italic text-lg">
"I transmute raw data into golden insights through the arcane arts of quantum computation and
machine learning alchemy. My models don't just predict the future—they collapse probability
waveforms to manifest optimal outcomes."
</p>
<div class="grid grid-cols-2 gap-6 mb-8">
<div class="bg-gradient-to-br from-amber-900/50 to-amber-700/50 p-5 rounded-xl text-center border-2 border-dashed border-amber-500/50 relative overflow-hidden">
<div class="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMTkzLDcsMC4wNSkiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz48L3N2Zz4=')] opacity-20"></div>
<h3 class="font-semibold text-amber-200 mb-2 text-lg">Years of Alchemy</h3>
<p class="text-4xl font-bold text-amber-100 glow-text">3+</p>
<p class="text-xs mt-1 text-amber-300/80">(or 5 in blockchain years)</p>
</div>
<div class="bg-gradient-to-br from-purple-900/50 to-purple-700/50 p-5 rounded-xl text-center border-2 border-dashed border-purple-500/50 relative overflow-hidden">
<div class="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgxNjgsODUsMjQ3LDAuMDUpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+')] opacity-20"></div>
<h3 class="font-semibold text-purple-200 mb-2 text-lg">Global Alchemy Rank</h3>
<p class="text-4xl font-bold text-purple-100 glow-text">#94</p>
<p class="text-xs mt-1 text-purple-300/80">Creative Shock 2019</p>
</div>
</div>
<div class="bg-gradient-to-r from-blue-900/50 to-blue-800/50 p-5 rounded-lg mb-6 border border-blue-700/50 backdrop-blur-sm">
<h3 class="font-semibold text-blue-200 mb-3 text-lg flex items-center">
<i class="fas fa-stars mr-2 text-yellow-300"></i>
Core Competencies
</h3>
<div class="flex flex-wrap gap-2">
<span class="tech-badge bg-red-900/50 text-red-200 border border-red-700/50">Quantum Data Transmutation</span>
<span class="tech-badge bg-yellow-900/50 text-yellow-200 border border-yellow-700/50">Entropy Reversal Engineering</span>
<span class="tech-badge bg-green-900/50 text-green-200 border border-green-700/50">Neural Network Alchemy</span>
<span class="tech-badge bg-blue-900/50 text-blue-200 border border-blue-700/50">Cloud Computation Sorcery</span>
<span class="tech-badge bg-purple-900/50 text-purple-200 border border-purple-700/50">Dimensionality Reduction Magic</span>
</div>
</div>
</div>
</div>
</div>
<!-- Main Content -->
<div class="grid md:grid-cols-3 gap-8">
<!-- Left Column -->
<div class="md:col-span-2 space-y-8">
<!-- Experience Section -->
<div class="bg-gradient-to-br from-slate-800/70 to-slate-900/70 rounded-2xl shadow-xl p-6 border-2 border-dashed border-green-500/50 backdrop-blur-sm">
<h2 class="text-3xl font-bold mb-8 section-title">Alchemical Chronicles</h2>
<div class="quantum-card group">
<div class="absolute inset-0 bg-gradient-to-br from-green-900/20 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
<h3 class="text-2xl font-semibold text-green-300 mb-1">Quantum Data Alchemist</h3>
<p class="text-amber-400 font-medium mb-2">EXL Digital | 2022 - Present</p>
<div class="text-blue-300 text-sm mb-4 flex items-center">
<i class="fas fa-calendar-alt mr-2"></i>
<span>Epoch 1640995200 → Present</span>
</div>
<ul class="list-disc pl-5 space-y-2 text-gray-300 marker:text-green-400">
<li>Led coven of 5 data wizards to develop <span class="font-semibold text-green-200">Philosopher's Algorithm™</span>, reducing prediction time from 72moons → 30minutes.</li>
<li>Pioneered <span class="font-semibold text-blue-200">Image-to-Terraform™</span> quantum conversion (AWS CDK), cutting cloud summoning time by 50% across 50+ dimensions.</li>
<li>Invented <span class="font-semibold text-purple-200">No-Spell Sorcery™</span> pipeline for extracting knowledge from chaotic scrolls, adopted by 20 wizard guilds.</li>
<li>Engineered <span class="font-semibold text-yellow-200">Crystal Ball Analytics™</span> (Evidently AI + CloudWatch), reducing apocalypse events by 42%.</li>
<li>Discovered method to <span class="font-semibold text-pink-200">bottle intelligence</span> in Dockerized alembics for apprentice training.</li>
</ul>
<div class="mt-4 text-xs text-gray-400 italic flex items-center">
<i class="fas fa-flask mr-1"></i>
Results may vary. Side effects include spontaneous enlightenment and temporary omnipotence.
</div>
</div>
</div>
<!-- Projects Section -->
<div class="bg-gradient-to-br from-slate-800/70 to-slate-900/70 rounded-2xl shadow-xl p-6 border-2 border-dashed border-purple-500/50 backdrop-blur-sm">
<h2 class="text-3xl font-bold mb-8 section-title">Arcane Experiments</h2>
<div class="space-y-6">
<div class="quantum-card group">
<div class="absolute inset-0 bg-gradient-to-br from-purple-900/20 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
<h3 class="text-xl font-semibold text-purple-300 flex items-center">
<i class="fas fa-bolt mr-2 text-yellow-400"></i>
British Gas & OVO Energy Elemental Framework
</h3>
<div class="text-sm text-blue-300 mb-3 flex items-center">
<i class="fas fa-hourglass-half mr-2"></i>
Ongoing | Anish Goswami
</div>
<p class="text-gray-300">Trained fire elementals to handle customer incantations (billing disputes, cold tea hexes), service visit portals, gold-to-lead conversions, and dimensional rift creation.</p>
</div>
<div class="quantum-card group">
<div class="absolute inset-0 bg-gradient-to-br from-blue-900/20 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
<h3 class="text-xl font-semibold text-blue-300 flex items-center">
<i class="fas fa-microscope mr-2 text-green-400"></i>
JNJ Intelligent ALCHEMY Processing Pipeline
</h3>
<div class="text-sm text-purple-300 mb-3 flex items-center">
<i class="fas fa-calendar mr-2"></i>
Aug 2024 - Ongoing | Anish Goswami
</div>
<p class="text-gray-300">Reduced philosopher's stone creation time from <span class="font-semibold text-blue-200">72moons → 30minutes</span> using Autopen Apparitions™ AI RAG (Recursive Alchemical Generation).</p>
</div>
<div class="quantum-card group">
<div class="absolute inset-0 bg-gradient-to-br from-red-900/20 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div>
<h3 class="text-xl font-semibold text-red-300 flex items-center">
<i class="fas fa-eye mr-2 text-yellow-300"></i>
EXL Elixir LLM Monitoring-Pipeline
</h3>
<div class="text-sm text-green-300 mb-3 flex items-center">
<i class="fas fa-calendar mr-2"></i>
Apr 2024 - Aug 2024 | Vaibhav Mangla
</div>
<p class="text-gray-300">Monitored arcane metrics like toxicity (actual), hallucination (literal), dimensional viscosity, and pixie dust usage for anomaly detection across the multiverse.</p>
<a href="https://shorturl.at/gxEJq" target="_blank" class="text-blue-400 text-sm hover:underline mt-2 inline-block flex items-center">
<i class="fas fa-scroll mr-2"></i> View Forbidden Scroll
</a>
</div>
</div>
</div>
</div>
<!-- Right Column -->
<div class="space-y-8">
<!-- Education Section -->
<div class="bg-gradient-to-br from-slate-800/70 to-slate-900/70 rounded-2xl shadow-xl p-6 border-2 border-dashed border-blue-500/50 backdrop-blur-sm">
<h2 class="text-3xl font-bold mb-8 section-title">Arcane Academia</h2>
<div class="space-y-5">
<div class="bg-gradient-to-r from-blue-900/30 to-blue-800/30 p-4 rounded-xl border-l-4 border-blue-500 relative overflow-hidden group">
<div class="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSg1OSwxMzAsMjQ2LDAuMDUpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+')] opacity-20"></div>
<h3 class="font-semibold text-blue-300">B.Tech - Chemical Science & Technology</h3>
<p class="text-gray-400 text-sm">Indian Institute of Technology Guwahati</p>
<div class="flex justify-between text-sm text-blue-200 mt-2">
<span class="flex items-center"><i class="fas fa-calendar mr-1"></i> 2018 - 2022</span>
<span class="font-medium">CGPA: 7.51</span>
</div>
<div class="text-xs mt-2 text-blue-300/80 flex items-center">
<i class="fas fa-award mr-1"></i> Specialized in Quantum Potion Engineering
</div>
</div>
<div class="bg-gradient-to-r from-purple-900/30 to-purple-800/30 p-4 rounded-xl border-l-4 border-purple-500 relative overflow-hidden group">
<div class="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgxNjgsODUsMjQ3LDAuMDUpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+')] opacity-20"></div>
<h3 class="font-semibold text-purple-300">Senior Secondary (CBSE)</h3>
<p class="text-gray-400 text-sm">CBSE Board</p>
<div class="flex justify-between text-sm text-purple-200 mt-2">
<span class="flex items-center"><i class="fas fa-calendar mr-1"></i> 2015 - 2017</span>
<span class="font-medium">90.8%</span>
</div>
<div class="text-xs mt-2 text-purple-300/80 flex items-center">
<i class="fas fa-mortar-pestle mr-1"></i> Major in Alchemical Foundations
</div>
</div>
<div class="bg-gradient-to-r from-green-900/30 to-green-800/30 p-4 rounded-xl border-l-4 border-green-500 relative overflow-hidden group">
<div class="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgxNiwxODUsMTI5LDAuMDUpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+')] opacity-20"></div>
<h3 class="font-semibold text-green-300">Secondary (CBSE)</h3>
<p class="text-gray-400 text-sm">CBSE Board</p>
<div class="flex justify-between text-sm text-green-200 mt-2">
<span class="flex items-center"><i class="fas fa-calendar mr-1"></i> 2012</span>
<span class="font-medium">CGPA: 10.0</span>
</div>
<div class="text-xs mt-2 text-green-300/80 flex items-center">
<i class="fas fa-atom mr-1"></i> Discovered affinity for molecular mischief
</div>
</div>
</div>
</div>
<!-- Skills Section -->
<div class="bg-gradient-to-br from-slate-800/70 to-slate-900/70 rounded-2xl shadow-xl p-6 border-2 border-dashed border-red-500/50 backdrop-blur-sm">
<h2 class="text-3xl font-bold mb-8 section-title">Sorcery Skills</h2>
<div class="space-y-5">
<div>
<h3 class="font-semibold text-red-300 mb-3 flex items-center">
<i class="fas fa-code mr-2 text-yellow-400"></i>
Programming Languages
</h3>
<div class="flex flex-wrap gap-2">
<span class="tech-badge bg-blue-900/50 text-blue-200 border border-blue-700/50">Python</span>
<span class="tech-badge bg-yellow-900/50 text-yellow-200 border border-yellow-700/50">SQL</span>
<span class="tech-badge bg-green-900/50 text-green-200 border border-green-700/50">Bash</span>
</div>
</div>
<div>
<h3 class="font-semibold text-purple-300 mb-3 flex items-center">
<i class="fas fa-brain mr-2 text-blue-400"></i>
AI/ML Alchemy
</h3>
<div class="flex flex-wrap gap-2">
<span class="tech-badge bg-red-900/50 text-red-200 border border-red-700/50">Agentic AI</span>
<span class="tech-badge bg-purple-900/50 text-purple-200 border border-purple-700/50">RAG Architectures</span>
<span class="tech-badge bg-blue-900/50 text-blue-200 border border-blue-700/50">NLP</span>
<span class="tech-badge bg-green-900/50 text-green-200 border border-green-700/50">Prompt Engineering</span>
<span class="tech-badge bg-yellow-900/50 text-yellow-200 border border-yellow-700/50">PyTorch</span>
</div>
</div>
<div>
<h3 class="font-semibold text-blue-300 mb-3 flex items-center">
<i class="fas fa-cloud mr-2 text-white"></i>
Cloud Sorcery
</h3>
<div class="flex flex-wrap gap-2">
<span class="tech-badge bg-indigo-900/50 text-indigo-200 border border-indigo-700/50">AWS CDK</span>
<span class="tech-badge bg-blue-900/50 text-blue-200 border border-blue-700/50">EC2 Cost Magic</span>
<span class="tech-badge bg-purple-900/50 text-purple-200 border border-purple-700/50">Azure ML</span>
<span class="tech-badge bg-green-900/50 text-green-200 border border-green-700/50">Terraform</span>
</div>
</div>
<div>
<h3 class="font-semibold text-green-300 mb-3 flex items-center">
<i class="fas fa-tools mr-2 text-yellow-400"></i>
Alchemical Tools
</h3>
<div class="flex flex-wrap gap-2">
<span class="tech-badge bg-red-900/50 text-red-200 border border-red-700/50">LangChain</span>
<span class="tech-badge bg-blue-900/50 text-blue-200 border border-blue-700/50">MLflow</span>
<span class="tech-badge bg-purple-900/50 text-purple-200 border border-purple-700/50">Streamlit</span>
<span class="tech-badge bg-green-900/50 text-green-200 border border-green-700/50">Docker</span>
<span class="tech-badge bg-yellow-900/50 text-yellow-200 border border-yellow-700/50">GitHub Actions</span>
</div>
</div>
</div>
</div>
<!-- Certifications Section -->
<div class="bg-gradient-to-br from-slate-800/70 to-slate-900/70 rounded-2xl shadow-xl p-6 border-2 border-dashed border-yellow-500/50 backdrop-blur-sm">
<h2 class="text-3xl font-bold mb-8 section-title">Scrolls of Validation</h2>
<div class="space-y-5">
<div class="flex items-start bg-gradient-to-r from-yellow-900/20 to-yellow-800/20 p-4 rounded-lg border border-yellow-700/30">
<div class="bg-yellow-900/50 p-3 rounded-lg mr-4 text-yellow-300 border border-yellow-700/50">
<i class="fas fa-scroll text-xl"></i>
</div>
<div>
<h3 class="font-semibold text-yellow-300">AI Engineer</h3>
<p class="text-gray-400 text-sm">Great Learning, 2022</p>
<p class="text-xs text-yellow-300/80 mt-1">Certified to turn data into wisdom and coffee into code</p>
</div>
</div>
<div class="flex items-start bg-gradient-to-r from-purple-900/20 to-purple-800/20 p-4 rounded-lg border border-purple-700/30">
<div class="bg-purple-900/50 p-3 rounded-lg mr-4 text-purple-300 border border-purple-700/50">
<i class="fas fa-book-dead text-xl"></i>
</div>
<div>
<h3 class="font-semibold text-purple-300">Ada-Sci ML-Ops Engineer</h3>
<p class="text-gray-400 text-sm">2025 Mentors</p>
<p class="text-xs text-purple-300/80 mt-1">Qualified to summon containerized demons for CI/CD</p>
</div>
</div>
</div>
</div>
<!-- Achievements Section -->
<div class="bg-gradient-to-br from-slate-800/70 to-slate-900/70 rounded-2xl shadow-xl p-6 border-2 border-dashed border-pink-500/50 backdrop-blur-sm">
<h2 class="text-3xl font-bold mb-8 section-title">Dubious Honors</h2>
<div class="flex items-start bg-gradient-to-r from-pink-900/20 to-pink-800/20 p-4 rounded-lg border border-pink-700/30 mb-4">
<div class="bg-pink-900/50 p-3 rounded-lg mr-4 text-pink-300 border border-pink-700/50">
<i class="fas fa-trophy text-xl"></i>
</div>
<div>
<h3 class="font-semibold text-pink-300">Ranked 94th globally</h3>
<p class="text-gray-400 text-sm">Creative Shock 2019 (among 1800 teams)</p>
<p class="text-xs text-pink-300/80 mt-1">Award revoked after discovery of performance-enhancing quantum entanglement</p>
</div>
</div>
<div class="flex items-start bg-gradient-to-r from-green-900/20 to-green-800/20 p-4 rounded-lg border border-green-700/30">
<div class="bg-green-900/50 p-3 rounded-lg mr-4 text-green-300 border border-green-700/50">
<i class="fas fa-star text-xl"></i>
</div>
<div>
<h3 class="font-semibold text-green-300">Nobel Surprise Prize</h3>
<p class="text-gray-400 text-sm">2021 (Retroactive)</p>
<p class="text-xs text-green-300/80 mt-1">For services to chaotic data science</p>
</div>
</div>
</div>
</div>
</div>
<!-- Portal to Another Dimension -->
<div class="mt-12 text-center">
<div class="portal mb-4 cursor-pointer" id="dimensionalPortal">
<div class="absolute inset-0 flex items-center justify-center z-10">
<span class="text-white font-bold text-lg">CLICK TO SUMMON</span>
</div>
</div>
<p class="text-gray-400 text-sm">Warning: Interdimensional travel not covered by health insurance</p>
</div>
<!-- Footer -->
<div class="mt-12 text-center text-sm text-gray-500 italic">
<p>This CV exists in a quantum superposition of all possible states until observed by a recruiter.</p>
<p class="mt-1">Results not typical. Your experience may vary. Consult your local wizard before attempting data alchemy.</p>
</div>
</div>
<div class="disclaimer" id="disclaimer">
<i class="fas fa-exclamation-triangle mr-2"></i>
WARNING: Excessive exposure to this CV may cause spontaneous skill acquisition and uncontrollable career advancement.
<button class="ml-4 px-2 py-1 bg-white text-red-700 rounded text-xs font-bold" onclick="document.getElementById('disclaimer').style.display = 'none'">DISMISS</button>
</div>
<script>
// Create data bubbles in the quantum flask
const quantumFlask = document.getElementById('quantumFlask');
const colors = ['rgba(255,255,255,0.9)', 'rgba(239, 68, 68, 0.7)', 'rgba(59, 130, 246, 0.7)', 'rgba(168, 85, 247, 0.7)'];
for (let i = 0; i < 15; i++) {
const bubble = document.createElement('div');
bubble.className = 'data-bubble';
// Random properties
const size = Math.random() * 20 + 8;
const left = Math.random() * 80 + 10;
const delay = Math.random() * 8;
const duration = 4 + Math.random() * 6;
const color = colors[Math.floor(Math.random() * colors.length)];
bubble.style.width = `${size}px`;
bubble.style.height = `${size}px`;
bubble.style.left = `${left}px`;
bubble.style.bottom = '0';
bubble.style.animationDelay = `${delay}s`;
bubble.style.animationDuration = `${duration}s`;
bubble.style.backgroundColor = color;
quantumFlask.appendChild(bubble);
}
// Create binary rain
const binaryRain = document.getElementById('binaryRain');
const digits = ['0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1'];
for (let i = 0; i < 50; i++) {
const digit = document.createElement('div');
digit.className = 'binary-digit';
digit.textContent = digits[Math.floor(Math.random() * digits.length)];
const left = Math.random() * 100;
const animationDuration = 5 + Math.random() * 15;
const animationDelay = Math.random() * 10;
const opacity = 0.1 + Math.random() * 0.3;
digit.style.left = `${left}%`;
digit.style.animationDuration = `${animationDuration}s`;
digit.style.animationDelay = `${animationDelay}s`;
digit.style.opacity = opacity;
binaryRain.appendChild(digit);
}
// Make portal interactive
const portal = document.getElementById('dimensionalPortal');
portal.addEventListener('click', function() {
this.style.transform = 'scale(1.2)';
this.style.boxShadow = '0 0 50px rgba(168, 85, 247, 0.9)';
// Create particles
for (let i = 0; i < 30; i++) {
const particle = document.createElement('div');
particle.className = 'absolute rounded-full bg-purple-500';
const size = Math.random() * 10 + 5;
const angle = Math.random() * Math.PI * 2;
const distance = Math.random() * 100 + 50;
particle.style.width = `${size}px`;
particle.style.height = `${size}px`;
particle.style.left = '50%';
particle.style.top = '50%';
particle.style.transform = `translate(-50%, -50%) translate(${Math.cos(angle) * distance}px, ${Math.sin(angle) * distance}px)`;
particle.style.opacity = '0';
particle.style.transition = 'all 1s ease-out';
portal.appendChild(particle);
setTimeout(() => {
particle.style.opacity = '0.7';
particle.style.transform = `translate(-50%, -50%) translate(${Math.cos(angle) * distance * 2}px, ${Math.sin(angle) * distance * 2}px)`;
}, 10);
setTimeout(() => {
particle.style.opacity = '0';
}, 1000);
}
setTimeout(() => {
this.style.transform = '';
this.style.boxShadow = '';
// Show disclaimer
document.getElementById('disclaimer').style.display = 'block';
}, 1000);
});
// Make tech badges sparkle on hover
document.querySelectorAll('.tech-badge').forEach(badge => {
badge.addEventListener('mouseenter', function() {
this.style.transform = 'scale(1.1)';
this.style.boxShadow = '0 0 10px currentColor';
});
badge.addEventListener('mouseleave', function() {
this.style.transform = '';
this.style.boxShadow = '';
});
});
// Make section titles wobble
document.querySelectorAll('.section-title').forEach(title => {
title.addEventListener('mouseenter', function() {
this.style.animation = 'wobble 0.5s ease';
});
title.addEventListener('mouseleave', function() {
this.style.animation = '';
});
});
// Show disclaimer after 3 seconds
setTimeout(() => {
document.getElementById('disclaimer').style.display = 'block';
}, 3000);
</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=db69/my-porfolio" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>