-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
1191 lines (1003 loc) · 19.9 KB
/
Copy pathmain.css
File metadata and controls
1191 lines (1003 loc) · 19.9 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
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* ===========================
GLOBAL STYLES & RESET
=========================== */
/* Reset default browser styles */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
/* Base body styles - font, background, and text color */
body {
font-family: Arial, sans-serif;
background-color: #fff;
color: #333;
}
/* ===========================
NAVBAR STYLES
=========================== */
/* Navbar */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 5%;
background-color: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
/* Logo styling with brand color */
.logo {
font-size: 24px;
font-weight: bold;
}
/* Logo accent color - highlighted part */
.logo span {
color: #007bff;
}
/* Navigation links container */
.nav-links {
display: flex;
align-items: center;
gap: 20px;
}
/* Individual navigation link styling */
.nav-links a {
text-decoration: none;
color: #333;
font-size: 16px;
}
/* Navigation link hover effect */
.nav-links a:hover {
color: #007bff;
}
/* Search icon styling */
.search-icon {
font-size: 16px;
cursor: pointer;
padding: 8px;
background: #f0f0f0;
border-radius: 50%;
}
/* Primary button styling */
.btn {
padding: 10px 18px;
background-color: #007bff;
color: white;
border: none;
font-weight: 600;
border-radius: 12px;
font-size: 14px;
}
.btn:hover {
color: white;
background-color: black;
cursor: pointer;
transform: scale(1.02);
transition: ease-in-out 0.3s;
}
/* ===========================
HERO SECTION
=========================== */
/* Hero Section */
.hero {
display: flex;
justify-content: space-between;
align-items: center;
padding: 60px 5%;
flex-wrap: wrap;
}
/* Hero text container */
.hero-text {
max-width: 500px;
}
/* Main heading in hero section */
.hero-text h1 {
font-size: 40px;
color: #007bff;
margin-bottom: 20px;
}
/* Paragraph text in hero section */
.hero-text p {
font-size: 16px;
margin-bottom: 30px;
color: #666;
}
/* Hero button styling */
.hero-text .btn {
font-size: 16px;
}
/* Hero image container */
.hero-image {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}
/* Hero image styling */
.hero-image img {
width: 800px;
height: 200;
border-radius: 12px;
box-shadow: 0 2px 8px #979797;
}
.hero-image img:hover {
transform: rotate(-6deg);
transition: ease-in-out 0.5s;
cursor: pointer;
}
/* ===========================
TRUSTED COMPANIES SECTION
=========================== */
/* Trusted Companies Section */
.flex-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
background-color: #f5fbff;
padding: 30px 10px;
}
/* Section heading for companies */
.flex-container h6 {
width: 100%;
text-align: center;
font-size: 15px;
margin-bottom: 5px;
color: skyblue;
}
/* Individual company items */
.flex-container>div {
background-color: #f5fbff;
width: 100px;
margin: 10px;
text-align: center;
line-height: 75px;
font-size: 20px;
}
/* ===========================
RESPONSIVE DESIGN - MOBILE
=========================== */
@media (max-width: 768px) {
/* Stack hero items vertically on mobile */
.hero {
flex-direction: column-reverse;
text-align: center;
}
/* Wrap navigation links on smaller screens */
.nav-links {
flex-wrap: wrap;
}
}
/* ===========================
CONTENT SECTIONS & LAYOUT
=========================== */
/* Body reset for content area */
body {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
/* Background and typography for main content */
body {
background-color: #f4faff;
color: #333;
line-height: 1.6;
}
/* Main container with max-width */
.container {
max-width: 1200px;
margin: auto;
padding: 40px 20px;
}
/* Section layout for alternating content */
.section {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 40px;
margin-bottom: 60px;
}
/* Reverse order for alternating layouts */
.section.reverse {
flex-direction: row-reverse;
}
/* Text content container */
.text {
flex: 1;
min-width: 280px;
}
/* Subheading text styling */
.text h2 {
color: #007bff;
font-size: 14px;
text-transform: uppercase;
margin-bottom: 10px;
}
/* Section heading */
.text h1 {
font-size: 28px;
color: #000;
margin-bottom: 20px;
}
/* Paragraph spacing */
.text p {
margin-bottom: 20px;
}
/* Button styling for text sections */
.btn {
background-color: #007bff;
color: #fff;
padding: 12px 24px;
border: none;
border-radius: 12px;
font-weight: 600;
text-decoration: none;
}
/* Image container */
.image {
flex: 1;
min-width: 280px;
}
/* Section image styling */
.image img {
width: 100%;
border-radius: 10px;
}
.image img:hover {
transform: scale(1.01);
transition: 0.3s;
}
/* Stats container for displaying metrics */
.stats {
display: flex;
gap: 20px;
margin-top: 20px;
flex-wrap: wrap;
}
/* Individual stat card styling */
.stat {
background-color: #fff;
padding: 15px 25px;
border-radius: 8px;
text-align: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
flex: 1;
min-width: 100px;
}
/* Stat number styling */
.stat h3 {
color: #007bff;
font-size: 24px;
margin-bottom: 5px;
}
/* Stat label text */
.stat p {
font-size: 14px;
}
/* Mobile responsive - stack sections vertically */
@media (max-width: 768px) {
.section {
flex-direction: column;
}
.section.reverse {
flex-direction: column;
background-color: #eaf6ff !important;
padding: 20px 3% !important;
border-radius: 10px !important;
}
}
/* ===========================
TEAM SECTION
=========================== */
/* Reset body styles for team section */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f9f9f9;
}
/* Team section container */
.team-section {
text-align: center;
padding: 50px 20px;
}
/* Team section subheading */
.subheading {
color: #48a9f8;
font-size: 14px;
letter-spacing: 1px;
}
/* Team section main heading */
.heading {
font-size: 32px;
margin: 10px 0 40px;
}
/* Highlighted text in heading */
.highlight {
color: #007bff;
text-decoration: underline;
}
/* Team members container - flex layout */
.team-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
}
/* Individual team member card */
.team-member {
background: white;
border-radius: 10px;
padding: 20px;
width: 250px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.team-member:hover {
cursor: pointer;
transform: translateY(-8px);
transition: 0.3s;
box-shadow: 0 4px 10px #555;
}
/* Team member image */
.team-member img {
width: 100%;
border-radius: 10px;
height: 250px;
object-fit: cover;
}
/* Team member name */
.team-member h3 {
margin: 15px 0 5px;
font-size: 20px;
}
/* Team member role/title */
.role {
color: #00b894;
font-weight: bold;
margin-bottom: 10px;
}
/* Social media icons container */
.social-icons {
margin-top: 15px;
}
/* Social media icon styling */
.social-icons a {
color: white;
background: #007bff;
padding: 8px;
margin: 0 5px;
border-radius: 50%;
display: inline-block;
transition: 0.3s;
}
.social-icons a:hover {
transform: translateY(-8px);
transition: ease-in-out 0.3s;
}
/* Instagram icon color */
.social-icons a:nth-child(2) {
background: #e1306c;
}
/* Twitter icon color */
.social-icons a:nth-child(3) {
background: #1da1f2;
}
/* Social icon hover effect */
.social-icons a:hover {
opacity: 0.8;
}
/* ===========================
WHY WORK WITH US SECTION
=========================== */
/* Section heading */
h2 {
text-align: center;
margin: 30px 0;
font-size: 28px;
}
/* Cards container for features */
.cards {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
padding: 0 20px;
}
/* Individual card styling */
.card {
background-color: white;
border-radius: 10px;
padding: 20px;
width: 300px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
/* Card hover animation */
.card:hover {
transform: translateY(-5px);
}
/* Tag styling for card labels */
.tag {
display: inline-block;
font-size: 12px;
font-weight: bold;
padding: 5px 10px;
border-radius: 50px;
margin-bottom: 10px;
color: white;
}
/* Tag color variants */
.purple {
background-color: #6c63ff;
}
.red {
background-color: #ff4c4c;
}
.green {
background-color: #00b894;
}
/* Card heading */
.card h3 {
margin: 10px 0;
}
/* Card paragraph text */
.card p {
font-size: 14px;
color: #555;
}
/* ===========================
PROJECT PROMPT SECTION
=========================== */
/* Call-to-action section */
.project-prompt {
background-color: #007bff;
color: white;
padding: 40px 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
margin: 40px 0;
width: 100%;
gap: 30px;
}
/* Prompt text container */
.prompt-text {
width: 100%;
max-width: 600px;
}
/* Prompt button container */
.prompt-button {
width: 100%;
text-align: center;
}
/* Prompt button styling */
.prompt-button button {
padding: 12px 25px;
background-color: white;
color: #007bff;
border: none;
border-radius: 25px;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
display: inline-block;
}
/* Prompt button hover effect */
.prompt-button button:hover {
background-color: black;
color: white;
transform: scale(1.01);
transition: ease-in-out 0.3s;
}
/* ===========================
FOOTER SECTION
=========================== */
/* Footer container */
footer {
background-color: #f3f9ff;
padding: 40px 60px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
font-size: 14px;
}
/* Footer column styling */
.footer-column {
flex: 1;
min-width: 220px;
margin: 20px 0;
}
/* Footer column heading */
.footer-column h4 {
font-size: 16px;
margin-bottom: 10px;
}
/* Footer list styling */
.footer-column ul {
list-style: none;
padding: 0;
}
/* Footer list items */
.footer-column ul li {
margin-bottom: 10px;
}
.footer-column ul li:hover {
color: #1da1f2;
cursor: pointer;
}
/* Footer social icons */
.social-icons a {
margin-right: 10px;
font-size: 16px;
color: #333;
background: #fff;
padding: 8px;
border-radius: 5px;
display: inline-block;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Newsletter email input */
.newsletter input[type="email"] {
padding: 10px;
width: 90%;
max-width: 250px;
border: none;
border-radius: 5px;
background-color: #333;
color: #fff;
margin-bottom: 10px;
}
/* Newsletter subscribe button */
.newsletter button {
background-color: #009aff;
color: white;
font-weight: 600;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.newsletter button:hover {
transform: scale(1.01);
transition: ease-in-out 0.3s;
background-color: black;
color: white;
}
/* ===========================
RESPONSIVE DESIGN - TABLETS & MOBILE
=========================== */
/* Tablets and below */
@media (max-width: 768px) {
/* Navbar adjustments */
.navbar {
flex-wrap: wrap;
padding: 15px 5%;
}
/* Adjust hero text */
.hero {
flex-direction: column-reverse;
text-align: center;
padding: 40px 5%;
}
.hero-text h1 {
font-size: 32px;
}
.hero-text p {
font-size: 15px;
}
/* Hero image responsive */
.hero-image img {
width: 100%;
max-width: 500px;
height: auto;
}
.hero-image img:hover {
transform: rotate(0deg);
}
/* Container adjustments */
.container {
padding: 30px 15px;
}
/* Section adjustments */
.section {
gap: 20px;
margin-bottom: 40px;
}
.section.reverse {
background-color: #eaf6ff !important;
padding: 30px 15px !important;
}
.text .btn,
.image img {
width: 100%;
}
/* Nav link wrap */
.nav-links {
flex-wrap: wrap;
gap: 15px;
}
/* Team member cards */
.team-member {
width: 200px;
}
/* Cards responsive */
.card {
width: 280px;
}
/* Project prompt stacking */
.project-prompt {
flex-direction: column;
text-align: center;
gap: 20px;
margin: 30px auto;
padding: 30px 15px;
}
.prompt-button {
text-align: center;
width: 100%;
}
/* Footer adjustments */
footer {
padding: 30px 20px;
gap: 15px;
}
.footer-column {
margin: 10px 0;
}
}
/* Small phones (480px and below) */
@media (max-width: 480px) {
/* Navbar for small screens */
.navbar {
padding: 12px 3%;
flex-direction: column;
gap: 12px;
}
.logo {
font-size: 18px;
width: 100%;
text-align: center;
}
.nav-links {
gap: 8px;
width: 100%;
justify-content: center;
flex-wrap: wrap;
font-size: 14px;
}
.nav-links a {
font-size: 13px;
}
.search-icon {
font-size: 14px;
padding: 6px;
}
.btn {
padding: 8px 15px;
font-size: 12px;
}
.btn:hover {
transform: scale(1);
}
/* Hero section for mobile */
.hero {
padding: 30px 3%;
gap: 20px;
}
.hero-text {
max-width: 100%;
}
.hero-text h1 {
font-size: 26px;
margin-bottom: 15px;
}
.hero-text p {
font-size: 14px;
margin-bottom: 15px;
}
.hero-text .btn {
font-size: 14px;
width: 100%;
}
/* Hero image */
.hero-image {
width: 100%;
}
.hero-image img {
width: 100%;
max-width: 100%;
height: auto;
box-shadow: 0 2px 6px #979797;
}
.hero-image img:hover {
transform: rotate(0deg);
}
/* Trusted companies */
.flex-container {
padding: 20px 3%;
}
.flex-container h6 {
font-size: 13px;
margin-bottom: 15px;
}
.flex-container>div {
width: 75px;
margin: 8px;
line-height: 50px;
font-size: 11px;
}
/* Container */
.container {
max-width: 100%;
padding: 20px 3%;
margin: auto;
}
/* Section layout */
.section {
flex-direction: column;
gap: 15px;
margin-bottom: 30px;
}
.section.reverse {
flex-direction: column;
background-color: #eaf6ff !important;
padding: 20px 3% !important;
border-radius: 10px !important;
}
.text {
min-width: 100%;
}
.text h2 {
font-size: 12px;
}
.text h1 {
font-size: 22px;
margin-bottom: 12px;
}
.text p {
font-size: 14px;
margin-bottom: 15px;
}
.text .btn {
width: 100%;
padding: 10px 15px;
font-size: 14px;
}
.text .btn:hover {
transform: scale(1);
}
.image {
min-width: 100%;
width: 100%;
}
.image img {
width: 100%;
height: auto;
border-radius: 8px;
}
.image img:hover {
transform: scale(1);
}
/* Stats */
.stats {
gap: 10px;
margin-top: 15px;
flex-wrap: wrap;
}
.stat {
padding: 12px 15px;
min-width: calc(50% - 5px);
flex: 0 1 calc(50% - 5px);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.stat h3 {
font-size: 20px;
margin-bottom: 3px;
}
.stat p {
font-size: 12px;
}
/* Team section */
.team-section {
padding: 30px 3%;
background: #f9f9f9;
}
.subheading {
font-size: 12px;
letter-spacing: 0.5px;
}
.heading {
font-size: 24px;
margin: 8px 0 25px;
}
.team-container {
gap: 20px;
justify-content: center;
}
.team-member {
width: 100%;
max-width: 280px;
padding: 15px;
margin: 0 auto;
}
.team-member img {
height: 200px;
}
.team-member h3 {
font-size: 18px;
margin: 10px 0 3px;
}
.team-member p {
font-size: 13px;
}
.role {
font-size: 12px;
}
.social-icons {
margin-top: 12px;
}
.social-icons a {
padding: 6px;
margin: 0 4px;
font-size: 12px;
}
.social-icons a:hover {
transform: translateY(0px);
}