-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
301 lines (290 loc) · 6.49 KB
/
Style.css
File metadata and controls
301 lines (290 loc) · 6.49 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
/* Reset and Base Styling */
* {
box-sizing: border-box;
margin: 0; padding: 0;
scroll-behavior: smooth;
font-smooth: true;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Apply body styles and font */
body, html {
height: 100%; width: 100%;
font-family: 'Poppins', 'Outfit', sans-serif;
background: linear-gradient(130deg, #f0f9ff, #e0f0f8);
color: #222;
overflow-x: hidden;
}
/* Container & Layout */
.main-container {
max-width: 1280px;
margin: 40px auto;
padding: 70px 80px;
background: rgba(255,255,255,0.94);
border-radius: 24px;
box-shadow: 0 16px 60px rgba(0,0,0,0.1);
border: 1px solid rgba(0,0,0,0.05);
transition: all 0.4s ease;
}
.main-container:hover {
box-shadow: 0 20px 70px rgba(0,0,0,0.18);
transform: translateY(-3px);
}
/* Header with Logo & Profile */
header {
text-align: center;
margin-bottom: 60px;
position: relative;
}
.logo-container {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 22px;
overflow: hidden;
border-radius: 50%;
width: 220px;
height: 220px;
border: 4px solid #058cf5;
box-shadow: 0 12px 36px rgba(0, 90, 150, 0.2);
background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
transition: all 0.4s ease;
}
.logo-container:hover {
transform: scale(1.05) rotate(4deg) skewY(2deg);
box-shadow: 0 14px 46px rgba(0, 80, 130, 0.3);
}
.logo-container img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
}
.header-title {
font-size: 3rem;
font-family: 'Outfit', sans-serif;
font-weight: 900;
letter-spacing: 2px;
color: #055a8f;
text-shadow: 1px 1px 4px #9fc1d6;
margin-top: 15px;
text-transform: uppercase;
}
.header-subtitle {
font-size: 1.3rem;
color: #357a9e;
letter-spacing: 0.9px;
margin-top: 6px;
font-weight: 600;
}
/* Navigation Menu with Hover Effects */
nav {
margin-top: 34px;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}
nav a,
.nav-btn {
position: relative;
padding: 10px 22px;
border-radius: 50px;
font-weight: 700;
font-size: 1.15rem;
color: #058cf5;
border: 2px solid #058cf5;
background: transparent;
cursor: pointer;
transition: all 0.3s ease, box-shadow 0.25s linear;
text-decoration: none;
overflow: hidden;
box-shadow: inset 0 0 0 2px #058cf5;
}
nav a:hover,
.nav-btn:hover {
background-color: #e0f7fa;
color: #045a7d;
box-shadow: 0 12px 36px rgba(0, 85, 137, 0.24);
}
nav a::after,
.nav-btn::after {
content: '';
position: absolute;
height: 2px;
width: 0%;
bottom: 0;
left: 50%;
background-color: #045a7d;
transition: all 0.4s ease;
border-radius: 2px;
}
nav a:hover::after,
.nav-btn:hover::after {
width: 100%;
left: 0;
}
/* Download Button with Hover Effects */
.download-btn {
background-color: #058cf5;
color: #fff;
padding: 12px 25px;
font-size: 1.17rem;
border-radius: 50px;
box-shadow: 0 8px 24px rgba(5, 140, 245, 0.4);
transition: all 0.3s ease;
}
.download-btn:hover {
background-color: #045f9e;
box-shadow: 0 10px 28px rgba(4, 95, 158, 0.5);
}
/* Sections & Headers */
section {
margin-bottom: 62px;
}
h2 {
font-size: 1.6rem;
color: #055a8f;
border-left: 6px solid #058cf5;
padding-left: 18px;
margin-bottom: 30px;
font-family: 'Outfit', sans-serif;
font-weight: 800;
letter-spacing: 1px;
position: relative;
}
h2::after {
content: "";
display: block;
width: 100px;
height: 3px;
background-color: #058cf5;
position: absolute;
bottom: -8px;
left: 0;
border-radius: 2px;
}
/* Glass Block Styles for Content */
.glass-block {
background: rgba(245, 249, 255, 0.88);
border-radius: 30px;
box-shadow: 0 16px 60px rgba(0, 0, 0, 0.1);
padding: 40px;
backdrop-filter: blur(20px);
border: 1px solid rgba(5, 140, 245, 0.2);
transition: all 0.4s ease;
}
.glass-block:hover {
background: rgba(245, 249, 255, 1);
}
/* Grid for Skills, Projects, Certifications */
.skills-grid,
.projects-list,
.cert-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
gap: 30px;
}
/* Card Designs & Hover Effects */
.skill-card,
.project-card,
.cert-card {
background: rgba(255, 255, 255, 0.99);
border-radius: 22px;
box-shadow: 0 14px 42px rgba(0, 0, 0, 0.1);
padding: 30px;
transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
cursor: pointer;
position: relative;
}
.skill-card:hover,
.project-card:hover,
.cert-card:hover {
transform: scale(1.07) translateY(-10px);
box-shadow: 0 20px 70px rgba(0, 80, 120, 0.2);
z-index: 9;
border: 2px solid #058cf5;
}
.skill-title,
.project-title {
font-weight: 900;
font-size: 1.25rem;
color: #055a8f;
margin-bottom: 16px;
display: flex;
align-items: center;
gap: 12px;
}
.skill-title i,
.project-title i {
font-size: 1.55rem;
color: #045f9e;
transition: transform 0.4s ease;
}
.skill-title i:hover,
.project-title i:hover {
transform: rotate(15deg) scale(1.2);
}
.cert-title {
font-weight: 700;
font-size: 1.15rem;
color: #2179b8;
margin-bottom: 12px;
}
.cert-img {
width: 100%;
border-radius: 15px;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
cursor: pointer;
}
.cert-img:hover {
transform: scale(1.12) rotate(2deg);
}
/* AI & Tech Icons Animations (specific) */
.ai-icon {
font-size: 3rem;
animation: spinAi 6s linear infinite;
color: #45d6b2;
margin-right: 15px;
}
@keyframes spinAi {
from {transform: rotate(0deg);}
to {transform: rotate(360deg);}
}
/* Contact Section */
.contact-block {
background: rgba(245, 250, 255, 0.9);
border-radius: 28px;
padding: 35px;
box-shadow: 0 16px 65px rgba(10, 60, 100, 0.2);
display: flex;
flex-direction: column;
gap: 20px;
}
.contact-link {
font-size: 1.17rem;
font-weight: 600;
display: flex;
align-items: center;
gap: 12px;
color: #055a8f;
text-decoration: none;
transition: all 0.3s ease;
}
.contact-link:hover {
color: #003c58;
text-shadow: 0 0 4px #003c58aa;
text-decoration: underline;
}
/* Responsiveness and Small Devices */
@media(max-width: 1024px){
body { font-size: 15px;}
.main-container { padding: 50px 28px;}
}
@media(max-width: 661px){
.skills-grid,
.projects-list,
.cert-list { grid-template-columns: 1fr; gap: 20px; }
header { padding: 0 20px; }
}