1
1
/* General Styles */
2
- body {
2
+ /* body {
3
3
font-family: Arial, sans-serif;
4
4
background-color: #0a0a2e;
5
5
font-family: 'Arial', sans-serif;
9
9
justify-content: center;
10
10
align-items: center;
11
11
height: 100vh;
12
+ } */
13
+
14
+
15
+ body {
16
+ background-color : var (--primary-color , # fff );
17
+ color : var (--secondary-color , # 111 );
18
+ transition : background-color 0.3s , color 0.3s ;
19
+ }
20
+
21
+ .dark-theme {
22
+ --primary-color : # 111112 ;
23
+ --secondary-color : # fff ;
24
+ }
25
+
26
+
27
+ # icon {
28
+ width : 19px ;
29
+ cursor : pointer;
30
+ border-color : # 06fdfd ;
31
+
12
32
}
33
+
13
34
header {
14
- background-color : # 121245 ;
35
+ background-color : rgb ( 99 , 99 , 241 ) ;
15
36
padding : 10px 20px ;
16
37
animation : fadeIn 1s ease-in-out;
17
38
}
@@ -106,7 +127,8 @@ header {
106
127
right : 0 ;
107
128
gap : 10px ;
108
129
width : 100% ;
109
- background-color : # 13034f ;
130
+ background-color : rgb (99 , 99 , 241 );
131
+ /* background-color: #13034f; */
110
132
opacity : 0 ;
111
133
visibility : hidden;
112
134
transform : translateY (-20px );
@@ -151,24 +173,74 @@ header {
151
173
filter : brightness (0 ) invert (1 );
152
174
margin-top : -5px ;
153
175
}
176
+ /* Dropdown Container */
177
+ .dropdown {
178
+ position : relative;
179
+ display : inline-block;
180
+ }
181
+
182
+ /* Dropdown Button Style */
183
+ .dropbtn {
184
+ font-size : 16px ;
185
+ color : white;
186
+ font-weight : bold;
187
+ background-color : inherit;
188
+ font-family : inherit;
189
+ border : none;
190
+ cursor : pointer;
191
+ padding : 10px 15px ;
192
+ text-decoration : none;
193
+ }
194
+
195
+ /* Dropdown Content (Hidden by Default) */
196
+ .dropdown-content {
197
+ display : none;
198
+ position : absolute;
199
+ background-color : # f0f4f8 ;
200
+ min-width : 160px ;
201
+ box-shadow : 0px 8px 16px rgba (0 , 0 , 0 , 0.2 );
202
+ z-index : 1 ;
203
+ border-radius : 5px ;
204
+ }
205
+
206
+ /* Dropdown Content Links */
207
+ .dropdown-content a {
208
+ color : black;
209
+ padding : 12px 16px ;
210
+ text-decoration : none;
211
+ display : block;
212
+ text-align : left;
213
+ }
214
+
215
+ .dropdown-content a : hover {
216
+ background-color : # 0066cc ; /* Hover effect */
217
+ color : white;
218
+ }
219
+
220
+ /* Show Dropdown on Hover */
221
+ .dropdown : hover .dropdown-content {
222
+ display : block;
223
+ }
224
+
154
225
155
226
/* Dropdown */
156
- .dropdown {
227
+ /* .dropdown {
157
228
float: left;
158
229
overflow: hidden;
159
- }
230
+ margin-right: 30px;
231
+ }
160
232
161
- .dropbtn {
233
+ .dropbtn {
162
234
font-size: 16px;
163
235
border: none;
164
236
outline: none;
165
237
color: white;
166
238
font-weight: bold;
167
- background-color : inherit;
239
+
168
240
font-family: inherit;
169
- margin : 0 ;
241
+ background-color: inherit ;
170
242
cursor: pointer;
171
- }
243
+ }
172
244
173
245
.dropdown-content {
174
246
display: none;
@@ -177,29 +249,29 @@ header {
177
249
min-width: 160px;
178
250
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
179
251
z-index: 1;
180
- }
181
-
182
- .dark-mode .dropdown-content {
252
+ }
253
+ */
254
+ /* .dark-mode .dropdown-content {
183
255
background-color: #170179;
184
- }
256
+ } */
185
257
186
- .dropdown-content a {
258
+ /* .dropdown-content a {
187
259
color: black;
188
260
padding: 12px 16px;
189
261
text-decoration: none;
190
262
display: block;
191
263
text-align: left;
192
- }
193
-
264
+ } */
265
+
194
266
/* Hover Effect for Dropdown Items */
195
- .dropdown-content a : hover {
267
+ /* .dropdown-content a:hover {
196
268
color: #0066cc;
197
- }
198
-
199
- .dropdown : hover .dropdown-content {
200
- display : block;
201
- }
269
+ } */
202
270
271
+ /* .dropdown:hover .dropdown-content {
272
+ display: inline-block;
273
+ } */
274
+
203
275
.show {
204
276
display : block;
205
277
}
@@ -257,13 +329,15 @@ header {
257
329
258
330
/* Contact Form Container */
259
331
.contact-container {
260
- background-color : # 0b065f ; /* Darker blue for form background */
332
+ background-color : rgb (99 , 99 , 241 );
333
+ /* background-color: #0b065f; Darker blue for form background */
261
334
padding : 40px ;
262
335
border-radius : 10px ;
263
336
box-shadow : 0 0 10px rgba (243 , 246 , 246 , 0.2 );
264
337
max-width : 500px ;
265
338
width : 100% ;
266
339
text-align : center;
340
+
267
341
transition : transform 0.3s ease, box-shadow 0.3s ease;
268
342
}
269
343
@@ -274,8 +348,9 @@ header {
274
348
275
349
.contact-container h2 {
276
350
margin-bottom : 20px ;
277
- font-size : 24px ;
278
- color : # ffffff ; /* White title for contrast */
351
+ color : # 0e08d3 ;
352
+ font-size : 29px ;
353
+
279
354
}
280
355
281
356
.contact-container p {
@@ -305,23 +380,25 @@ textarea {
305
380
font-size : 16px ;
306
381
width : 100% ;
307
382
box-sizing : border-box;
308
- background-color : # 110769 ; /* Darker blue text field background */
383
+ background-color : rgb (99 , 99 , 241 );
384
+
385
+ /* background-color: #110769; Darker blue text field background */
309
386
color : # ffffff ; /* White text in the fields */
310
387
transition : background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
311
388
}
312
389
313
390
input [type = "text" ]: hover ,
314
391
input [type = "email" ]: hover ,
315
392
textarea : hover {
316
- background-color : # 0d0891 ; /* Slightly lighter blue on hover */
393
+ background-color : # 0e08d3 ; /* Slightly lighter blue on hover */
317
394
border-color : # 0bc1f9 ; /* Lighter blue border on hover */
318
395
box-shadow : 0 0 5px rgba (255 , 255 , 255 , 0.5 ); /* White shadow on hover */
319
396
}
320
397
321
398
input [type = "text" ]: focus ,
322
399
input [type = "email" ]: focus ,
323
400
textarea : focus {
324
- background-color : # 0d0891 ; /* Lighter blue background when focused */
401
+
325
402
border-color : # 05d1fa ; /* Light blue border on focus */
326
403
outline : none;
327
404
box-shadow : 0 0 10px rgba (255 , 255 , 255 , 0.7 ); /* Stronger white shadow when focused */
@@ -332,7 +409,9 @@ textarea {
332
409
}
333
410
334
411
button {
335
- background-color : # 416f77 ;
412
+ background-color : # c25be1 ;
413
+ background-color : # 180de4 ;
414
+ height : 40px ;
336
415
color : white;
337
416
border : none;
338
417
border-radius : 5px ;
@@ -351,7 +430,7 @@ button:hover {
351
430
/* Back to Home Button Styles */
352
431
.back-button {
353
432
margin-top : 20px ;
354
- background-color : # 5048eb ;
433
+ background-color : # 180de4 ;
355
434
color : white;
356
435
padding : 10px 20px ;
357
436
border : none;
0 commit comments