sujalrajpoot commited on
Commit
3d9d3f5
·
verified ·
1 Parent(s): 0af44ae

Delete templates/static/styles.css

Browse files
Files changed (1) hide show
  1. templates/static/styles.css +0 -800
templates/static/styles.css DELETED
@@ -1,800 +0,0 @@
1
- /* Base styles */
2
- :root {
3
- --primary-color: #4f46e5;
4
- --primary-dark: #3730a3;
5
- --primary-light: #c7d2fe;
6
- --secondary-color: #10b981;
7
- --accent-color: #f472b6;
8
- --dark-bg: #111827;
9
- --gray-dark: #1f2937;
10
- --gray-medium: #374151;
11
- --gray-light: #6b7280;
12
- --gray-lightest: #f3f4f6;
13
- --text-dark: #111827;
14
- --text-light: #f9fafb;
15
- --text-muted: #9ca3af;
16
- --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
17
- --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
18
- --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
19
- --transition: all 0.3s ease;
20
- --border-radius: 8px;
21
- }
22
-
23
- * {
24
- margin: 0;
25
- padding: 0;
26
- box-sizing: border-box;
27
- }
28
-
29
- body {
30
- font-family: 'Poppins', sans-serif;
31
- color: var(--text-dark);
32
- background-color: #fff;
33
- overflow-x: hidden;
34
- line-height: 1.6;
35
- }
36
-
37
- h1, h2, h3, h4, h5, h6 {
38
- font-family: 'Outfit', sans-serif;
39
- font-weight: 700;
40
- line-height: 1.2;
41
- }
42
-
43
- a {
44
- text-decoration: none;
45
- color: inherit;
46
- transition: var(--transition);
47
- }
48
-
49
- ul {
50
- list-style: none;
51
- }
52
-
53
- img {
54
- max-width: 100%;
55
- height: auto;
56
- }
57
-
58
- button, .btn-primary, .btn-secondary {
59
- cursor: pointer;
60
- font-family: 'Poppins', sans-serif;
61
- font-weight: 500;
62
- border: none;
63
- border-radius: var(--border-radius);
64
- transition: var(--transition);
65
- }
66
-
67
- .btn-primary {
68
- background-color: var(--primary-color);
69
- color: white;
70
- padding: 12px 24px;
71
- box-shadow: var(--shadow-md);
72
- font-size: 16px;
73
- }
74
-
75
- .btn-primary:hover {
76
- background-color: var(--primary-dark);
77
- transform: translateY(-2px);
78
- box-shadow: var(--shadow-lg);
79
- }
80
-
81
- .btn-secondary {
82
- background-color: transparent;
83
- color: var(--primary-color);
84
- border: 2px solid var(--primary-color);
85
- padding: 10px 22px;
86
- font-size: 16px;
87
- display: flex;
88
- align-items: center;
89
- gap: 8px;
90
- }
91
-
92
- .btn-secondary:hover {
93
- background-color: var(--primary-light);
94
- color: var(--primary-dark);
95
- transform: translateY(-2px);
96
- }
97
-
98
- .gradient-text {
99
- background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
100
- -webkit-background-clip: text;
101
- background-clip: text;
102
- color: transparent;
103
- display: inline-block;
104
- }
105
-
106
- /* Loading screen */
107
- .loading-screen {
108
- position: fixed;
109
- top: 0;
110
- left: 0;
111
- width: 100%;
112
- height: 100%;
113
- background-color: var(--primary-color);
114
- display: flex;
115
- flex-direction: column;
116
- justify-content: center;
117
- align-items: center;
118
- z-index: 9999;
119
- transition: opacity 0.5s ease, visibility 0.5s;
120
- }
121
-
122
- .loader {
123
- display: flex;
124
- gap: 12px;
125
- }
126
-
127
- .circle {
128
- width: 20px;
129
- height: 20px;
130
- border-radius: 50%;
131
- background-color: white;
132
- animation: bounce 0.8s infinite alternate;
133
- }
134
-
135
- .circle:nth-child(2) {
136
- animation-delay: 0.2s;
137
- }
138
-
139
- .circle:nth-child(3) {
140
- animation-delay: 0.4s;
141
- }
142
-
143
- @keyframes bounce {
144
- 0% {
145
- transform: translateY(0);
146
- opacity: 0.5;
147
- }
148
- 100% {
149
- transform: translateY(-20px);
150
- opacity: 1;
151
- }
152
- }
153
-
154
- .loading-text {
155
- font-family: 'Outfit', sans-serif;
156
- font-size: 24px;
157
- font-weight: 700;
158
- color: white;
159
- margin-top: 24px;
160
- letter-spacing: 2px;
161
- }
162
-
163
- .hidden {
164
- opacity: 0;
165
- visibility: hidden;
166
- }
167
-
168
- /* Header & Navigation */
169
- header {
170
- position: fixed;
171
- top: 0;
172
- left: 0;
173
- width: 100%;
174
- background-color: rgba(255, 255, 255, 0.8);
175
- backdrop-filter: blur(10px);
176
- -webkit-backdrop-filter: blur(10px);
177
- box-shadow: var(--shadow-sm);
178
- z-index: 100;
179
- padding: 15px 0;
180
- transition: var(--transition);
181
- }
182
-
183
- header.scrolled {
184
- padding: 10px 0;
185
- background-color: rgba(255, 255, 255, 0.95);
186
- box-shadow: var(--shadow-md);
187
- }
188
-
189
- nav {
190
- max-width: 1200px;
191
- margin: 0 auto;
192
- display: flex;
193
- justify-content: space-between;
194
- align-items: center;
195
- padding: 0 20px;
196
- }
197
-
198
- .logo {
199
- display: flex;
200
- align-items: center;
201
- gap: 12px;
202
- }
203
-
204
- .logo img {
205
- height: 40px;
206
- width: auto;
207
- border-radius: 8px;
208
- }
209
-
210
- .logo span {
211
- font-family: 'Outfit', sans-serif;
212
- font-weight: 700;
213
- font-size: 24px;
214
- background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
215
- -webkit-background-clip: text;
216
- background-clip: text;
217
- color: transparent;
218
- }
219
-
220
- .nav-links {
221
- display: flex;
222
- align-items: center;
223
- gap: 32px;
224
- }
225
-
226
- .nav-links li a {
227
- font-weight: 500;
228
- color: var(--gray-medium);
229
- position: relative;
230
- }
231
-
232
- .nav-links li a:not(.btn-primary):after {
233
- content: '';
234
- position: absolute;
235
- width: 0;
236
- height: 2px;
237
- bottom: -4px;
238
- left: 0;
239
- background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
240
- transition: var(--transition);
241
- }
242
-
243
- .nav-links li a:not(.btn-primary):hover:after,
244
- .nav-links li a.active:after {
245
- width: 100%;
246
- }
247
-
248
- .nav-links li a:not(.btn-primary):hover {
249
- color: var(--primary-color);
250
- }
251
-
252
- .nav-links li a.active {
253
- color: var(--primary-color);
254
- font-weight: 600;
255
- }
256
-
257
- .menu-toggle {
258
- display: none;
259
- cursor: pointer;
260
- font-size: 24px;
261
- color: var(--gray-dark);
262
- }
263
-
264
- /* Hero Section */
265
- .hero {
266
- padding: 160px 20px 100px;
267
- display: flex;
268
- align-items: center;
269
- max-width: 1200px;
270
- margin: 0 auto;
271
- position: relative;
272
- overflow: hidden;
273
- }
274
-
275
- .hero-content {
276
- flex: 1;
277
- max-width: 600px;
278
- }
279
-
280
- .hero-content h1 {
281
- font-size: 48px;
282
- margin-bottom: 20px;
283
- line-height: 1.2;
284
- }
285
-
286
- .hero-content p {
287
- font-size: 18px;
288
- color: var(--gray-light);
289
- margin-bottom: 32px;
290
- }
291
-
292
- .hero-buttons {
293
- display: flex;
294
- gap: 16px;
295
- margin-bottom: 40px;
296
- }
297
-
298
- .hero-stats {
299
- display: flex;
300
- gap: 40px;
301
- }
302
-
303
- .stat {
304
- display: flex;
305
- flex-direction: column;
306
- align-items: center;
307
- }
308
-
309
- .stat-number {
310
- font-family: 'Outfit', sans-serif;
311
- font-size: 36px;
312
- font-weight: 700;
313
- background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
314
- -webkit-background-clip: text;
315
- background-clip: text;
316
- color: transparent;
317
- }
318
-
319
- .stat-label {
320
- font-size: 14px;
321
- color: var(--gray-light);
322
- }
323
-
324
- .hero-image {
325
- flex: 1;
326
- position: relative;
327
- height: 400px;
328
- display: flex;
329
- justify-content: center;
330
- align-items: center;
331
- }
332
-
333
- .shape {
334
- position: absolute;
335
- width: 300px;
336
- height: 300px;
337
- background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
338
- border-radius: 50%;
339
- filter: blur(60px);
340
- opacity: 0.2;
341
- animation: pulse 6s infinite alternate;
342
- }
343
-
344
- @keyframes pulse {
345
- 0% {
346
- transform: scale(1);
347
- opacity: 0.2;
348
- }
349
- 100% {
350
- transform: scale(1.2);
351
- opacity: 0.3;
352
- }
353
- }
354
-
355
- .hero-image img {
356
- position: relative;
357
- z-index: 1;
358
- width: 250px;
359
- height: auto;
360
- border-radius: 20px;
361
- box-shadow: var(--shadow-lg);
362
- transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
363
- transition: var(--transition);
364
- }
365
-
366
- .hero-image img:hover {
367
- transform: perspective(1000px) rotateY(0) rotateX(0);
368
- }
369
-
370
- .floating-elements {
371
- position: absolute;
372
- width: 100%;
373
- height: 100%;
374
- z-index: 0;
375
- }
376
-
377
- .floating-element {
378
- position: absolute;
379
- background-color: white;
380
- box-shadow: var(--shadow-md);
381
- border-radius: 50%;
382
- display: flex;
383
- justify-content: center;
384
- align-items: center;
385
- font-size: 20px;
386
- color: var(--primary-color);
387
- animation: float 3s infinite alternate ease-in-out;
388
- }
389
-
390
- .floating-element:nth-child(1) {
391
- top: 20%;
392
- left: 20%;
393
- width: 50px;
394
- height: 50px;
395
- animation-delay: 0s;
396
- }
397
-
398
- .floating-element:nth-child(2) {
399
- top: 70%;
400
- left: 15%;
401
- width: 40px;
402
- height: 40px;
403
- animation-delay: 0.5s;
404
- }
405
-
406
- .floating-element:nth-child(3) {
407
- top: 30%;
408
- right: 10%;
409
- width: 45px;
410
- height: 45px;
411
- animation-delay: 1s;
412
- }
413
-
414
- .floating-element:nth-child(4) {
415
- top: 60%;
416
- right: 20%;
417
- width: 35px;
418
- height: 35px;
419
- animation-delay: 1.5s;
420
- }
421
-
422
- @keyframes float {
423
- 0% {
424
- transform: translateY(0) rotate(0deg);
425
- }
426
- 100% {
427
- transform: translateY(-15px) rotate(10deg);
428
- }
429
- }
430
-
431
- /* Features Section */
432
- .features {
433
- padding: 100px 20px;
434
- max-width: 1200px;
435
- margin: 0 auto;
436
- text-align: center;
437
- }
438
-
439
- .features h2 {
440
- font-size: 36px;
441
- margin-bottom: 60px;
442
- }
443
-
444
- .features-grid {
445
- display: grid;
446
- grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
447
- gap: 30px;
448
- }
449
-
450
- .feature-card {
451
- background-color: white;
452
- border-radius: var(--border-radius);
453
- padding: 30px;
454
- box-shadow: var(--shadow-md);
455
- transition: var(--transition);
456
- text-align: center;
457
- }
458
-
459
- .feature-card:hover {
460
- transform: translateY(-10px);
461
- box-shadow: var(--shadow-lg);
462
- }
463
-
464
- .feature-icon {
465
- margin-bottom: 20px;
466
- font-size: 32px;
467
- color: var(--primary-color);
468
- display: inline-flex;
469
- justify-content: center;
470
- align-items: center;
471
- width: 80px;
472
- height: 80px;
473
- background-color: var(--primary-light);
474
- border-radius: 50%;
475
- transition: var(--transition);
476
- }
477
-
478
- .feature-card:hover .feature-icon {
479
- background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
480
- color: white;
481
- transform: scale(1.1);
482
- }
483
-
484
- .feature-card h3 {
485
- font-size: 22px;
486
- margin-bottom: 15px;
487
- }
488
-
489
- .feature-card p {
490
- color: var(--gray-light);
491
- font-size: 16px;
492
- }
493
-
494
- /* CTA Section */
495
- .cta {
496
- background-color: var(--gray-lightest);
497
- padding: 100px 20px;
498
- position: relative;
499
- overflow: hidden;
500
- }
501
-
502
- .cta-content {
503
- max-width: 800px;
504
- margin: 0 auto;
505
- text-align: center;
506
- position: relative;
507
- z-index: 2;
508
- }
509
-
510
- .cta-content h2 {
511
- font-size: 36px;
512
- margin-bottom: 20px;
513
- }
514
-
515
- .cta-content p {
516
- font-size: 18px;
517
- color: var(--gray-light);
518
- margin-bottom: 32px;
519
- max-width: 600px;
520
- margin-left: auto;
521
- margin-right: auto;
522
- }
523
-
524
- .cta-shapes .shape {
525
- position: absolute;
526
- border-radius: 50%;
527
- filter: blur(40px);
528
- }
529
-
530
- .cta-shapes .shape-1 {
531
- width: 200px;
532
- height: 200px;
533
- background-color: rgba(79, 70, 229, 0.1);
534
- top: -50px;
535
- left: 10%;
536
- animation: moveShape 10s infinite alternate;
537
- }
538
-
539
- .cta-shapes .shape-2 {
540
- width: 250px;
541
- height: 250px;
542
- background-color: rgba(244, 114, 182, 0.1);
543
- bottom: -100px;
544
- right: 10%;
545
- animation: moveShape 12s infinite alternate;
546
- }
547
-
548
- .cta-shapes .shape-3 {
549
- width: 150px;
550
- height: 150px;
551
- background-color: rgba(16, 185, 129, 0.1);
552
- top: 50%;
553
- left: 50%;
554
- transform: translate(-50%, -50%);
555
- animation: moveShape 8s infinite alternate;
556
- }
557
-
558
- @keyframes moveShape {
559
- 0% {
560
- transform: translate(0, 0);
561
- }
562
- 100% {
563
- transform: translate(30px, 20px);
564
- }
565
- }
566
-
567
- /* Footer */
568
- footer {
569
- background-color: var(--dark-bg);
570
- color: var(--text-light);
571
- padding: 60px 20px 30px;
572
- }
573
-
574
- .footer-content {
575
- max-width: 1200px;
576
- margin: 0 auto;
577
- display: grid;
578
- grid-template-columns: 1.5fr 3fr 2fr;
579
- gap: 40px;
580
- padding-bottom: 40px;
581
- border-bottom: 1px solid var(--gray-medium);
582
- }
583
-
584
- .footer-logo {
585
- display: flex;
586
- align-items: center;
587
- gap: 12px;
588
- margin-bottom: 20px;
589
- }
590
-
591
- .footer-logo img {
592
- height: 40px;
593
- width: auto;
594
- border-radius: 8px;
595
- }
596
-
597
- .footer-logo span {
598
- font-family: 'Outfit', sans-serif;
599
- font-weight: 700;
600
- font-size: 20px;
601
- color: white;
602
- }
603
-
604
- .footer-links {
605
- display: grid;
606
- grid-template-columns: repeat(3, 1fr);
607
- gap: 20px;
608
- }
609
-
610
- .footer-links-column h4 {
611
- font-size: 18px;
612
- margin-bottom: 20px;
613
- color: white;
614
- }
615
-
616
- .footer-links-column ul li {
617
- margin-bottom: 12px;
618
- }
619
-
620
- .footer-links-column ul li a {
621
- color: var(--text-muted);
622
- font-size: 14px;
623
- }
624
-
625
- .footer-links-column ul li a:hover {
626
- color: white;
627
- }
628
-
629
- .footer-social h4 {
630
- font-size: 18px;
631
- margin-bottom: 20px;
632
- color: white;
633
- }
634
-
635
- .social-icons {
636
- display: flex;
637
- gap: 16px;
638
- margin-bottom: 24px;
639
- }
640
-
641
- .social-icons a {
642
- display: flex;
643
- justify-content: center;
644
- align-items: center;
645
- width: 40px;
646
- height: 40px;
647
- background-color: var(--gray-medium);
648
- border-radius: 50%;
649
- color: white;
650
- transition: var(--transition);
651
- }
652
-
653
- .social-icons a:hover {
654
- background-color: var(--primary-color);
655
- transform: translateY(-5px);
656
- }
657
-
658
- .newsletter {
659
- display: flex;
660
- max-width: 100%;
661
- }
662
-
663
- .newsletter input {
664
- flex: 1;
665
- border: none;
666
- background-color: var(--gray-medium);
667
- color: white;
668
- padding: 12px 16px;
669
- border-radius: var(--border-radius) 0 0 var(--border-radius);
670
- outline: none;
671
- font-family: 'Poppins', sans-serif;
672
- }
673
-
674
- .newsletter input::placeholder {
675
- color: var(--text-muted);
676
- }
677
-
678
- .newsletter button {
679
- border-radius: 0 var(--border-radius) var(--border-radius) 0;
680
- padding: 12px 16px;
681
- white-space: nowrap;
682
- }
683
-
684
- .footer-bottom {
685
- max-width: 1200px;
686
- margin: 0 auto;
687
- padding-top: 30px;
688
- display: flex;
689
- justify-content: space-between;
690
- align-items: center;
691
- font-size: 14px;
692
- color: var(--text-muted);
693
- }
694
-
695
- .footer-bottom-links {
696
- display: flex;
697
- gap: 24px;
698
- }
699
-
700
- .footer-bottom-links a:hover {
701
- color: white;
702
- }
703
-
704
- /* Responsive */
705
- @media (max-width: 1024px) {
706
- .hero {
707
- flex-direction: column;
708
- gap: 60px;
709
- text-align: center;
710
- }
711
-
712
- .hero-content {
713
- max-width: 100%;
714
- }
715
-
716
- .hero-buttons {
717
- justify-content: center;
718
- }
719
-
720
- .hero-stats {
721
- justify-content: center;
722
- }
723
-
724
- .footer-content {
725
- grid-template-columns: 1fr;
726
- gap: 40px;
727
- }
728
-
729
- .footer-links {
730
- grid-template-columns: repeat(3, 1fr);
731
- }
732
- }
733
-
734
- @media (max-width: 768px) {
735
- .menu-toggle {
736
- display: block;
737
- }
738
-
739
- .nav-links {
740
- position: fixed;
741
- top: 70px;
742
- left: 0;
743
- right: 0;
744
- background-color: white;
745
- flex-direction: column;
746
- padding: 20px;
747
- gap: 20px;
748
- box-shadow: var(--shadow-md);
749
- transform: translateY(-150%);
750
- transition: var(--transition);
751
- z-index: 99;
752
- }
753
-
754
- .nav-links.active {
755
- transform: translateY(0);
756
- }
757
-
758
- .hero-content h1 {
759
- font-size: 36px;
760
- }
761
-
762
- .features-grid {
763
- grid-template-columns: 1fr;
764
- }
765
-
766
- .footer-links {
767
- grid-template-columns: 1fr;
768
- }
769
-
770
- .footer-bottom {
771
- flex-direction: column;
772
- gap: 20px;
773
- text-align: center;
774
- }
775
- }
776
-
777
- @media (max-width: 480px) {
778
- .hero-buttons {
779
- flex-direction: column;
780
- width: 100%;
781
- }
782
-
783
- .hero-stats {
784
- flex-direction: column;
785
- gap: 20px;
786
- }
787
-
788
- .hero-content h1 {
789
- font-size: 30px;
790
- }
791
-
792
- .cta-content h2 {
793
- font-size: 28px;
794
- }
795
-
796
- .footer-bottom-links {
797
- flex-direction: column;
798
- gap: 10px;
799
- }
800
- }