File size: 8,997 Bytes
3dfedf2
 
 
 
 
c17f647
 
3dfedf2
 
c17f647
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3dfedf2
c17f647
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3dfedf2
c17f647
 
 
 
 
 
3dfedf2
c17f647
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3dfedf2
 
 
c17f647
3dfedf2
 
 
c17f647
3dfedf2
c17f647
3dfedf2
 
c17f647
3dfedf2
 
 
 
 
 
c17f647
 
 
 
 
 
 
3dfedf2
c17f647
 
3dfedf2
 
c17f647
 
 
3dfedf2
c17f647
 
3dfedf2
 
c17f647
 
 
3dfedf2
c17f647
 
3dfedf2
c17f647
 
 
 
3dfedf2
c17f647
 
3dfedf2
c17f647
3dfedf2
c17f647
 
 
 
 
3dfedf2
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Aditya Singh Gaur - Portfolio</title>
    <!-- Load Font Awesome for icons -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        :root {
            --primary: #6c63ff;
            --secondary: #4a44b5;
            --dark: #2a2a4a;
            --light: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: var(--light);
            min-height: 100vh;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(108, 99, 255, 0.2), transparent 70%);
            pointer-events: none;
        }
        
        .flex {
            display: flex;
        }
        
        .flex-col {
            flex-direction: column;
        }
        
        .md\:flex-row {
            flex-direction: column;
        }
        
        .items-center {
            align-items: center;
        }
        
        .justify-between {
            justify-content: space-between;
        }
        
        .mb-8 {
            margin-bottom: 2rem;
        }
        
        .md\:mb-0 {
            margin-bottom: 0;
        }
        
        .text-4xl {
            font-size: 2.25rem;
        }
        
        .md\:text-5xl {
            font-size: 3rem;
        }
        
        .font-bold {
            font-weight: 700;
        }
        
        .mb-2 {
            margin-bottom: 0.5rem;
        }
        
        .text-xl {
            font-size: 1.25rem;
        }
        
        .md\:text-2xl {
            font-size: 1.5rem;
        }
        
        .opacity-90 {
            opacity: 0.9;
        }
        
        .space-x-4 > * + * {
            margin-left: 1rem;
        }
        
        .bg-white {
            background-color: white;
        }
        
        .text-purple-700 {
            color: #6c63ff;
        }
        
        .p-3 {
            padding: 0.75rem;
        }
        
        .rounded-full {
            border-radius: 9999px;
        }
        
        .hover\:bg-purple-100:hover {
            background-color: #e0d7ff;
        }
        
        .transition {
            transition: all 0.3s ease;
        }
        
        .text-2xl {
            font-size: 1.5rem;
        }
        
        .text-blue-600 {
            color: #2563eb;
        }
        
        .hover\:bg-blue-100:hover {
            background-color: #dbeafe;
        }
        
        .text-red-500 {
            color: #ef4444;
        }
        
        .hover\:bg-red-100:hover {
            background-color: #fee2e2;
        }
        
        /* Content section */
        .content {
            padding: 60px 0;
            background-color: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            margin: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding: 0 40px;
        }
        
        .skill-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .skill-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .skill-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .skill-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .skill-desc {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }
        
        @media (min-width: 768px) {
            .md\:flex-row {
                flex-direction: row;
            }
        }
        
        /* Animation for header text */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animated {
            animation: fadeInUp 1s ease-out forwards;
        }
        
        .delay-1 {
            animation-delay: 0.2s;
        }
        
        .delay-2 {
            animation-delay: 0.4s;
        }
        
        .delay-3 {
            animation-delay: 0.6s;
        }
        
        /* Footer */
        footer {
            text-align: center;
            padding: 30px 0;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
    </style>
</head>
<body>
    <header class="gradient-bg text-white py-12">
        <div class="container mx-auto px-4">
            <div class="flex flex-col md:flex-row items-center justify-between">
                <div class="mb-8 md:mb-0 animated">
                    <h1 class="text-4xl md:text-5xl font-bold mb-2">Aditya Singh Gaur</h1>
                    <p class="text-xl md:text-2xl opacity-90 delay-1 animated">AI/ML Engineer & Generative AI Specialist</p>
                </div>
                <div class="flex space-x-4">
                        <a href="mailto:[email protected]" class="bg-white text-red-500 p-3 rounded-full hover:bg-red-100 transition delay-2 animated">
                        <i class="fas fa-envelope text-2xl"></i>
                    </a>
                </div>
            </div>
        </div>
    </header>
    
    <main class="content">
        <h2 class="section-title">My Skills</h2>
        <div class="skills-container">
            <div class="skill-card">
                <div class="skill-icon">
                    <i class="fas fa-brain"></i>
                </div>
                <h3 class="skill-title">Machine Learning</h3>
                <p class="skill-desc">Building predictive models and implementing ML algorithms for real-world applications.</p>
            </div>
            
            <div class="skill-card">
                <div class="skill-icon">
                    <i class="fas fa-robot"></i>
                </div>
                <h3 class="skill-title">Generative AI</h3>
                <p class="skill-desc">Creating innovative solutions with GANs, transformers, and other generative models.</p>
            </div>
            
            <div class="skill-card">
                <div class="skill-icon">
                    <i class="fas fa-chart-line"></i>
                </div>
                <h3 class="skill-title">Data Science</h3>
                <p class="skill-desc">Extracting insights from complex datasets and creating visualizations.</p>
            </div>
            
            <div class="skill-card">
                <div class="skill-icon">
                    <i class="fas fa-code"></i>
                </div>
                <h3 class="skill-title">Deep Learning</h3>
                <p class="skill-desc">Developing neural network architectures for computer vision and NLP tasks.</p>
            </div>
        </div>
    </main>
    
    <footer>
        <div class="container">
            <p>© 2023 Aditya Singh Gaur. All rights reserved.</p>
            <p class="mt-2">Designed with ❤️ and AI</p>
        </div>
    </footer>
</body>
</html>