File size: 34,852 Bytes
09a6e15 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rounak Chauhan | AI & Data Science Portfolio</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=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.skill-pill:hover {
transform: scale(1.05);
}
.timeline-item:not(:last-child)::after {
content: '';
position: absolute;
left: 20px;
top: 30px;
height: calc(100% - 30px);
width: 2px;
background: #e5e7eb;
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background: #3b82f6;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.active::after {
width: 100%;
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- Navigation -->
<nav class="fixed w-full bg-white shadow-sm z-50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<span class="text-xl font-bold gradient-text">Rounak Chauhan</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#home" class="nav-link active">Home</a>
<a href="#about" class="nav-link">About</a>
<a href="#experience" class="nav-link">Experience</a>
<a href="#projects" class="nav-link">Projects</a>
<a href="#contact" class="nav-link">Contact</a>
</div>
<div class="md:hidden flex items-center">
<button id="menu-btn" class="text-gray-600 hover:text-gray-900 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white pb-4 px-4 shadow-lg">
<div class="flex flex-col space-y-3">
<a href="#home" class="nav-link py-2 active">Home</a>
<a href="#about" class="nav-link py-2">About</a>
<a href="#experience" class="nav-link py-2">Experience</a>
<a href="#projects" class="nav-link py-2">Projects</a>
<a href="#contact" class="nav-link py-2">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="pt-24 pb-16 md:pt-32 md:pb-24 bg-gradient-to-r from-blue-50 to-purple-50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Hi, I'm <span class="gradient-text">Rounak Chauhan</span></h1>
<h2 class="text-2xl md:text-3xl font-semibold text-gray-600 mb-6">AI & Data Science Enthusiast</h2>
<p class="text-gray-600 mb-8 text-lg">Passionate about building intelligent systems and extracting insights from data to solve real-world problems.</p>
<div class="flex space-x-4">
<a href="#contact" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">Contact Me</a>
<a href="#projects" class="border border-blue-600 text-blue-600 hover:bg-blue-50 px-6 py-3 rounded-lg font-medium transition duration-300">View Projects</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative w-64 h-64 md:w-80 md:h-80 rounded-full overflow-hidden border-4 border-white shadow-xl">
<img src="https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80" alt="Rounak Chauhan" class="w-full h-full object-cover">
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-white">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12 gradient-text">About Me</h2>
<div class="flex flex-col md:flex-row gap-8">
<div class="md:w-1/2">
<h3 class="text-2xl font-semibold mb-4">Education</h3>
<div class="space-y-6">
<div class="bg-gray-50 p-6 rounded-lg shadow-sm">
<h4 class="font-bold text-lg">Bachelor of Technology in Artificial Intelligence & Data Science</h4>
<p class="text-gray-600">Madhav Institute of Technology and Science, Gwalior</p>
<p class="text-gray-500">August 2021 - June 2025 | CGPA: 8.4/10</p>
</div>
<div class="bg-gray-50 p-6 rounded-lg shadow-sm">
<h4 class="font-bold text-lg">Class 12th - CBSE</h4>
<p class="text-gray-600">Kendriya Vidyalaya No.2, Indore</p>
<p class="text-gray-500">April 2020 – March 2021 | Percentage: 90%</p>
</div>
<div class="bg-gray-50 p-6 rounded-lg shadow-sm">
<h4 class="font-bold text-lg">Class 10th - CBSE</h4>
<p class="text-gray-600">Vaishnav Bal Mandir Girls School, Indore</p>
<p class="text-gray-500">April 2018 – March 2019 | Percentage: 89%</p>
</div>
</div>
</div>
<div class="md:w-1/2">
<h3 class="text-2xl font-semibold mb-4">Skills</h3>
<div class="mb-8">
<h4 class="font-medium mb-2">Programming Languages</h4>
<div class="flex flex-wrap gap-2">
<span class="skill-pill bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm transition duration-300">Python</span>
<span class="skill-pill bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm transition duration-300">C++</span>
<span class="skill-pill bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm transition duration-300">SQL</span>
</div>
</div>
<div class="mb-8">
<h4 class="font-medium mb-2">Technical Skills</h4>
<div class="flex flex-wrap gap-2">
<span class="skill-pill bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm transition duration-300">Machine Learning</span>
<span class="skill-pill bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm transition duration-300">Deep Learning</span>
<span class="skill-pill bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm transition duration-300">AI</span>
<span class="skill-pill bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm transition duration-300">Data Science</span>
<span class="skill-pill bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm transition duration-300">Data Structures</span>
<span class="skill-pill bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm transition duration-300">Algorithms</span>
<span class="skill-pill bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm transition duration-300">OOP</span>
</div>
</div>
<div class="mb-8">
<h4 class="font-medium mb-2">Software & Tools</h4>
<div class="flex flex-wrap gap-2">
<span class="skill-pill bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm transition duration-300">MySQL</span>
<span class="skill-pill bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm transition duration-300">WEKA</span>
<span class="skill-pill bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm transition duration-300">Git</span>
<span class="skill-pill bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm transition duration-300">GitHub</span>
<span class="skill-pill bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm transition duration-300">Jupyter</span>
<span class="skill-pill bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm transition duration-300">FastAPI</span>
<span class="skill-pill bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm transition duration-300">Postman</span>
</div>
</div>
<div>
<h4 class="font-medium mb-2">ML Frameworks & Libraries</h4>
<div class="flex flex-wrap gap-2">
<span class="skill-pill bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-sm transition duration-300">Pandas</span>
<span class="skill-pill bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-sm transition duration-300">NumPy</span>
<span class="skill-pill bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-sm transition duration-300">Matplotlib</span>
<span class="skill-pill bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-sm transition duration-300">Flask</span>
<span class="skill-pill bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-sm transition duration-300">TensorFlow</span>
<span class="skill-pill bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-sm transition duration-300">OpenCV</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<section id="experience" class="py-16 bg-gray-50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12 gradient-text">Experience</h2>
<div class="relative">
<!-- Timeline -->
<div class="space-y-8">
<div class="timeline-item relative pl-12">
<div class="absolute left-0 top-0 w-10 h-10 rounded-full bg-blue-600 flex items-center justify-center text-white">
<i class="fas fa-briefcase"></i>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="font-bold text-xl">AI Intern</h3>
<p class="text-gray-600">Supersourcing, Indore</p>
<p class="text-gray-500 mb-4">March 2025 – June 2025</p>
<ul class="list-disc pl-5 space-y-2 text-gray-700">
<li>Worked on developing an AI chatbot using Large Language Models (LLMs)</li>
<li>Handled end-to-end data collection, web scraping, cleaning, and formatting for fine-tuning the chatbot</li>
<li>Developed Python scripts for automated web scraping to extract real-time data used in chatbot responses</li>
<li>Collaborated with cross-functional teams to deploy and test the chatbot in real-world environments</li>
</ul>
</div>
</div>
<div class="timeline-item relative pl-12">
<div class="absolute left-0 top-0 w-10 h-10 rounded-full bg-purple-600 flex items-center justify-center text-white">
<i class="fas fa-laptop-code"></i>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="font-bold text-xl">Project Intern</h3>
<p class="text-gray-600">Infosys Springboard</p>
<p class="text-gray-500 mb-4">April 2024 – June 2024</p>
<ul class="list-disc pl-5 space-y-2 text-gray-700">
<li>Developed a Plant Disease Classification model achieving 91% accuracy using NumPy, Pandas, Matplotlib, and Flask</li>
<li>Collaborated effectively within a team of 4 members, actively participating in daily meetings and discussions</li>
<li>Demonstrated strong communication, analytical, and teamwork skills through collaborative project work</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-16 bg-white">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12 gradient-text">Projects</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="project-card bg-gray-50 rounded-lg overflow-hidden shadow-md transition duration-300">
<div class="h-48 bg-gradient-to-r from-blue-400 to-purple-500 flex items-center justify-center">
<i class="fas fa-leaf text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="font-bold text-xl mb-2">Plant Disease Classification</h3>
<p class="text-gray-600 mb-4">Achieved 91% accuracy in identifying plant diseases using CNN with TensorFlow</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded-full text-xs">NumPy</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded-full text-xs">Pandas</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded-full text-xs">Matplotlib</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded-full text-xs">TensorFlow</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded-full text-xs">Flask</span>
</div>
<a href="#" class="text-blue-600 hover:text-blue-800 font-medium inline-flex items-center">
View Details <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Project 2 -->
<div class="project-card bg-gray-50 rounded-lg overflow-hidden shadow-md transition duration-300">
<div class="h-48 bg-gradient-to-r from-purple-400 to-pink-500 flex items-center justify-center">
<i class="fas fa-robot text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="font-bold text-xl mb-2">Voice Assistant</h3>
<p class="text-gray-600 mb-4">Created a voice assistant capable of recognizing and responding to user commands</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-purple-100 text-purple-800 px-2 py-1 rounded-full text-xs">Python</span>
<span class="bg-purple-100 text-purple-800 px-2 py-1 rounded-full text-xs">SpeechRecognition</span>
<span class="bg-purple-100 text-purple-800 px-2 py-1 rounded-full text-xs">PyAudio</span>
<span class="bg-purple-100 text-purple-800 px-2 py-1 rounded-full text-xs">Text-to-Speech</span>
</div>
<a href="#" class="text-purple-600 hover:text-purple-800 font-medium inline-flex items-center">
View Details <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Project 3 -->
<div class="project-card bg-gray-50 rounded-lg overflow-hidden shadow-md transition duration-300">
<div class="h-48 bg-gradient-to-r from-green-400 to-blue-500 flex items-center justify-center">
<i class="fas fa-eye text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="font-bold text-xl mb-2">AlertGuard</h3>
<p class="text-gray-600 mb-4">Real-time drowsiness detection system using OpenCV and Dlib</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs">OpenCV</span>
<span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs">NumPy</span>
<span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs">Dlib</span>
<span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs">Pygame</span>
</div>
<a href="#" class="text-green-600 hover:text-green-800 font-medium inline-flex items-center">
View Details <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Achievements & Certifications -->
<section class="py-16 bg-gray-50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Achievements -->
<div>
<h2 class="text-3xl font-bold mb-8 gradient-text text-center md:text-left">Achievements</h2>
<div class="space-y-4">
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-trophy text-blue-600"></i>
</div>
<div>
<h3 class="font-bold text-lg">2nd Position at Model Making Competition</h3>
<p class="text-gray-600">Drowsiness Detection System project organized by Madhav Institute of Technology and Science</p>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-start">
<div class="bg-purple-100 p-3 rounded-full mr-4">
<i class="fas fa-users text-purple-600"></i>
</div>
<div>
<h3 class="font-bold text-lg">Design Strategist Lead</h3>
<p class="text-gray-600">Google Developer Student Clubs (GDSC) MITS Gwalior</p>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-start">
<div class="bg-green-100 p-3 rounded-full mr-4">
<i class="fas fa-paint-brush text-green-600"></i>
</div>
<div>
<h3 class="font-bold text-lg">Graphics & Creativity Head</h3>
<p class="text-gray-600">Girls' Grievance Cell MITS Gwalior</p>
</div>
</div>
</div>
</div>
</div>
<!-- Certifications -->
<div>
<h2 class="text-3xl font-bold mb-8 gradient-text text-center md:text-left">Certifications</h2>
<div class="space-y-4">
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-start">
<div class="bg-yellow-100 p-3 rounded-full mr-4">
<i class="fas fa-certificate text-yellow-600"></i>
</div>
<div>
<h3 class="font-bold text-lg">AI Associate Certified</h3>
<p class="text-gray-600">Salesforce</p>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-start">
<div class="bg-red-100 p-3 rounded-full mr-4">
<i class="fas fa-chart-line text-red-600"></i>
</div>
<div>
<h3 class="font-bold text-lg">Deloitte Data Analytics Job Simulation</h3>
<p class="text-gray-600">Forage</p>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-start">
<div class="bg-indigo-100 p-3 rounded-full mr-4">
<i class="fas fa-brain text-indigo-600"></i>
</div>
<div>
<h3 class="font-bold text-lg">Artificial Intelligence Primer</h3>
<p class="text-gray-600">Infosys Springboard</p>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-cloud text-blue-600"></i>
</div>
<div>
<h3 class="font-bold text-lg">Google Cloud Digital Leader Training</h3>
<p class="text-gray-600">Coursera</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12 gradient-text">Get In Touch</h2>
<div class="flex flex-col md:flex-row gap-8">
<div class="md:w-1/2">
<div class="bg-gray-50 p-8 rounded-lg shadow-sm">
<h3 class="text-xl font-semibold mb-6">Contact Information</h3>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-medium">Location</h4>
<p class="text-gray-600">Indore, Madhya Pradesh, India</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-100 p-2 rounded-full mr-4">
<i class="fas fa-envelope text-purple-600"></i>
</div>
<div>
<h4 class="font-medium">Email</h4>
<p class="text-gray-600">chauhanrounak95@gmail.com</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-2 rounded-full mr-4">
<i class="fas fa-phone text-green-600"></i>
</div>
<div>
<h4 class="font-medium">Phone</h4>
<p class="text-gray-600">+91-9399381575</p>
</div>
</div>
</div>
<div class="mt-8">
<h3 class="text-xl font-semibold mb-4">Connect With Me</h3>
<div class="flex space-x-4">
<a href="#" class="bg-blue-600 text-white p-3 rounded-full hover:bg-blue-700 transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="bg-gray-800 text-white p-3 rounded-full hover:bg-gray-900 transition duration-300">
<i class="fab fa-github"></i>
</a>
<a href="#" class="bg-red-600 text-white p-3 rounded-full hover:bg-red-700 transition duration-300">
<i class="fab fa-google"></i>
</a>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-gray-50 p-8 rounded-lg shadow-sm">
<h3 class="text-xl font-semibold mb-6">Send Me a Message</h3>
<form>
<div class="mb-4">
<label for="name" class="block text-gray-700 mb-2">Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-4">
<label for="email" class="block text-gray-700 mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-4">
<label for="subject" class="block text-gray-700 mb-2">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-4">
<label for="message" class="block text-gray-700 mb-2">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea>
</div>
<button type="submit" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300 w-full">Send Message</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-8">
<div class="max-w-6xl 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-4 md:mb-0">
<span class="text-xl font-bold gradient-text">Rounak Chauhan</span>
<p class="text-gray-400 mt-2">AI & Data Science Portfolio</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-linkedin-in text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-github text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-twitter text-xl"></i>
</a>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 Rounak Chauhan. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const menuBtn = document.getElementById('menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for navigation links
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) {
// Close mobile menu if open
mobileMenu.classList.add('hidden');
// Scroll to target
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Update active nav link
document.querySelectorAll('.nav-link').forEach(link => {
link.classList.remove('active');
});
this.classList.add('active');
}
});
});
// Update active nav link on scroll
window.addEventListener('scroll', () => {
const scrollPosition = window.scrollY;
document.querySelectorAll('section').forEach(section => {
const sectionTop = section.offsetTop - 100;
const sectionHeight = section.offsetHeight;
const sectionId = section.getAttribute('id');
if (scrollPosition >= sectionTop && scrollPosition < sectionTop + sectionHeight) {
document.querySelectorAll('.nav-link').forEach(link => {
link.classList.remove('active');
if (link.getAttribute('href') === `#${sectionId}`) {
link.classList.add('active');
}
});
}
});
});
</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=RounakRC/portfolio" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |