@pmidc/upyog-css 1.1.9 → 1.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,239 @@
1
+ /* ========================================
2
+ Landing Page - Modern Redesign
3
+ ======================================== */
4
+
5
+ .landing-page {
6
+ min-height: 100vh;
7
+ background-color: #f8fafc;
8
+ font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
9
+ }
10
+
11
+ /* Hero Section */
12
+ .landing-hero {
13
+ position: relative;
14
+ min-height: 85vh;
15
+ background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #0ea5e9 100%);
16
+ display: flex;
17
+ align-items: center;
18
+ justify-content: center;
19
+ padding: 40px 20px;
20
+ overflow: hidden;
21
+
22
+ &::before {
23
+ content: '';
24
+ position: absolute;
25
+ top: 0;
26
+ left: 0;
27
+ right: 0;
28
+ bottom: 0;
29
+ background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
30
+ opacity: 0.5;
31
+ }
32
+ }
33
+
34
+ .landing-hero-overlay {
35
+ position: absolute;
36
+ top: 0;
37
+ left: 0;
38
+ right: 0;
39
+ bottom: 0;
40
+ background: radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
41
+ radial-gradient(ellipse at bottom left, rgba(14, 165, 233, 0.3) 0%, transparent 50%);
42
+ }
43
+
44
+ .landing-hero-content {
45
+ position: relative;
46
+ z-index: 1;
47
+ max-width: 1200px;
48
+ width: 100%;
49
+ display: flex;
50
+ flex-direction: column;
51
+ align-items: center;
52
+ gap: 48px;
53
+ }
54
+
55
+ .landing-hero-text {
56
+ text-align: center;
57
+ max-width: 700px;
58
+ }
59
+
60
+ .landing-hero-title {
61
+ font-size: 48px;
62
+ font-weight: 800;
63
+ color: #ffffff;
64
+ margin-bottom: 20px;
65
+ line-height: 1.2;
66
+ text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
67
+
68
+ span {
69
+ background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
70
+ -webkit-background-clip: text;
71
+ -webkit-text-fill-color: transparent;
72
+ background-clip: text;
73
+ }
74
+
75
+ @media (max-width: 768px) {
76
+ font-size: 32px;
77
+ }
78
+ }
79
+
80
+ .landing-hero-subtitle {
81
+ font-size: 18px;
82
+ color: rgba(255, 255, 255, 0.9);
83
+ line-height: 1.7;
84
+ margin: 0;
85
+
86
+ @media (max-width: 768px) {
87
+ font-size: 16px;
88
+ }
89
+ }
90
+
91
+ /* Login Cards */
92
+ .landing-login-cards {
93
+ display: flex;
94
+ gap: 32px;
95
+ flex-wrap: wrap;
96
+ justify-content: center;
97
+
98
+ @media (max-width: 768px) {
99
+ flex-direction: column;
100
+ gap: 20px;
101
+ width: 100%;
102
+ max-width: 400px;
103
+ }
104
+ }
105
+
106
+ .landing-login-card {
107
+ background: rgba(255, 255, 255, 0.95);
108
+ backdrop-filter: blur(20px);
109
+ border-radius: 24px;
110
+ padding: 40px 32px;
111
+ width: 320px;
112
+ cursor: pointer;
113
+ transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
114
+ border: 1px solid rgba(255, 255, 255, 0.2);
115
+ box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
116
+ 0 8px 25px rgba(0, 0, 0, 0.1);
117
+ position: relative;
118
+ overflow: hidden;
119
+
120
+ &::before {
121
+ content: '';
122
+ position: absolute;
123
+ top: 0;
124
+ left: 0;
125
+ right: 0;
126
+ height: 4px;
127
+ background: linear-gradient(90deg, #3b82f6, #0ea5e9);
128
+ transform: scaleX(0);
129
+ transition: transform 0.4s ease;
130
+ }
131
+
132
+ &:hover {
133
+ transform: translateY(-12px) scale(1.02);
134
+ box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2),
135
+ 0 15px 40px rgba(0, 0, 0, 0.15);
136
+
137
+ &::before {
138
+ transform: scaleX(1);
139
+ }
140
+
141
+ .landing-login-card-icon {
142
+ transform: scale(1.1) rotate(5deg);
143
+ }
144
+
145
+ .landing-login-card-btn {
146
+ background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
147
+ color: #ffffff;
148
+
149
+ svg {
150
+ transform: translateX(4px);
151
+ }
152
+ }
153
+ }
154
+
155
+ @media (max-width: 768px) {
156
+ width: 100%;
157
+ padding: 32px 24px;
158
+ }
159
+ }
160
+
161
+ .landing-login-card-citizen {
162
+ .landing-login-card-icon {
163
+ background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
164
+ color: #2563eb;
165
+ }
166
+
167
+ &:hover .landing-login-card-btn {
168
+ background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
169
+ }
170
+ }
171
+
172
+ .landing-login-card-employee {
173
+ .landing-login-card-icon {
174
+ background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
175
+ color: #059669;
176
+ }
177
+
178
+ &:hover .landing-login-card-btn {
179
+ background: linear-gradient(135deg, #059669 0%, #047857 100%);
180
+ }
181
+ }
182
+
183
+ .landing-login-card-icon {
184
+ width: 72px;
185
+ height: 72px;
186
+ border-radius: 20px;
187
+ display: flex;
188
+ align-items: center;
189
+ justify-content: center;
190
+ margin-bottom: 24px;
191
+ transition: all 0.4s ease;
192
+
193
+ svg {
194
+ width: 36px;
195
+ height: 36px;
196
+ }
197
+ }
198
+
199
+ .landing-login-card-title {
200
+ font-size: 24px;
201
+ font-weight: 700;
202
+ color: #1e293b;
203
+ margin: 0 0 12px 0;
204
+ }
205
+
206
+ .landing-login-card-desc {
207
+ font-size: 14px;
208
+ color: #64748b;
209
+ line-height: 1.6;
210
+ margin: 0 0 24px 0;
211
+ }
212
+
213
+ .landing-login-card-btn {
214
+ display: flex;
215
+ align-items: center;
216
+ justify-content: center;
217
+ gap: 8px;
218
+ background: #f1f5f9;
219
+ color: #475569;
220
+ padding: 14px 24px;
221
+ border-radius: 12px;
222
+ font-size: 14px;
223
+ font-weight: 600;
224
+ transition: all 0.3s ease;
225
+
226
+ svg {
227
+ width: 18px;
228
+ height: 18px;
229
+ transition: transform 0.3s ease;
230
+ }
231
+ }
232
+
233
+ /* ========================================
234
+ Original Landing Page Styles
235
+ ======================================== */
236
+
1
237
  .middle-content {
2
238
  display: flex;
3
239
  flex-direction: column;
@@ -272,9 +508,202 @@
272
508
  .top-section-parent {
273
509
  position: relative;
274
510
  width: 100%;
275
- background: linear-gradient(to bottom, #3765ca, #294a97);
276
- height: 160px;
511
+ background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #0ea5e9 100%);
512
+ padding: 40px 20px 60px;
513
+ margin-top: -20px;
514
+
515
+ @media (max-width: 768px) {
516
+ padding: 30px 15px 50px;
517
+ }
518
+ }
519
+
520
+ .top-section-wrapper {
521
+ max-width: 1200px;
522
+ margin: 0 auto;
523
+ display: flex;
524
+ align-items: center;
525
+ gap: 16px;
526
+ position: relative;
527
+
528
+ @media (max-width: 640px) {
529
+ gap: 8px;
530
+ }
531
+ }
532
+
533
+ .top-section-slider-container {
534
+ flex: 1;
535
+ overflow: hidden;
536
+ border-radius: 16px;
277
537
  }
538
+
539
+ .top-section-slider {
540
+ display: flex;
541
+ transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
542
+
543
+ &.sliding-next {
544
+ animation: slideNext 0.4s cubic-bezier(0.4, 0, 0.2, 1);
545
+ }
546
+
547
+ &.sliding-prev {
548
+ animation: slidePrev 0.4s cubic-bezier(0.4, 0, 0.2, 1);
549
+ }
550
+ }
551
+
552
+ @keyframes slideNext {
553
+ 0% { opacity: 0.8; }
554
+ 50% { opacity: 0.9; }
555
+ 100% { opacity: 1; }
556
+ }
557
+
558
+ @keyframes slidePrev {
559
+ 0% { opacity: 0.8; }
560
+ 50% { opacity: 0.9; }
561
+ 100% { opacity: 1; }
562
+ }
563
+
564
+ .top-section-slide-item {
565
+ flex-shrink: 0;
566
+ padding: 8px;
567
+ box-sizing: border-box;
568
+ }
569
+
570
+ .top-section-logo-card {
571
+ background: rgba(255, 255, 255, 0.95);
572
+ backdrop-filter: blur(10px);
573
+ border-radius: 16px;
574
+ padding: 24px 16px;
575
+ display: flex;
576
+ flex-direction: column;
577
+ align-items: center;
578
+ justify-content: center;
579
+ text-align: center;
580
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
581
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
582
+ cursor: pointer;
583
+ border: 2px solid transparent;
584
+ height: 140px;
585
+
586
+ &:hover {
587
+ transform: translateY(-8px) scale(1.02);
588
+ box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
589
+ border-color: rgba(59, 130, 246, 0.3);
590
+
591
+ .top-section-logo-icon {
592
+ transform: scale(1.1);
593
+ }
594
+ }
595
+
596
+ @media (max-width: 640px) {
597
+ padding: 20px 12px;
598
+ height: 120px;
599
+ }
600
+ }
601
+
602
+ .top-section-logo-icon {
603
+ width: 56px;
604
+ height: 56px;
605
+ display: flex;
606
+ align-items: center;
607
+ justify-content: center;
608
+ margin-bottom: 12px;
609
+ transition: transform 0.3s ease;
610
+
611
+ img {
612
+ width: 100%;
613
+ height: 100%;
614
+ object-fit: contain;
615
+ }
616
+
617
+ @media (max-width: 640px) {
618
+ width: 44px;
619
+ height: 44px;
620
+ margin-bottom: 8px;
621
+ }
622
+ }
623
+
624
+ .top-section-logo-text {
625
+ font-size: 13px;
626
+ font-weight: 600;
627
+ color: #1e293b;
628
+ margin: 0;
629
+ line-height: 1.3;
630
+
631
+ @media (max-width: 640px) {
632
+ font-size: 11px;
633
+ }
634
+ }
635
+
636
+ .top-section-nav-btn {
637
+ width: 48px;
638
+ height: 48px;
639
+ border-radius: 50%;
640
+ border: none;
641
+ background: rgba(255, 255, 255, 0.95);
642
+ color: #1e40af;
643
+ display: flex;
644
+ align-items: center;
645
+ justify-content: center;
646
+ cursor: pointer;
647
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
648
+ transition: all 0.3s ease;
649
+ flex-shrink: 0;
650
+
651
+ svg {
652
+ width: 24px;
653
+ height: 24px;
654
+ }
655
+
656
+ &:hover:not(.disabled) {
657
+ background: #ffffff;
658
+ transform: scale(1.1);
659
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
660
+ }
661
+
662
+ &.disabled {
663
+ opacity: 0.4;
664
+ cursor: not-allowed;
665
+ }
666
+
667
+ @media (max-width: 640px) {
668
+ width: 36px;
669
+ height: 36px;
670
+
671
+ svg {
672
+ width: 18px;
673
+ height: 18px;
674
+ }
675
+ }
676
+ }
677
+
678
+ .top-section-dots {
679
+ display: flex;
680
+ justify-content: center;
681
+ gap: 8px;
682
+ margin-top: 20px;
683
+ }
684
+
685
+ .top-section-dot {
686
+ width: 10px;
687
+ height: 10px;
688
+ border-radius: 50%;
689
+ border: none;
690
+ background: rgba(255, 255, 255, 0.4);
691
+ cursor: pointer;
692
+ transition: all 0.3s ease;
693
+ padding: 0;
694
+
695
+ &:hover {
696
+ background: rgba(255, 255, 255, 0.7);
697
+ }
698
+
699
+ &.active {
700
+ background: #ffffff;
701
+ transform: scale(1.3);
702
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
703
+ }
704
+ }
705
+
706
+ /* Keep old styles for backward compatibility */
278
707
  .top-section {
279
708
  position: absolute;
280
709
  top: -50px;
@@ -322,4 +751,1033 @@
322
751
  justify-content: center;
323
752
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
324
753
  }
325
-
754
+
755
+ /* ========================================
756
+ Services Section (Middle Section)
757
+ ======================================== */
758
+
759
+ .landing-services-section {
760
+ padding: 60px 20px;
761
+ background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
762
+ }
763
+
764
+ .landing-services-container {
765
+ max-width: 1200px;
766
+ margin: 0 auto;
767
+ }
768
+
769
+ .landing-services-header {
770
+ text-align: center;
771
+ margin-bottom: 48px;
772
+ }
773
+
774
+ .landing-services-badge {
775
+ display: inline-block;
776
+ background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
777
+ color: #1e40af;
778
+ padding: 8px 20px;
779
+ border-radius: 50px;
780
+ font-size: 14px;
781
+ font-weight: 600;
782
+ margin-bottom: 16px;
783
+ }
784
+
785
+ .landing-services-title {
786
+ font-size: 36px;
787
+ font-weight: 700;
788
+ color: #1e293b;
789
+ margin: 0;
790
+
791
+ @media (max-width: 768px) {
792
+ font-size: 28px;
793
+ }
794
+ }
795
+
796
+ .landing-services-grid {
797
+ display: grid;
798
+ grid-template-columns: repeat(3, 1fr);
799
+ gap: 24px;
800
+
801
+ @media (max-width: 1024px) {
802
+ grid-template-columns: repeat(2, 1fr);
803
+ }
804
+
805
+ @media (max-width: 640px) {
806
+ grid-template-columns: 1fr;
807
+ }
808
+ }
809
+
810
+ .landing-services-card {
811
+ background: #ffffff;
812
+ border-radius: 20px;
813
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
814
+ overflow: hidden;
815
+ transition: all 0.3s ease;
816
+
817
+ &:hover {
818
+ transform: translateY(-8px);
819
+ box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
820
+ }
821
+ }
822
+
823
+ .landing-services-card-header {
824
+ display: flex;
825
+ align-items: center;
826
+ gap: 12px;
827
+ padding: 20px 24px;
828
+ background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
829
+ color: #ffffff;
830
+
831
+ svg {
832
+ width: 24px;
833
+ height: 24px;
834
+ flex-shrink: 0;
835
+ }
836
+
837
+ h3 {
838
+ font-size: 18px;
839
+ font-weight: 600;
840
+ margin: 0;
841
+ }
842
+ }
843
+
844
+ .landing-services-card-body {
845
+ padding: 24px;
846
+ }
847
+
848
+ .landing-services-list {
849
+ list-style: none;
850
+ padding: 0;
851
+ margin: 0;
852
+ }
853
+
854
+ .landing-services-list-item {
855
+ display: flex;
856
+ align-items: center;
857
+ gap: 12px;
858
+ padding: 12px 0;
859
+ border-bottom: 1px solid #f1f5f9;
860
+ transition: all 0.2s ease;
861
+
862
+ &:last-child {
863
+ border-bottom: none;
864
+ }
865
+
866
+ &:hover {
867
+ padding-left: 8px;
868
+
869
+ .landing-services-list-bullet {
870
+ transform: scale(1.2);
871
+ }
872
+
873
+ a {
874
+ color: #2563eb;
875
+ }
876
+ }
877
+
878
+ a {
879
+ color: #475569;
880
+ text-decoration: none;
881
+ font-size: 14px;
882
+ font-weight: 500;
883
+ transition: color 0.2s ease;
884
+ }
885
+ }
886
+
887
+ .landing-services-list-bullet {
888
+ width: 8px;
889
+ height: 8px;
890
+ background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
891
+ border-radius: 50%;
892
+ flex-shrink: 0;
893
+ transition: transform 0.2s ease;
894
+ }
895
+
896
+ /* Photo Gallery */
897
+ .landing-gallery-container {
898
+ position: relative;
899
+ height: 200px;
900
+ overflow: hidden;
901
+ border-radius: 12px;
902
+ }
903
+
904
+ .landing-gallery-image {
905
+ width: 100%;
906
+ height: 100%;
907
+ object-fit: cover;
908
+ transition: opacity 0.5s ease;
909
+ }
910
+
911
+ .landing-gallery-nav {
912
+ position: absolute;
913
+ top: 50%;
914
+ transform: translateY(-50%);
915
+ background: rgba(255, 255, 255, 0.9);
916
+ border: none;
917
+ width: 40px;
918
+ height: 40px;
919
+ border-radius: 50%;
920
+ display: flex;
921
+ align-items: center;
922
+ justify-content: center;
923
+ cursor: pointer;
924
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
925
+ transition: all 0.3s ease;
926
+ color: #1e40af;
927
+
928
+ &:hover {
929
+ background: #ffffff;
930
+ transform: translateY(-50%) scale(1.1);
931
+ }
932
+
933
+ svg {
934
+ width: 20px;
935
+ height: 20px;
936
+ }
937
+ }
938
+
939
+ .landing-gallery-prev {
940
+ left: 12px;
941
+ }
942
+
943
+ .landing-gallery-next {
944
+ right: 12px;
945
+ }
946
+
947
+ /* News Items */
948
+ .landing-news-item {
949
+ padding: 16px 0;
950
+ border-bottom: 1px solid #f1f5f9;
951
+
952
+ &:last-child {
953
+ border-bottom: none;
954
+ }
955
+ }
956
+
957
+ .landing-news-title {
958
+ font-size: 14px;
959
+ font-weight: 600;
960
+ color: #1e293b;
961
+ margin: 0 0 8px 0;
962
+ line-height: 1.5;
963
+ }
964
+
965
+ .landing-news-meta {
966
+ display: flex;
967
+ align-items: center;
968
+ justify-content: space-between;
969
+ }
970
+
971
+ .landing-news-date {
972
+ font-size: 12px;
973
+ color: #94a3b8;
974
+ }
975
+
976
+ .landing-news-link {
977
+ font-size: 12px;
978
+ color: #3b82f6;
979
+ text-decoration: none;
980
+ font-weight: 600;
981
+
982
+ &:hover {
983
+ text-decoration: underline;
984
+ }
985
+ }
986
+
987
+ /* ========================================
988
+ Help Section
989
+ ======================================== */
990
+
991
+ .landing-help-section {
992
+ padding: 80px 20px;
993
+ background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
994
+ }
995
+
996
+ .landing-help-container {
997
+ max-width: 1200px;
998
+ margin: 0 auto;
999
+ }
1000
+
1001
+ .landing-help-content {
1002
+ display: flex;
1003
+ flex-direction: column;
1004
+ align-items: center;
1005
+ gap: 48px;
1006
+ }
1007
+
1008
+ .landing-help-text {
1009
+ text-align: center;
1010
+ max-width: 600px;
1011
+ }
1012
+
1013
+ .landing-help-badge {
1014
+ display: inline-block;
1015
+ background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
1016
+ color: #ffffff;
1017
+ padding: 8px 20px;
1018
+ border-radius: 50px;
1019
+ font-size: 12px;
1020
+ font-weight: 700;
1021
+ text-transform: uppercase;
1022
+ letter-spacing: 1px;
1023
+ margin-bottom: 16px;
1024
+ }
1025
+
1026
+ .landing-help-title {
1027
+ font-size: 36px;
1028
+ font-weight: 700;
1029
+ color: #1e293b;
1030
+ margin: 0 0 16px 0;
1031
+
1032
+ @media (max-width: 768px) {
1033
+ font-size: 28px;
1034
+ }
1035
+ }
1036
+
1037
+ .landing-help-subtitle {
1038
+ font-size: 16px;
1039
+ color: #64748b;
1040
+ margin: 0;
1041
+ line-height: 1.7;
1042
+ }
1043
+
1044
+ .landing-help-cards {
1045
+ display: flex;
1046
+ gap: 24px;
1047
+ flex-wrap: wrap;
1048
+ justify-content: center;
1049
+
1050
+ @media (max-width: 768px) {
1051
+ flex-direction: column;
1052
+ width: 100%;
1053
+ max-width: 400px;
1054
+ }
1055
+ }
1056
+
1057
+ .landing-help-card {
1058
+ background: #ffffff;
1059
+ border-radius: 20px;
1060
+ padding: 24px;
1061
+ display: flex;
1062
+ align-items: center;
1063
+ gap: 16px;
1064
+ min-width: 300px;
1065
+ cursor: pointer;
1066
+ transition: all 0.3s ease;
1067
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
1068
+ border: 2px solid transparent;
1069
+
1070
+ &:hover {
1071
+ transform: translateY(-4px);
1072
+ box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
1073
+ border-color: var(--card-color);
1074
+
1075
+ .landing-help-card-arrow {
1076
+ opacity: 1;
1077
+ transform: translateX(0);
1078
+ }
1079
+ }
1080
+
1081
+ @media (max-width: 768px) {
1082
+ width: 100%;
1083
+ min-width: unset;
1084
+ }
1085
+ }
1086
+
1087
+ .landing-help-card-icon {
1088
+ width: 56px;
1089
+ height: 56px;
1090
+ border-radius: 16px;
1091
+ display: flex;
1092
+ align-items: center;
1093
+ justify-content: center;
1094
+ background: var(--card-bg);
1095
+ flex-shrink: 0;
1096
+
1097
+ img {
1098
+ width: 32px;
1099
+ height: 32px;
1100
+ object-fit: contain;
1101
+ }
1102
+ }
1103
+
1104
+ .landing-help-card-content {
1105
+ flex: 1;
1106
+ display: flex;
1107
+ flex-direction: column;
1108
+ gap: 4px;
1109
+ }
1110
+
1111
+ .landing-help-card-label {
1112
+ font-size: 14px;
1113
+ color: #64748b;
1114
+ font-weight: 500;
1115
+ }
1116
+
1117
+ .landing-help-card-value {
1118
+ font-size: 18px;
1119
+ font-weight: 700;
1120
+ color: #1e293b;
1121
+ }
1122
+
1123
+ .landing-help-card-arrow {
1124
+ width: 32px;
1125
+ height: 32px;
1126
+ display: flex;
1127
+ align-items: center;
1128
+ justify-content: center;
1129
+ color: var(--card-color);
1130
+ opacity: 0;
1131
+ transform: translateX(-8px);
1132
+ transition: all 0.3s ease;
1133
+
1134
+ svg {
1135
+ width: 20px;
1136
+ height: 20px;
1137
+ }
1138
+ }
1139
+
1140
+ /* ========================================
1141
+ About Section
1142
+ ======================================== */
1143
+
1144
+ .landing-about-section {
1145
+ padding: 80px 20px;
1146
+ background: #ffffff;
1147
+ }
1148
+
1149
+ .landing-about-container {
1150
+ max-width: 1200px;
1151
+ margin: 0 auto;
1152
+ }
1153
+
1154
+ .landing-about-header {
1155
+ text-align: center;
1156
+ margin-bottom: 48px;
1157
+ }
1158
+
1159
+ .landing-about-badge {
1160
+ display: inline-block;
1161
+ background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
1162
+ color: #1e40af;
1163
+ padding: 8px 20px;
1164
+ border-radius: 50px;
1165
+ font-size: 14px;
1166
+ font-weight: 600;
1167
+ margin-bottom: 16px;
1168
+ }
1169
+
1170
+ .landing-about-title {
1171
+ font-size: 36px;
1172
+ font-weight: 700;
1173
+ color: #1e293b;
1174
+ margin: 0 0 16px 0;
1175
+
1176
+ @media (max-width: 768px) {
1177
+ font-size: 24px;
1178
+ }
1179
+ }
1180
+
1181
+ .landing-about-divider {
1182
+ width: 80px;
1183
+ height: 4px;
1184
+ background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
1185
+ border-radius: 2px;
1186
+ margin: 0 auto;
1187
+ }
1188
+
1189
+ .landing-about-content {
1190
+ display: flex;
1191
+ flex-direction: column;
1192
+ gap: 40px;
1193
+ }
1194
+
1195
+ .landing-about-main {
1196
+ display: grid;
1197
+ grid-template-columns: repeat(2, 1fr);
1198
+ gap: 32px;
1199
+
1200
+ @media (max-width: 768px) {
1201
+ grid-template-columns: 1fr;
1202
+ }
1203
+ }
1204
+
1205
+ .landing-about-card {
1206
+ background: #f8fafc;
1207
+ border-radius: 20px;
1208
+ padding: 32px;
1209
+ position: relative;
1210
+ overflow: hidden;
1211
+
1212
+ h3 {
1213
+ font-size: 22px;
1214
+ font-weight: 700;
1215
+ color: #1e293b;
1216
+ margin: 0 0 20px 0;
1217
+ }
1218
+
1219
+ p {
1220
+ font-size: 15px;
1221
+ color: #64748b;
1222
+ line-height: 1.8;
1223
+ margin: 0 0 16px 0;
1224
+
1225
+ &:last-child {
1226
+ margin-bottom: 0;
1227
+ }
1228
+
1229
+ strong {
1230
+ color: #1e40af;
1231
+ }
1232
+ }
1233
+ }
1234
+
1235
+ .landing-about-card-accent {
1236
+ position: absolute;
1237
+ top: 0;
1238
+ left: 0;
1239
+ width: 4px;
1240
+ height: 100%;
1241
+ background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
1242
+ }
1243
+
1244
+ .landing-about-highlights {
1245
+ display: flex;
1246
+ justify-content: center;
1247
+ gap: 32px;
1248
+ flex-wrap: wrap;
1249
+
1250
+ @media (max-width: 640px) {
1251
+ gap: 16px;
1252
+ }
1253
+ }
1254
+
1255
+ .landing-about-highlight-item {
1256
+ display: flex;
1257
+ align-items: center;
1258
+ gap: 12px;
1259
+ background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
1260
+ padding: 16px 24px;
1261
+ border-radius: 50px;
1262
+ transition: all 0.3s ease;
1263
+
1264
+ &:hover {
1265
+ transform: translateY(-4px);
1266
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
1267
+ }
1268
+ }
1269
+
1270
+ .landing-about-highlight-icon {
1271
+ font-size: 24px;
1272
+ }
1273
+
1274
+ .landing-about-highlight-text {
1275
+ font-size: 14px;
1276
+ font-weight: 600;
1277
+ color: #475569;
1278
+ }
1279
+
1280
+ /* ========================================
1281
+ Footer
1282
+ ======================================== */
1283
+
1284
+ .landing-footer {
1285
+ background: #0f172a;
1286
+ color: #ffffff;
1287
+ }
1288
+
1289
+ .landing-footer-partners {
1290
+ background: #f8fafc;
1291
+ padding: 40px 20px;
1292
+ }
1293
+
1294
+ .landing-footer-partners-container {
1295
+ max-width: 1200px;
1296
+ margin: 0 auto;
1297
+ text-align: center;
1298
+ }
1299
+
1300
+ .landing-footer-partners-title {
1301
+ font-size: 14px;
1302
+ font-weight: 600;
1303
+ color: #64748b;
1304
+ text-transform: uppercase;
1305
+ letter-spacing: 2px;
1306
+ margin: 0 0 24px 0;
1307
+ }
1308
+
1309
+ .landing-footer-partners-grid {
1310
+ display: flex;
1311
+ justify-content: center;
1312
+ align-items: center;
1313
+ gap: 32px;
1314
+ flex-wrap: wrap;
1315
+
1316
+ @media (max-width: 768px) {
1317
+ gap: 20px;
1318
+ }
1319
+ }
1320
+
1321
+ .landing-footer-partner-logo {
1322
+ background: #ffffff;
1323
+ padding: 12px 20px;
1324
+ border-radius: 12px;
1325
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
1326
+ transition: all 0.3s ease;
1327
+
1328
+ &:hover {
1329
+ transform: translateY(-4px);
1330
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
1331
+ }
1332
+
1333
+ img {
1334
+ height: 40px;
1335
+ width: auto;
1336
+ object-fit: contain;
1337
+
1338
+ @media (max-width: 768px) {
1339
+ height: 32px;
1340
+ }
1341
+ }
1342
+ }
1343
+
1344
+ .landing-footer-main {
1345
+ padding: 60px 20px;
1346
+ }
1347
+
1348
+ .landing-footer-container {
1349
+ max-width: 1200px;
1350
+ margin: 0 auto;
1351
+ }
1352
+
1353
+ .landing-footer-grid {
1354
+ display: grid;
1355
+ grid-template-columns: 1.5fr 1fr 1fr 1fr;
1356
+ gap: 48px;
1357
+
1358
+ @media (max-width: 1024px) {
1359
+ grid-template-columns: repeat(2, 1fr);
1360
+ gap: 40px;
1361
+ }
1362
+
1363
+ @media (max-width: 640px) {
1364
+ grid-template-columns: 1fr;
1365
+ gap: 32px;
1366
+ }
1367
+ }
1368
+
1369
+ .landing-footer-section-title {
1370
+ font-size: 16px;
1371
+ font-weight: 700;
1372
+ color: #ffffff;
1373
+ margin: 0 0 20px 0;
1374
+ display: flex;
1375
+ align-items: center;
1376
+ gap: 8px;
1377
+
1378
+ svg {
1379
+ width: 20px;
1380
+ height: 20px;
1381
+ color: #3b82f6;
1382
+ }
1383
+ }
1384
+
1385
+ .landing-footer-address-content {
1386
+ p {
1387
+ font-size: 14px;
1388
+ color: #94a3b8;
1389
+ line-height: 1.8;
1390
+ margin: 0 0 4px 0;
1391
+ }
1392
+ }
1393
+
1394
+ .landing-footer-email {
1395
+ display: flex;
1396
+ align-items: center;
1397
+ gap: 8px;
1398
+ margin-top: 12px !important;
1399
+ color: #3b82f6 !important;
1400
+
1401
+ svg {
1402
+ color: #3b82f6;
1403
+ }
1404
+ }
1405
+
1406
+ .landing-footer-links {
1407
+ list-style: none;
1408
+ padding: 0;
1409
+ margin: 0;
1410
+
1411
+ li {
1412
+ margin-bottom: 12px;
1413
+
1414
+ a {
1415
+ font-size: 14px;
1416
+ color: #94a3b8;
1417
+ text-decoration: none;
1418
+ transition: all 0.2s ease;
1419
+ display: inline-block;
1420
+
1421
+ &:hover {
1422
+ color: #ffffff;
1423
+ transform: translateX(4px);
1424
+ }
1425
+ }
1426
+ }
1427
+ }
1428
+
1429
+ .landing-footer-social-icons {
1430
+ display: flex;
1431
+ gap: 12px;
1432
+ }
1433
+
1434
+ .landing-footer-social-icon {
1435
+ width: 44px;
1436
+ height: 44px;
1437
+ border-radius: 12px;
1438
+ display: flex;
1439
+ align-items: center;
1440
+ justify-content: center;
1441
+ background: rgba(255, 255, 255, 0.1);
1442
+ color: #ffffff;
1443
+ transition: all 0.3s ease;
1444
+
1445
+ svg {
1446
+ width: 20px;
1447
+ height: 20px;
1448
+ }
1449
+
1450
+ &:hover {
1451
+ transform: translateY(-4px);
1452
+ }
1453
+ }
1454
+
1455
+ .landing-footer-social-facebook:hover {
1456
+ background: #1877f2;
1457
+ }
1458
+
1459
+ .landing-footer-social-twitter:hover {
1460
+ background: #1da1f2;
1461
+ }
1462
+
1463
+ .landing-footer-social-linkedin:hover {
1464
+ background: #0077b5;
1465
+ }
1466
+
1467
+ .landing-footer-social-youtube:hover {
1468
+ background: #ff0000;
1469
+ }
1470
+
1471
+ .landing-footer-bottom {
1472
+ background: #020617;
1473
+ padding: 20px;
1474
+ }
1475
+
1476
+ .landing-footer-bottom-content {
1477
+ display: flex;
1478
+ justify-content: center;
1479
+ align-items: center;
1480
+ gap: 8px;
1481
+ flex-wrap: wrap;
1482
+
1483
+ @media (max-width: 640px) {
1484
+ flex-direction: column;
1485
+ gap: 12px;
1486
+ }
1487
+ }
1488
+
1489
+ .landing-footer-powered,
1490
+ .landing-footer-license,
1491
+ .landing-footer-copyright {
1492
+ font-size: 13px;
1493
+ color: #94a3b8;
1494
+ cursor: pointer;
1495
+ transition: color 0.2s ease;
1496
+
1497
+ &:hover {
1498
+ color: #ffffff;
1499
+ }
1500
+ }
1501
+
1502
+ .landing-footer-license {
1503
+ text-decoration: none;
1504
+ }
1505
+
1506
+ .landing-footer-divider {
1507
+ color: #475569;
1508
+
1509
+ @media (max-width: 640px) {
1510
+ display: none;
1511
+ }
1512
+ }
1513
+
1514
+ /* ========================================
1515
+ Middle Section - Explore Our Initiatives
1516
+ ======================================== */
1517
+
1518
+ .landing-middle-section {
1519
+ padding: 80px 20px;
1520
+ background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
1521
+ }
1522
+
1523
+ .landing-middle-container {
1524
+ max-width: 1200px;
1525
+ margin: 0 auto;
1526
+ }
1527
+
1528
+ .landing-section-header {
1529
+ text-align: center;
1530
+ margin-bottom: 48px;
1531
+ }
1532
+
1533
+ .landing-section-title {
1534
+ font-size: 36px;
1535
+ font-weight: 700;
1536
+ color: #1e293b;
1537
+ margin: 0 0 12px 0;
1538
+
1539
+ @media (max-width: 768px) {
1540
+ font-size: 28px;
1541
+ }
1542
+ }
1543
+
1544
+ .landing-section-subtitle {
1545
+ font-size: 16px;
1546
+ color: #64748b;
1547
+ margin: 0;
1548
+ }
1549
+
1550
+ .landing-middle-grid {
1551
+ display: grid;
1552
+ grid-template-columns: repeat(3, 1fr);
1553
+ gap: 24px;
1554
+
1555
+ @media (max-width: 1024px) {
1556
+ grid-template-columns: repeat(2, 1fr);
1557
+ }
1558
+
1559
+ @media (max-width: 640px) {
1560
+ grid-template-columns: 1fr;
1561
+ }
1562
+ }
1563
+
1564
+ .landing-info-card {
1565
+ background: #ffffff;
1566
+ border-radius: 20px;
1567
+ box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
1568
+ overflow: hidden;
1569
+ transition: all 0.3s ease;
1570
+
1571
+ &:hover {
1572
+ transform: translateY(-8px);
1573
+ box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
1574
+ }
1575
+ }
1576
+
1577
+ .landing-card-header {
1578
+ display: flex;
1579
+ align-items: center;
1580
+ gap: 12px;
1581
+ padding: 20px 24px;
1582
+ background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
1583
+ color: #ffffff;
1584
+ }
1585
+
1586
+ .landing-card-icon {
1587
+ width: 44px;
1588
+ height: 44px;
1589
+ border-radius: 12px;
1590
+ background: rgba(255, 255, 255, 0.2);
1591
+ display: flex;
1592
+ align-items: center;
1593
+ justify-content: center;
1594
+
1595
+ svg {
1596
+ width: 24px;
1597
+ height: 24px;
1598
+ }
1599
+ }
1600
+
1601
+ .landing-card-icon-purple {
1602
+ background: rgba(139, 92, 246, 0.3);
1603
+ }
1604
+
1605
+ .landing-card-icon-amber {
1606
+ background: rgba(245, 158, 11, 0.3);
1607
+ }
1608
+
1609
+ .landing-card-title {
1610
+ font-size: 18px;
1611
+ font-weight: 600;
1612
+ margin: 0;
1613
+ }
1614
+
1615
+ /* Projects Card */
1616
+ .landing-projects-card {
1617
+ .landing-card-header {
1618
+ background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
1619
+ }
1620
+ }
1621
+
1622
+ .landing-projects-list {
1623
+ padding: 8px;
1624
+ }
1625
+
1626
+ .landing-project-item {
1627
+ display: flex;
1628
+ align-items: center;
1629
+ gap: 12px;
1630
+ padding: 14px 16px;
1631
+ border-radius: 12px;
1632
+ text-decoration: none;
1633
+ color: #1e293b;
1634
+ transition: all 0.2s ease;
1635
+
1636
+ &:hover {
1637
+ background: #f1f5f9;
1638
+
1639
+ .landing-project-arrow {
1640
+ opacity: 1;
1641
+ transform: translateX(0);
1642
+ }
1643
+ }
1644
+ }
1645
+
1646
+ .landing-project-icon {
1647
+ font-size: 20px;
1648
+ width: 36px;
1649
+ height: 36px;
1650
+ display: flex;
1651
+ align-items: center;
1652
+ justify-content: center;
1653
+ background: #f1f5f9;
1654
+ border-radius: 10px;
1655
+ }
1656
+
1657
+ .landing-project-name {
1658
+ flex: 1;
1659
+ font-size: 14px;
1660
+ font-weight: 600;
1661
+ }
1662
+
1663
+ .landing-project-arrow {
1664
+ width: 20px;
1665
+ height: 20px;
1666
+ color: #3b82f6;
1667
+ opacity: 0;
1668
+ transform: translateX(-8px);
1669
+ transition: all 0.2s ease;
1670
+ }
1671
+
1672
+ /* Gallery Card */
1673
+ .landing-gallery-card {
1674
+ .landing-card-header {
1675
+ background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
1676
+ }
1677
+ }
1678
+
1679
+ .landing-gallery-container {
1680
+ position: relative;
1681
+ padding: 16px;
1682
+ }
1683
+
1684
+ .landing-gallery-image {
1685
+ width: 100%;
1686
+ height: 180px;
1687
+ object-fit: cover;
1688
+ border-radius: 12px;
1689
+ }
1690
+
1691
+ .landing-gallery-controls {
1692
+ display: flex;
1693
+ align-items: center;
1694
+ justify-content: center;
1695
+ gap: 16px;
1696
+ margin-top: 16px;
1697
+ }
1698
+
1699
+ .landing-gallery-btn {
1700
+ width: 36px;
1701
+ height: 36px;
1702
+ border-radius: 50%;
1703
+ border: none;
1704
+ background: #f1f5f9;
1705
+ color: #475569;
1706
+ display: flex;
1707
+ align-items: center;
1708
+ justify-content: center;
1709
+ cursor: pointer;
1710
+ transition: all 0.2s ease;
1711
+
1712
+ svg {
1713
+ width: 20px;
1714
+ height: 20px;
1715
+ }
1716
+
1717
+ &:hover {
1718
+ background: #3b82f6;
1719
+ color: #ffffff;
1720
+ }
1721
+ }
1722
+
1723
+ .landing-gallery-dots {
1724
+ display: flex;
1725
+ gap: 8px;
1726
+ }
1727
+
1728
+ .landing-gallery-dot {
1729
+ width: 10px;
1730
+ height: 10px;
1731
+ border-radius: 50%;
1732
+ background: #e2e8f0;
1733
+ cursor: pointer;
1734
+ transition: all 0.2s ease;
1735
+
1736
+ &.active {
1737
+ background: #3b82f6;
1738
+ transform: scale(1.2);
1739
+ }
1740
+
1741
+ &:hover:not(.active) {
1742
+ background: #94a3b8;
1743
+ }
1744
+ }
1745
+
1746
+ /* News Card */
1747
+ .landing-news-card {
1748
+ .landing-card-header {
1749
+ background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
1750
+ }
1751
+ }
1752
+
1753
+ .landing-news-list {
1754
+ padding: 16px 24px;
1755
+ }
1756
+
1757
+ .landing-news-item {
1758
+ display: flex;
1759
+ align-items: flex-start;
1760
+ gap: 12px;
1761
+ padding: 12px 0;
1762
+ border-bottom: 1px solid #f1f5f9;
1763
+
1764
+ &:last-child {
1765
+ border-bottom: none;
1766
+ }
1767
+ }
1768
+
1769
+ .landing-news-bullet {
1770
+ width: 8px;
1771
+ height: 8px;
1772
+ min-width: 8px;
1773
+ background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
1774
+ border-radius: 50%;
1775
+ margin-top: 6px;
1776
+ }
1777
+
1778
+ .landing-news-text {
1779
+ font-size: 14px;
1780
+ color: #475569;
1781
+ line-height: 1.6;
1782
+ margin: 0;
1783
+ }