Mayuresh – AI & Data Science Student
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
margin-top: 2rem;
margin-bottom: 2rem;
overflow: hidden;
}
.header {
background: linear-gradient(135deg, #2c3e50, #34495e);
color: white;
padding: 3rem 2rem;
text-align: center;
position: relative;
}
.header::before {
content: ”;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url(‘data:image/svg+xml,’);
opacity: 0.3;
}
.profile-img {
width: 150px;
height: 150px;
border-radius: 50%;
background: linear-gradient(135deg, #3498db, #2980b9);
margin: 0 auto 2rem;
display: flex;
align-items: center;
justify-content: center;
font-size: 4rem;
color: white;
border: 5px solid rgba(255, 255, 255, 0.2);
position: relative;
z-index: 1;
}
.header h1 {
font-size: 3rem;
margin-bottom: 0.5rem;
position: relative;
z-index: 1;
}
.header .subtitle {
font-size: 1.3rem;
opacity: 0.9;
position: relative;
z-index: 1;
}
.main-content {
padding: 0;
}
.section {
padding: 3rem 2rem;
border-bottom: 1px solid #eee;
}
.section:last-child {
border-bottom: none;
}
.section h2 {
font-size: 2.2rem;
margin-bottom: 2rem;
color: #2c3e50;
position: relative;
display: inline-block;
}
.section h2::after {
content: ”;
position: absolute;
bottom: -5px;
left: 0;
width: 60px;
height: 3px;
background: linear-gradient(135deg, #3498db, #2980b9);
border-radius: 2px;
}
.about-text {
font-size: 1.1rem;
line-height: 1.8;
color: #555;
max-width: 800px;
}
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.skill-category {
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
border-left: 5px solid #3498db;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.skill-category:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.skill-category h3 {
color: #2c3e50;
margin-bottom: 1rem;
font-size: 1.3rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.skill-category ul {
list-style: none;
padding-left: 0;
}
.skill-category li {
padding: 0.5rem 0;
color: #666;
position: relative;
padding-left: 1.5rem;
}
.skill-category li::before {
content: ‘▶’;
position: absolute;
left: 0;
color: #3498db;
font-size: 0.8rem;
}
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.project-card {
background: white;
border-radius: 15px;
padding: 2rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-top: 4px solid #3498db;
}
.project-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.project-card h3 {
color: #2c3e50;
margin-bottom: 1rem;
font-size: 1.3rem;
}
.project-card p {
color: #666;
margin-bottom: 1.5rem;
line-height: 1.6;
}
.project-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: #3498db;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.project-link:hover {
color: #2980b9;
}
.education-card {
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
margin-top: 2rem;
border-left: 5px solid #e74c3c;
}
.education-card h3 {
color: #2c3e50;
margin-bottom: 0.5rem;
font-size: 1.4rem;
}
.education-card .degree {
color: #3498db;
font-weight: 500;
margin-bottom: 1rem;
}
.courses {
margin-top: 1rem;
}
.courses h4 {
color: #2c3e50;
margin-bottom: 0.5rem;
}
.courses p {
color: #666;
line-height: 1.6;
}
.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.contact-item {
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s ease;
}
.contact-item:hover {
transform: translateY(-5px);
}
.contact-item i {
font-size: 3rem;
margin-bottom: 1rem;
color: #3498db;
}
.contact-item h3 {
color: #2c3e50;
margin-bottom: 0.5rem;
}
.contact-item a {
color: #666;
text-decoration: none;
transition: color 0.3s ease;
}
.contact-item a:hover {
color: #3498db;
}
.floating-icons {
position: fixed;
right: 2rem;
top: 50%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
gap: 1rem;
z-index: 100;
}
.floating-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #3498db, #2980b9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
text-decoration: none;
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}
.floating-icon:hover {
transform: scale(1.1);
box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
}
@media (max-width: 768px) {
.container {
margin: 1rem;
border-radius: 15px;
}
.header {
padding: 2rem 1rem;
}
.header h1 {
font-size: 2.2rem;
}
.section {
padding: 2rem 1rem;
}
.floating-icons {
display: none;
}
.skills-grid,
.projects-grid,
.contact-grid {
grid-template-columns: 1fr;
}
}
.scroll-indicator {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #3498db, #2980b9);
transform-origin: left;
transform: scaleX(0);
z-index: 1000;
}
Mayuresh
AI & Data Science Student | Machine Learning Enthusiast
About Me
Hello, I’m Mayuresh, a final-year Artificial Intelligence & Data Science student at Pune Vidyarthi Griha’s College of Engineering, Pune. I have a passion for Machine Learning, Deep Learning, and Data Analysis. I enjoy solving real-world problems using AI and data-driven solutions. I am always learning new technologies and improving my skills to build innovative projects.
Skills
Programming Languages
- Python
- R
- SQL
Machine Learning / AI
- Supervised & Unsupervised Learning
- Neural Networks
- NLP
- Computer Vision
Data Analysis / Visualization
- Pandas, NumPy
- Matplotlib, Seaborn
- Tableau
Tools & Frameworks
- TensorFlow, Keras
- Scikit-learn, OpenCV
- Jupyter Notebook
Other
- Git/GitHub
- Excel
- Data Cleaning
- Data Preprocessing
Projects
ML Stock Prediction Model
Predicts stock prices using historical data with advanced machine learning algorithms and time series analysis.
Image Classification using CNN
Deep Learning model to classify images of animals using Convolutional Neural Networks with high accuracy.
AI Chatbot for College Queries
Intelligent chatbot built using Python and NLP for handling student queries and providing instant responses.
Data Analysis on COVID-19 Dataset
Comprehensive data cleaning, visualization, and analysis to find trends and insights from COVID-19 data.
Education
Pune Vidyarthi Griha’s College of Engineering, Pune
Bachelor of Engineering in Artificial Intelligence & Data Science
Expected: 2025
Relevant Courses:
Machine Learning, Deep Learning, NLP, Data Mining, Statistics
Contact Information
// Smooth scrolling for navigation links
document.querySelectorAll(‘a[href^=”#”]’).forEach(anchor => {
anchor.addEventListener(‘click’, function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute(‘href’));
if (target) {
target.scrollIntoView({
behavior: ‘smooth’,
block: ‘start’
});
}
});
});
// Scroll progress indicator
window.addEventListener(‘scroll’, function() {
const scrollTop = window.pageYOffset;
const docHeight = document.body.scrollHeight – window.innerHeight;
const scrollPercent = scrollTop / docHeight;
const progressBar = document.querySelector(‘.scroll-indicator’);
progressBar.style.transform = `scaleX(${scrollPercent})`;
});
// Add scroll animations
const observerOptions = {
threshold: 0.1,
rootMargin: ‘0px 0px -50px 0px’
};
const observer = new IntersectionObserver(function(entries) {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = ‘1’;
entry.target.style.transform = ‘translateY(0)’;
}
});
}, observerOptions);
// Observe all sections
document.querySelectorAll(‘.section’).forEach(section => {
section.style.opacity = ‘0’;
section.style.transform = ‘translateY(30px)’;
section.style.transition = ‘opacity 0.6s ease, transform 0.6s ease’;
observer.observe(section);
});
// Particle animation for header
function createParticle() {
const particle = document.createElement(‘div’);
particle.style.position = ‘absolute’;
particle.style.width = ‘2px’;
particle.style.height = ‘2px’;
particle.style.background = ‘rgba(255, 255, 255, 0.5)’;
particle.style.borderRadius = ‘50%’;
particle.style.left = Math.random() * 100 + ‘%’;
particle.style.animationDuration = (Math.random() * 3 + 2) + ‘s’;
particle.style.animationName = ‘float’;
particle.style.animationIterationCount = ‘infinite’;
particle.style.animationTimingFunction = ‘ease-in-out’;
const header = document.querySelector(‘.header’);
header.appendChild(particle);
setTimeout(() => {
particle.remove();
}, 5000);
}
// Add CSS animation for particles
const style = document.createElement(‘style’);
style.textContent = `
@keyframes float {
0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 1; }
50% { transform: translateY(-20px) rotate(180deg); opacity: 0.5; }
}
`;
document.head.appendChild(style);
// Create particles periodically
setInterval(createParticle, 300);