Changed around line 1
- Hello World my name is
+ Hello World my name is
+ index.html
+
+
+
+
+
+
+
Gurukiran Patkar - Pharmaceutical Marketing Specialist+
+ /* Base styles */
+ :root {
+ --primary: #2563eb;
+ --primary-dark: #1d4ed8;
+ --secondary: #64748b;
+ --background: #f8fafc;
+ --text: #1e293b;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-family: 'Inter', system-ui, -apple-system, sans-serif;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ line-height: 1.5;
+ color: var(--text);
+ background: var(--background);
+ }
+
+ /* Navigation */
+ .nav {
+ position: fixed;
+ top: 0;
+ width: 100%;
+ background: white;
+ padding: 1rem;
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
+ z-index: 1000;
+ }
+
+ .nav-container {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .nav-brand {
+ font-size: 1.25rem;
+ font-weight: bold;
+ color: var(--primary);
+ text-decoration: none;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-link {
+ color: var(--text);
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .nav-link:hover {
+ color: var(--primary);
+ }
+
+ /* Hero Section */
+ .hero {
+ padding-top: 5rem;
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ background: linear-gradient(rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.1));
+ }
+
+ .hero-container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ color: var(--primary);
+ }
+
+ .hero p {
+ font-size: 1.25rem;
+ color: var(--secondary);
+ margin-bottom: 2rem;
+ max-width: 600px;
+ margin-left: auto;
+ margin-right: auto;
+ }
+
+ /* Stats Section */
+ .stats {
+ padding: 4rem 2rem;
+ }
+
+ .stats-container {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .stat-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ text-align: center;
+ transition: transform 0.3s ease;
+ }
+
+ .stat-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .stat-number {
+ font-size: 2.5rem;
+ font-weight: bold;
+ color: var(--primary);
+ margin-bottom: 0.5rem;
+ }
+
+ /* Experience Section */
+ .experience {
+ padding: 4rem 2rem;
+ background: white;
+ }
+
+ .experience-container {
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .experience h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ color: var(--text);
+ }
+
+ .timeline {
+ position: relative;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .timeline-item {
+ margin-bottom: 3rem;
+ padding-left: 2rem;
+ border-left: 2px solid var(--primary);
+ position: relative;
+ }
+
+ .timeline-item::before {
+ content: '';
+ position: absolute;
+ left: -8px;
+ top: 0;
+ width: 14px;
+ height: 14px;
+ border-radius: 50%;
+ background: var(--primary);
+ }
+
+ /* Button Styles */
+ .btn {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: var(--primary);
+ color: white;
+ text-decoration: none;
+ border-radius: 4px;
+ transition: background 0.3s ease;
+ }
+
+ .btn:hover {
+ background: var(--primary-dark);
+ }
+
+ /* Contact Section */
+ .contact {
+ padding: 4rem 2rem;
+ text-align: center;
+ }
+
+ .contact-container {
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .social-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ /* Responsive Design */
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .stat-card {
+ margin-bottom: 1rem;
+ }
+ }
+
+ /* Animations */
+ @keyframes fadeUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ .animate-fadeUp {
+ animation: fadeUp 1s ease forwards;
+ }
+
+
+
+
+
+
+
+
+
Gurukiran Patkar
+
MSc Management Graduate | Ex-Novo Nordisk | Pharmaceutical Marketing Specialist
+
Transforming pharmaceutical marketing through strategic innovation and proven results
+
+
+
+
+
+
+
Sales Growth at Novo Nordisk
+
+
+
Medical Colleges Coverage
+
+
+
+
+
+
+
Professional Journey
+
+
+
Trainee Product Specialist
+
Novo Nordisk India Private Limited
+
Led marketing campaigns resulting in 100% growth+
Managed territory meant for 3 people+
Built and maintained 80+ client relationships+
+
+
+
MSc Management
+
University of Birmingham
+
Digital Business and Analytics+
Crisis Resilience and Change Management+
Organisational Decision-making+
+
+
+
Bachelor of Pharmacy
+
Manipal Academy of Higher Education (MAHE)
+
+
+
+
+
+
+
+
Let's Connect
+
Ready to discuss opportunities or collaborate?
+
+
+
+
+ // Smooth scrolling for navigation links
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
+ anchor.addEventListener('click', function (e) {
+ e.preventDefault();
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
+ behavior: 'smooth'
+ });
+ });
+ });
+
+ // Animation on scroll
+ const animateElements = document.querySelectorAll('.animate-fadeUp');
+
+ const observer = new IntersectionObserver((entries) => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ entry.target.style.opacity = '1';
+ entry.target.style.transform = 'translateY(0)';
+ }
+ });
+ });
+
+ animateElements.forEach(element => {
+ element.style.opacity = '0';
+ element.style.transform = 'translateY(20px)';
+ element.style.transition = 'all 0.6s ease';
+ observer.observe(element);
+ });
+
+ // Navbar scroll effect
+ window.addEventListener('scroll', () => {
+ const nav = document.querySelector('.nav');
+ if (window.scrollY > 50) {
+ nav.style.background = 'rgba(255, 255, 255, 0.95)';
+ nav.style.boxShadow = '0 2px 4px rgba(0,0,0,0.1)';
+ } else {
+ nav.style.background = 'white';
+ nav.style.boxShadow = '0 2px 4px rgba(0,0,0,0.1)';
+ }
+ });
+
+
+