-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvantage_project.html
More file actions
683 lines (608 loc) · 25.4 KB
/
Copy pathvantage_project.html
File metadata and controls
683 lines (608 loc) · 25.4 KB
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
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quantitative Financial Analytics: Decoding Stock Returns</title>
<!-- Bootstrap for responsive design -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
/* Core Styling Variables */
:root {
--primary-gradient: linear-gradient(to right, #0f172a, #1e3a8a, #164e63);
--highlight-blue: #1e3a8a;
--light-gray: #f8f9fa;
--divider-color: #e9ecef;
}
/* General Styles */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f5f5f5;
}
/* Navigation Styles */
.navbar {
background: var(--primary-gradient);
padding: 1rem 0;
}
/* Back to Top Button */
.back-to-top {
position: fixed;
border-radius: 50%;
bottom: 30px;
right: 30px;
width: 40px;
height: 40px;
background-color: #0366d6;
color: white;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
z-index: 99;
opacity: 0.8;
transition: opacity 0.3s;
}
.back-to-top:hover {
opacity: 1;
color: white;
}
/* Project Content Styles */
.container-lg {
max-width: 100%;
margin: auto;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2, h3, h4, h5, h6 {
color: var(--highlight-blue);
}
h3, h4 {
margin-top: 2rem; /* Adds space above headings */
margin-bottom: 1rem; /* Adds space below headings */
}
h5 {
margin-top: 1.5rem; /* Slightly less space for subheadings */
}
hr {
margin: 2.5rem 0; /* Increased vertical margin around horizontal rules */
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
img {
max-width: 75%;
height: auto;
}
ul {
list-style-type: disc;
padding-left: 20px;
}
blockquote {
border-left: 4px solid var(--highlight-blue);
padding-left: 16px;
color: #555;
background-color: #e1eafa;
margin: 20px 0;
}
a {
color: var(--highlight-blue);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.section-peek-line {
width: 50px;
height: 4px;
background: var(--primary-gradient);
margin: 0 auto;
border-radius: 2px;
}
.section-title {
position: relative;
display: inline-block;
margin-bottom: 2.5rem;
font-weight: 600;
}
.section-title::after {
content: '';
position: absolute;
left: 0;
bottom: -10px;
width: 60px;
height: 3px;
background: var(--primary-gradient);
}
/* Project-specific styles */
.project-header {
background-color: var(--light-gray);
padding: 2rem 0;
margin-bottom: 2rem;
}
.project-title {
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 1rem;
}
.project-content {
max-width: 1000px;
margin: 0 auto;
}
/* Footer Styles */
.footer {
background: var(--primary-gradient);
color: white;
padding: 3rem 0;
}
.footer h5, .footer p {
color: white !important;
}
.custom-contact-btn {
color: white;
background: linear-gradient(to right, #1e3a8a, #164e63);
border: none;
transition: all 0.3s ease;
padding: 0.6rem 1.2rem;
}
.custom-contact-btn:hover {
color: white !important;
background: linear-gradient(to right, #25a244, #2dc653);
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* Action Buttons */
.action-btn {
padding: 1rem 2rem;
font-weight: 750;
margin-right: 25px;
transition: all 0.3s ease;
}
.action-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
</style>
</head>
<body>
<!-- Navigation from Homepage -->
<header class="sticky-top">
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container">
<!-- Centered Brand/Logo for mobile -->
<a class="navbar-brand d-lg-none mx-auto" href="index.html">Sujith Kumaar</a>
<!-- Mobile Toggle Button -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarContent">
<span class="navbar-toggler-icon"></span>
</button>
<!-- All Navigation Links in a Single Collapsible Container -->
<div class="collapse navbar-collapse" id="navbarContent">
<!-- Left side links -->
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link" href="index.html#about">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#skills">Tech Toolkit</a>
</li>
</ul>
<!-- Centered Brand/Logo for desktop -->
<a class="navbar-brand d-none d-lg-block mx-auto" href="index.html">Sujith Kumaar</a>
<!-- Right side links -->
<ul class="navbar-nav ms-auto">
<!-- Project-specific quick links button -->
<li class="nav-item">
<div class="dropdown">
<button class="btn btn-outline-light btn-sm dropdown-toggle" type="button" id="projectsDropdown" data-bs-toggle="dropdown" aria-expanded="false">
Project Details
</button>
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="projectsDropdown">
<li><a class="dropdown-item" href="turtle_games_project.html">Turtle Games</a></li>
<li><a class="dropdown-item" href="nhs_project.html">NHS UK</a></li>
<li><a class="dropdown-item" href="2Market_project.html">2Market</a></li>
<li><a class="dropdown-item" href="vantage_project.html">Vantage Data</a></li>
</ul>
</div>
</li>
<!-- Social icons -->
<li class="nav-item ms-3 d-none d-lg-block">
<a href="https://linkedin.com/in/sujith-kumaar-kc" class="text-white me-2" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/Sujith-DA279" class="text-white me-2" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://public.tableau.com/app/profile/sujith.kumaar.k.c" class="text-white me-2" target="_blank"><i class="fas fa-chart-line"></i></a>
<a href="mailto:sujithkumaar.kc@gmail.com" class="text-white me-2"><i class="fas fa-envelope"></i></a>
</li>
<!-- Social icons for mobile -->
<li class="nav-item d-lg-none">
<div class="d-flex mt-2">
<a href="https://linkedin.com/in/sujith-kumaar-kc" class="text-white me-3" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/Sujith-DA279" class="text-white me-3" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://public.tableau.com/app/profile/sujith.kumaar.k.c" class="text-white me-3" target="_blank"><i class="fas fa-chart-line"></i></a>
<a href="mailto:sujithkumaar.kc@gmail.com" class="text-white me-3"><i class="fas fa-envelope"></i></a>
</div>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Project Content Section -->
<div class="project-header">
<div class="container">
<h1 class="project-title">Quantitative Financial Analytics: Decoding Stock Returns</h1>
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item"><a href="index.html#projects">Projects</a></li>
<li class="breadcrumb-item active" aria-current="page">Vantage Data</li>
</ol>
</nav>
</div>
</div>
<div class="container-lg p-responsive mt-2 mb-5">
<div class="project-content">
<article class="markdown-body">
<h4>📋 Project Brief</h4>
<p>
This project conducted an in-depth analysis of stock market behaviour for major tech companies (Apple, Google, and NVIDIA) to identify opportunities for trading strategies around earnings announcements. Using Python, advanced statistical methods, and machine learning, our team delivered actionable insights that can drive enhanced trading decision-making by understanding the relationships between stock price movements, earnings announcements, macroeconomic conditions, and news sentiment.
</p>
<h4>🎯 Business Objectives</h4>
<p>
The analysis addressed key business needs:
</p>
<ul>
<li>Understanding stock price movements before and after earnings announcements</li>
<li>Identifying the impact of key financial metrics on stock performance</li>
<li>Analysing macroeconomic influences on earnings outcomes and stock prices</li>
<li>Determining the role of news sentiment in market reactions</li>
</ul>
<hr>
<h4>Project Overview:</h4>
<div>
<table>
<tr>
<th>⏱️ Duration</th>
<th>🏆 Grade</th>
<th>🛠️ Technologies</th>
<th>📊 Datasets</th>
</tr>
<tr>
<td><b>6 Weeks</b></td>
<td><b>80% (Distinction)</b></td>
<td>
<img src="https://img.shields.io/badge/Python-3776AB?style=for-the-badge&logo=python&logoColor=white" alt="Python">
<img src="https://img.shields.io/badge/Pandas-150458?style=for-the-badge&logo=pandas&logoColor=white" alt="Pandas">
<img src="https://img.shields.io/badge/scikit--learn-F7931E?style=for-the-badge&logo=scikit-learn&logoColor=white" alt="scikit-learn"><br>
<img src="https://img.shields.io/badge/finBERT-4169E1?style=for-the-badge&logo=python&logoColor=white" alt="NLTK">
<img src="https://img.shields.io/badge/statsmodels-4169E1?style=for-the-badge&logo=python&logoColor=white" alt="statsmodels">
</td>
<td>
<b>20+</b> years of stock data<br>
<b>5</b> macroeconomic indicators<br>
<b>1,423</b> news articles
</td>
</tr>
</table>
<div class="mt-3 d-flex align-items-center">
<span class="me-3"><b>👨💻 Project Code:</b></span>
<a href="https://github.com/Sujith-DA279/Quant_Financial_Analytics" target="_blank" class="btn btn-sm btn-primary">
<i class="fab fa-github me-1"></i>View on GitHub
</a>
</div>
</div>
<hr>
<h4>🔍 Analytical Methodology</h4>
<h5>Data Sources and Collection</h5>
<table>
<tr>
<th>Data Category</th>
<th>Source</th>
<th>Time Period</th>
<th>Key Metrics</th>
</tr>
<tr>
<td><b>Stock Price Data</b></td>
<td>Yahoo Finance API</td>
<td>2000-2024</td>
<td>OHLCV (Open, High, Low, Close, Volume)</td>
</tr>
<tr>
<td><b>Financial Metrics</b></td>
<td>Financial Modeling Prep (FMP API)</td>
<td>2000-2024</td>
<td>Earnings, Revenue, Key Financial Ratios</td>
</tr>
<tr>
<td><b>Macroeconomic Indicators</b></td>
<td>Federal Reserve Economic Data (FRED API)</td>
<td>2000-2024</td>
<td>GDP, Inflation, Unemployment, Federal Debt, Treasury Yields</td>
</tr>
<tr>
<td><b>News Sentiment</b></td>
<td>NY Times Articles (Vantage Data)</td>
<td>2019-2024</td>
<td>1,423 articles after cleanup</td>
</tr>
</table>
<div align="center">
<img src="https://github.com/user-attachments/assets/22065cf7-93c4-424f-8bd0-fd7c733a1e73" alt="Data Ingestion from Different Opensource APIs">
<p><em>Data Ingestion from Different Opensource APIs</em></p>
</div>
<h5>Feature Engineering</h5>
<p>We created 90+ derived features across the following categories:</p>
<table>
<tr>
<th>Feature Category</th>
<th>Examples</th>
</tr>
<tr>
<td><b>Stock Metrics</b></td>
<td>Daily Returns, Balance of Power (BOP), Pre/Post Announcement Returns, Price Coefficient of Variation</td>
</tr>
<tr>
<td><b>Financial Indicators</b></td>
<td>EPS Surprise, Revenue Surprise, Standardized Surprise Scores, Profit Margins, ROE, ROA</td>
</tr>
<tr>
<td><b>Macro Indicators</b></td>
<td>GDP Growth Rates (QoQ/YoY), Federal Debt Change, CPI Changes, Treasury Yield Movements</td>
</tr>
<tr>
<td><b>Temporal Features</b></td>
<td>TTM Metrics, QoQ Changes, YoY Growth Rates</td>
</tr>
<tr>
<td><b>Sentiment Scores</b></td>
<td>FinBERT Composite Scores, Company/Macro Sentiment Classification</td>
</tr>
</table>
<h5>Analysis Components</h5>
<table>
<tr>
<th>Analysis Type</th>
<th>Key Methodologies</th>
<th>Analytical Techniques</th>
<th>Outcomes</th>
</tr>
<tr>
<td><b>Earnings Event Analysis</b></td>
<td>• Event study framework<br>• Multiple return windows (1-5 days)<br>• Cross-sectional surprise analysis</td>
<td>• Winsorization of extreme values<br>• Segmentation by surprise direction<br>• Temporal decomposition (2000-2024)</td>
<td>• 2-3 day optimal reaction window<br>• ~0.3 correlation between EPS surprise and returns<br>• Surprise threshold identification</td>
</tr>
<tr>
<td><b>Macroeconomic Factor Analysis</b></td>
<td>• Correlation heatmaps<br>• Time-series decomposition<br>• Multi-factor regression<br>• Company-specific profiling</td>
<td>• Rate-of-change calculations (QoQ, YoY)<br>• Rolling window correlations<br>• Comparative macro sensitivity analysis</td>
<td>• Unique company-macro sensitivity maps<br>• Identified key indicators by company<br>• Quantified revenue vs. macro impact</td>
</tr>
<tr>
<td><b>News Sentiment Analysis</b></td>
<td>• NLP-based sentiment extraction<br>• Rule-based article classification<br>• 5-day pre/post-publication windows</td>
<td>• FinBERT financial sentiment scoring<br>• Publishing date Event-study<br>• Sentiment-return correlation analysis</td>
<td>• Company-specific sentiment responses<br>• Negative news recovery patterns<br>• Pre/post-earnings sentiment drift detection</td>
</tr>
<tr>
<td><b>Trading Strategy Development</b></td>
<td>• Signal classification (Buy/Sell/Hold)<br>• Random Forest ensemble modeling<br>• Multi-factor integration<br>• Backtesting framework</td>
<td>• Company-specific thresholds<br>• Hyperparameter optimization<br>• Feature importance ranking<br>• Performance metrics calculation</td>
<td>• 6.5-12.7% average return per trade<br>• 83-95% signal precision<br>• Realized cumulative returns >20x<br>• Feature importance hierarchies</td>
</tr>
</table>
<hr>
<h4>🗝️ Key Insights and Results</h4>
<h5>Earnings Analysis</h5>
<ul>
<li>EPS Surprise positively correlates with post-announcement returns (correlation ~0.3)</li>
<li>Market reaction to surprises strongest within 2-3 days after announcement</li>
<li>Pre-announcement momentum (BOP) shows positive correlation with post-announcement returns</li>
</ul>
<div align="center">
<img src="https://github.com/user-attachments/assets/2895f387-580a-4b58-862e-1cfa8cdfe2ac" alt="EPS Surprise vs Post announcement 2-day returns">
<p><em>EPS Surprise vs Post announcement 2-day returns</em></p>
</div>
<h5>Macroeconomic Analysis</h5>
<p>Each company showed unique macro sensitivity profiles:</p>
<table>
<tr>
<th>Company</th>
<th>Primary Macro Correlations</th>
</tr>
<tr>
<td><b>Apple</b></td>
<td>Federal Debt, Real GDP</td>
</tr>
<tr>
<td><b>Google</b></td>
<td>Real GDP, CPI, Treasury Yields</td>
</tr>
<tr>
<td><b>Nvidia</b></td>
<td>Real GDP, Treasury Yields, Unemployment</td>
</tr>
</table>
<p>Revenue growth consistently showed stronger impact on returns than macroeconomic factors for these high-growth tech companies.</p>
<div align="center">
<img src="https://github.com/user-attachments/assets/e39cf5b8-40bc-4a7e-8eeb-88b00dc79f0f" alt="Combined Correlation Heatmap">
<p><em>Combined Correlation Heatmap - Returns vs Revenue and Macro factors</em></p>
</div>
<h5>Sentiment Analysis</h5>
<p>News sentiment analysis revealed distinct patterns:</p>
<table>
<tr>
<th>Company</th>
<th>Sentiment Response Pattern</th>
</tr>
<tr>
<td><b>Apple</b></td>
<td>Recovers from negative news within 3 days; positive drift otherwise (~1% in 5 days)</td>
</tr>
<tr>
<td><b>Google</b></td>
<td>Most stable to sentiment (returns within 1% window); acts as safe-haven during macro uncertainty</td>
</tr>
<tr>
<td><b>Nvidia</b></td>
<td>Highest sentiment sensitivity (±2-3% fluctuations); strong positive reaction to macro negativity</td>
</tr>
</table>
<p>Pre-earnings sentiment shows consistent optimistic bias with post-announcement sentiment typically declining.</p>
<div align="center">
<img src="https://github.com/user-attachments/assets/e07f3ac3-7384-4015-8b07-8a0c00556073" alt="Event Study Analysis - Apple">
<p><em>Example of Event Study Analysis chart - Apple for Stock sentiment</em></p>
</div>
<div align="center">
<img src="https://github.com/user-attachments/assets/6e251f3f-b42d-4d4f-a010-e45109d17e88" alt="Sentiment and Stock-price Trend">
<p><em>Sentiment and Stock-price Trend around Earnings Announcements</em></p>
</div>
<h5>Trading Strategy Performance</h5>
<table>
<tr>
<th>Company</th>
<th>Avg. Return per Deal</th>
<th>Max Drawdown</th>
<th>Cumulative Return</th>
<th>Precision</th>
</tr>
<tr>
<td><b>AAPL</b></td>
<td>6.5%</td>
<td>-14.8%</td>
<td>>20x (51 earning announcements)</td>
<td>83.3%</td>
</tr>
<tr>
<td><b>GOOGL</b></td>
<td>8.0%</td>
<td>0.0%</td>
<td>>20x (39 earning announcements)</td>
<td>95.0%</td>
</tr>
<tr>
<td><b>NVDA</b></td>
<td>12.7%</td>
<td>-6.9%</td>
<td>~700% (39 earning announcements)</td>
<td>88.9%</td>
</tr>
</table>
<hr>
<h4>🛠️ Technical Implementation</h4>
<p>The analysis was implemented using:</p>
<ul>
<li><b>Data Processing</b>: Pandas, NumPy</li>
<li><b>Machine Learning</b>: Scikit-learn, StatsModels</li>
<li><b>ML Models</b>: RandomForest, OLS, Binary and Multinomial Logistic Regression</li>
<li><b>NLP</b>: FinBERT, TextBlob</li>
<li><b>Visualization</b>: Matplotlib, Seaborn</li>
</ul>
<hr>
<h4>📊 Recommendations</h4>
<h5>Trading Strategy Recommendations</h5>
<ol>
<li><b>Implement Stock-Specific Models</b>: Different threshold parameters for each stock (±2% for AAPL, ±5% for GOOGL/NVDA)</li>
<li><b>Focus on Key Indicators</b>:
<ul>
<li>EPS and Revenue Surprises (all stocks)</li>
<li>Pre-announcement BOP momentum</li>
<li>Company-specific financial metrics (profitability metrics for B2B stocks)</li>
</ul>
</li>
<li><b>Time-Window Optimization</b>: 2-day trading window for GOOGL/NVDA, 5-day for AAPL</li>
<li><b>Risk Management</b>: Set tighter stop-loss for NVDA due to higher volatility</li>
<li><b>Sentiment Integration</b>: Use as supplementary signal, particularly for NVDA</li>
</ol>
<h5>Technical Recommendations</h5>
<ol>
<li><b>Model Validation</b>: Implement out-of-sample testing across diverse market conditions</li>
<li><b>Ensemble Approaches</b>: Test combining multiple models for signal generation</li>
<li><b>Feature Refinement</b>: Further customize feature importance by stock</li>
<li><b>Continuous Learning</b>: Establish monitoring system to adapt to evolving market dynamics</li>
</ol>
<hr>
<h4>👥 Team</h4>
<p>Project by Insight Alchemists Team:</p>
<ul>
<li>Hemalatha Nagaraj</li>
<li>Manasa Chilakapati</li>
<li>Sagar Varma</li>
<li>Sujith Kumaar K C</li>
<li>Yuliya Pauzunova</li>
</ul>
</article>
</div>
</div>
<!-- Contact Section -->
<section id="contact" class="py-4 bg-light">
<div class="container">
<h2 class="section-title">Get In Touch</h2>
<!-- Single line text -->
<p class="mb-3">Interested in collaborating or have questions about my work? I'm always open to discussing new projects and opportunities.</p>
<!-- Buttons and social icons row -->
<div class="d-flex flex-wrap justify-content-center align-items-center gap-2">
<!-- Action buttons -->
<a href="assets/docs/Sujith_Kumaar_CV.pdf" class="btn btn-primary me-2 mb-2 action-btn" target="_blank">
<i class="fas fa-file-pdf me-1"></i> Get My CV
</a>
<a href="mailto:sujithkumaar.kc@gmail.com" class="btn custom-contact-btn me-2 mb-2 action-btn">
<i class="fas fa-envelope me-1"></i> Email Me
</a>
<!-- Social icons styled as buttons -->
<a href="https://linkedin.com/in/sujith-kumaar-kc" class="btn btn-outline-primary social-btn mb-2" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/Sujith-DA279" class="btn btn-outline-dark social-btn mb-2" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://public.tableau.com/app/profile/sujith.kumaar.k.c" class="btn btn-outline-primary social-btn mb-2" target="_blank">
<i class="fas fa-chart-line"></i>
</a>
</div>
</div>
</section>
<!-- Footer from Homepage -->
<footer class="footer">
<div class="container">
<div class="row g-4">
<div class="col-lg-6 text-center text-lg-start">
<h5 class="mb-3">Sujith Kumaar</h5>
<p class="mb-1">Analysing Data | Igniting Decisions</p>
<p class="small opacity-75">© 2025 Sujith Kumaar | All Rights Reserved</p>
</div>
<div class="col-lg-6 text-center text-lg-end">
<div class="mb-3">
<a href="https://github.com/Sujith-DA279" class="text-white mx-2" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://linkedin.com/in/sujith-kumaar-kc" class="text-white mx-2" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://public.tableau.com/app/profile/sujith.kumaar.k.c" class="text-white mx-2" target="_blank"><i class="fas fa-chart-line"></i></a>
<a href="mailto:sujithkumaar.kc@gmail.com" class="text-white mx-2"><i class="fas fa-envelope"></i></a>
</div>
<p class="small opacity-75">Made with <i class="fas fa-heart text-danger"></i> using GitHub Pages</p>
</div>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<a href="#" class="back-to-top">
<i class="fas fa-arrow-up"></i>
</a>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>