@djb25/digit-ui-css 1.0.62 → 1.0.64
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.
- package/dist/index.css +1 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/landingpage.scss +648 -446
- package/src/components/table.scss +27 -17
- package/src/pages/employee/inbox.scss +101 -66
|
@@ -8,23 +8,6 @@ body {
|
|
|
8
8
|
|
|
9
9
|
/* HEADER */
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
11
|
/* INFO BAR */
|
|
29
12
|
.upyog-info-bar {
|
|
30
13
|
width: 100%;
|
|
@@ -69,7 +52,7 @@ body {
|
|
|
69
52
|
will-change: transform;
|
|
70
53
|
}
|
|
71
54
|
|
|
72
|
-
@keyframes scrollText{
|
|
55
|
+
@keyframes scrollText {
|
|
73
56
|
from {
|
|
74
57
|
transform: translateX(0);
|
|
75
58
|
}
|
|
@@ -92,10 +75,6 @@ body {
|
|
|
92
75
|
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
|
|
93
76
|
}
|
|
94
77
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
78
|
.upyog-search-btn {
|
|
100
79
|
background: linear-gradient(180deg, #217eff, #000);
|
|
101
80
|
border: none;
|
|
@@ -108,24 +87,12 @@ body {
|
|
|
108
87
|
|
|
109
88
|
/* QUICK SERVICES */
|
|
110
89
|
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
90
|
/* FOOTER */
|
|
119
91
|
.upyog-footer {
|
|
120
92
|
padding: 40px;
|
|
121
93
|
text-align: center;
|
|
122
94
|
}
|
|
123
95
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
96
|
.branding h2 {
|
|
130
97
|
font-size: 28px;
|
|
131
98
|
margin: 0;
|
|
@@ -138,8 +105,6 @@ body {
|
|
|
138
105
|
margin: 0;
|
|
139
106
|
}
|
|
140
107
|
|
|
141
|
-
|
|
142
|
-
|
|
143
108
|
.upyog-top-bar {
|
|
144
109
|
background: #f8fafc;
|
|
145
110
|
color: #475569;
|
|
@@ -249,8 +214,6 @@ body {
|
|
|
249
214
|
transition: all 0.3s ease;
|
|
250
215
|
}
|
|
251
216
|
|
|
252
|
-
|
|
253
|
-
|
|
254
217
|
.brand-mark img {
|
|
255
218
|
width: 100%;
|
|
256
219
|
height: 100%;
|
|
@@ -258,7 +221,7 @@ body {
|
|
|
258
221
|
}
|
|
259
222
|
|
|
260
223
|
.brand-title {
|
|
261
|
-
font-family:
|
|
224
|
+
font-family: "Crimson Pro", serif;
|
|
262
225
|
font-size: 29px;
|
|
263
226
|
font-weight: 700;
|
|
264
227
|
color: #003366;
|
|
@@ -267,12 +230,10 @@ body {
|
|
|
267
230
|
transition: color 0.3s ease;
|
|
268
231
|
}
|
|
269
232
|
|
|
270
|
-
|
|
271
|
-
|
|
272
233
|
.brand-subtitle {
|
|
273
234
|
font-size: 10.5px;
|
|
274
235
|
font-weight: 600;
|
|
275
|
-
color: #
|
|
236
|
+
color: #0070b4;
|
|
276
237
|
line-height: 1.2;
|
|
277
238
|
margin: 0;
|
|
278
239
|
letter-spacing: 0.3px;
|
|
@@ -404,7 +365,6 @@ body {
|
|
|
404
365
|
|
|
405
366
|
/* 🔹 Overlap Image */
|
|
406
367
|
|
|
407
|
-
|
|
408
368
|
.upyog-hero-main-img {
|
|
409
369
|
width: 100%;
|
|
410
370
|
height: auto;
|
|
@@ -412,7 +372,7 @@ body {
|
|
|
412
372
|
display: block;
|
|
413
373
|
}
|
|
414
374
|
|
|
415
|
-
@keyframes fadeUpSlow{
|
|
375
|
+
@keyframes fadeUpSlow {
|
|
416
376
|
from {
|
|
417
377
|
opacity: 0;
|
|
418
378
|
transform: translateY(16px);
|
|
@@ -437,7 +397,7 @@ body {
|
|
|
437
397
|
animation-delay: 0.4s;
|
|
438
398
|
}
|
|
439
399
|
|
|
440
|
-
@keyframes imageFadeSlow{
|
|
400
|
+
@keyframes imageFadeSlow {
|
|
441
401
|
from {
|
|
442
402
|
opacity: 0;
|
|
443
403
|
transform: scale(1.04);
|
|
@@ -463,7 +423,8 @@ body {
|
|
|
463
423
|
flex-direction: column;
|
|
464
424
|
}
|
|
465
425
|
|
|
466
|
-
.upyog-hero-left,
|
|
426
|
+
.upyog-hero-left,
|
|
427
|
+
.upyog-hero-right {
|
|
467
428
|
width: 100%;
|
|
468
429
|
}
|
|
469
430
|
|
|
@@ -508,8 +469,6 @@ body {
|
|
|
508
469
|
align-items: center;
|
|
509
470
|
}
|
|
510
471
|
|
|
511
|
-
|
|
512
|
-
|
|
513
472
|
.upyog-search-btn {
|
|
514
473
|
background: linear-gradient(180deg, #003c8f, #0053a6);
|
|
515
474
|
color: #fff !important;
|
|
@@ -521,9 +480,6 @@ body {
|
|
|
521
480
|
transition: 0.2s;
|
|
522
481
|
}
|
|
523
482
|
|
|
524
|
-
.upyog-search-btn:hover {
|
|
525
|
-
}
|
|
526
|
-
|
|
527
483
|
/* SUGGESTED LINKS ROW */
|
|
528
484
|
.upyog-suggested-wrapper {
|
|
529
485
|
width: 100%;
|
|
@@ -699,12 +655,6 @@ body {
|
|
|
699
655
|
}
|
|
700
656
|
}
|
|
701
657
|
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
658
|
.service-card {
|
|
709
659
|
background: #ffffff;
|
|
710
660
|
border-radius: 16px;
|
|
@@ -753,14 +703,6 @@ body {
|
|
|
753
703
|
transition: transform 0.25s ease;
|
|
754
704
|
}
|
|
755
705
|
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
706
|
.view-all-btn {
|
|
765
707
|
background: #fff;
|
|
766
708
|
border: 1px solid #1a73e8;
|
|
@@ -778,9 +720,6 @@ body {
|
|
|
778
720
|
|
|
779
721
|
/* Responsive */
|
|
780
722
|
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
723
|
/* SERVICE GRID WRAPPER */
|
|
785
724
|
.upyog-service-wrapper {
|
|
786
725
|
width: 100%;
|
|
@@ -807,18 +746,12 @@ body {
|
|
|
807
746
|
|
|
808
747
|
/* Card */
|
|
809
748
|
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
749
|
/* Left Icon */
|
|
814
750
|
|
|
815
|
-
|
|
816
751
|
/* Text */
|
|
817
752
|
|
|
818
|
-
|
|
819
753
|
/* Arrow */
|
|
820
754
|
|
|
821
|
-
|
|
822
755
|
/* Responsive */
|
|
823
756
|
@media (max-width: 1024px) {
|
|
824
757
|
.upyog-service-grid {
|
|
@@ -1357,7 +1290,6 @@ body {
|
|
|
1357
1290
|
APP STORE BUTTONS
|
|
1358
1291
|
================================ */
|
|
1359
1292
|
|
|
1360
|
-
|
|
1361
1293
|
/* ================================
|
|
1362
1294
|
DIVIDER & BOTTOM
|
|
1363
1295
|
================================ */
|
|
@@ -1527,26 +1459,6 @@ body {
|
|
|
1527
1459
|
transform: skewX(-20deg);
|
|
1528
1460
|
z-index: 2;
|
|
1529
1461
|
}
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
1462
|
|
|
1551
1463
|
.card-double-wave {
|
|
1552
1464
|
position: relative;
|
|
@@ -1577,47 +1489,7 @@ body {
|
|
|
1577
1489
|
opacity: 0.55;
|
|
1578
1490
|
}
|
|
1579
1491
|
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
@keyframes waveMove{
|
|
1492
|
+
@keyframes waveMove {
|
|
1621
1493
|
0% {
|
|
1622
1494
|
transform: translateX(0) rotate(0deg);
|
|
1623
1495
|
}
|
|
@@ -1655,7 +1527,7 @@ body {
|
|
|
1655
1527
|
margin: 30px auto 0 auto;
|
|
1656
1528
|
padding: 12px 30px;
|
|
1657
1529
|
width: fit-content;
|
|
1658
|
-
background: linear-gradient(135deg
|
|
1530
|
+
background: linear-gradient(135deg, #005bbb, #003c8f);
|
|
1659
1531
|
color: #ffffff !important;
|
|
1660
1532
|
text-decoration: none !important;
|
|
1661
1533
|
font-size: 15px;
|
|
@@ -1677,18 +1549,6 @@ body {
|
|
|
1677
1549
|
filter: invert(1);
|
|
1678
1550
|
}
|
|
1679
1551
|
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
1552
|
.footer-separator {
|
|
1693
1553
|
width: 100%;
|
|
1694
1554
|
max-width: 1200px;
|
|
@@ -1726,71 +1586,18 @@ body {
|
|
|
1726
1586
|
background: #f5f5f5;
|
|
1727
1587
|
}
|
|
1728
1588
|
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
1589
|
/* GRID */
|
|
1736
1590
|
|
|
1737
|
-
|
|
1738
1591
|
/* LEFT CARD */
|
|
1739
1592
|
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
1593
|
/* RIGHT CARD */
|
|
1752
1594
|
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
1595
|
/* RESPONSIVE */
|
|
1767
1596
|
|
|
1768
|
-
|
|
1769
1597
|
/* =============================== */
|
|
1770
1598
|
/* Legacy DJB Contact Section */
|
|
1771
1599
|
/* =============================== */
|
|
1772
1600
|
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
1601
|
/* ==========================================================================
|
|
1795
1602
|
CONTACT US PAGE STYLES (HIGH-FIDELITY DESIGN SYSTEM)
|
|
1796
1603
|
========================================================================== */
|
|
@@ -2016,10 +1823,19 @@ body {
|
|
|
2016
1823
|
animation: pulse-red 2s infinite;
|
|
2017
1824
|
}
|
|
2018
1825
|
|
|
2019
|
-
@keyframes pulse-red{
|
|
2020
|
-
0% {
|
|
2021
|
-
|
|
2022
|
-
|
|
1826
|
+
@keyframes pulse-red {
|
|
1827
|
+
0% {
|
|
1828
|
+
transform: scale(1);
|
|
1829
|
+
opacity: 1;
|
|
1830
|
+
}
|
|
1831
|
+
50% {
|
|
1832
|
+
transform: scale(1.1);
|
|
1833
|
+
opacity: 0.7;
|
|
1834
|
+
}
|
|
1835
|
+
100% {
|
|
1836
|
+
transform: scale(1);
|
|
1837
|
+
opacity: 1;
|
|
1838
|
+
}
|
|
2023
1839
|
}
|
|
2024
1840
|
|
|
2025
1841
|
.emergency-meta {
|
|
@@ -2208,7 +2024,8 @@ body {
|
|
|
2208
2024
|
width: 100%;
|
|
2209
2025
|
}
|
|
2210
2026
|
|
|
2211
|
-
.input-group-styled input,
|
|
2027
|
+
.input-group-styled input,
|
|
2028
|
+
.input-group-styled textarea {
|
|
2212
2029
|
width: 100%;
|
|
2213
2030
|
padding: 14px 16px;
|
|
2214
2031
|
border: 1.5px solid #e2e8f0;
|
|
@@ -2221,11 +2038,13 @@ body {
|
|
|
2221
2038
|
transition: all 0.25s ease;
|
|
2222
2039
|
}
|
|
2223
2040
|
|
|
2224
|
-
.input-group-styled input::placeholder,
|
|
2041
|
+
.input-group-styled input::placeholder,
|
|
2042
|
+
.input-group-styled textarea::placeholder {
|
|
2225
2043
|
color: #94a3b8;
|
|
2226
2044
|
}
|
|
2227
2045
|
|
|
2228
|
-
.input-group-styled input:focus,
|
|
2046
|
+
.input-group-styled input:focus,
|
|
2047
|
+
.input-group-styled textarea:focus {
|
|
2229
2048
|
border-color: #0b5cab;
|
|
2230
2049
|
background: #ffffff;
|
|
2231
2050
|
box-shadow: 0 4px 12px rgba(11, 92, 171, 0.05);
|
|
@@ -2489,7 +2308,6 @@ body {
|
|
|
2489
2308
|
|
|
2490
2309
|
/* Layout */
|
|
2491
2310
|
|
|
2492
|
-
|
|
2493
2311
|
/* Sticky sidebar */
|
|
2494
2312
|
.djb-side-nav {
|
|
2495
2313
|
position: sticky;
|
|
@@ -2535,11 +2353,8 @@ body {
|
|
|
2535
2353
|
|
|
2536
2354
|
/* Content area */
|
|
2537
2355
|
|
|
2538
|
-
|
|
2539
2356
|
/* Mobile fallback */
|
|
2540
2357
|
@media (max-width: 900px) {
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
2358
|
.djb-side-nav {
|
|
2544
2359
|
position: relative;
|
|
2545
2360
|
top: auto;
|
|
@@ -2548,22 +2363,7 @@ body {
|
|
|
2548
2363
|
|
|
2549
2364
|
/* HERO */
|
|
2550
2365
|
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2366
|
+
/* ================= ABOUT PAGE – PREMIUM KSMART REDESIGN ================= */
|
|
2567
2367
|
|
|
2568
2368
|
/* ===============================
|
|
2569
2369
|
ABOUT PAGE – KSMART STYLE
|
|
@@ -2577,221 +2377,158 @@ body {
|
|
|
2577
2377
|
|
|
2578
2378
|
/* Main wrapper */
|
|
2579
2379
|
.djb-page-wrapper {
|
|
2380
|
+
max-width: 1200px;
|
|
2580
2381
|
margin: 0 auto;
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
}
|
|
2584
|
-
|
|
2585
|
-
/* Header style override for the "About Us" page header */
|
|
2586
|
-
.djb-page-wrapper .digit-ui-header {
|
|
2587
|
-
font-size: 32px;
|
|
2588
|
-
font-weight: 800;
|
|
2589
|
-
color: #003366;
|
|
2590
|
-
margin-bottom: 28px;
|
|
2591
|
-
letter-spacing: -0.5px;
|
|
2382
|
+
padding: 60px 24px;
|
|
2383
|
+
background: #f8fafc;
|
|
2592
2384
|
}
|
|
2593
2385
|
|
|
2594
|
-
/* About Layout */
|
|
2595
2386
|
.djb-about-layout {
|
|
2596
2387
|
display: grid;
|
|
2597
2388
|
grid-template-columns: 280px 1fr;
|
|
2598
|
-
gap:
|
|
2389
|
+
gap: 40px;
|
|
2599
2390
|
align-items: start;
|
|
2600
|
-
margin-top: 20px;
|
|
2601
2391
|
}
|
|
2602
2392
|
|
|
2603
|
-
/* Sticky sidebar */
|
|
2604
2393
|
.djb-side-nav {
|
|
2605
2394
|
position: sticky;
|
|
2606
|
-
top:
|
|
2395
|
+
top: 100px;
|
|
2607
2396
|
background: #ffffff;
|
|
2608
|
-
border-radius:
|
|
2609
|
-
|
|
2610
|
-
border: 1px solid #e2e8f0 !important;
|
|
2611
|
-
padding: 0 !important; /* Override inline padding */
|
|
2397
|
+
border-radius: 12px;
|
|
2398
|
+
border: 1px solid #e2e8f0;
|
|
2612
2399
|
overflow: hidden;
|
|
2613
|
-
|
|
2614
|
-
transition: all 0.3s ease;
|
|
2400
|
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
2615
2401
|
}
|
|
2616
2402
|
|
|
2617
|
-
/* Sidebar title */
|
|
2618
2403
|
.side-nav-title {
|
|
2619
|
-
background:
|
|
2404
|
+
background: #005bbb;
|
|
2620
2405
|
color: #ffffff;
|
|
2621
|
-
padding: 20px
|
|
2622
|
-
font-
|
|
2623
|
-
font-
|
|
2406
|
+
padding: 16px 20px;
|
|
2407
|
+
font-weight: 700;
|
|
2408
|
+
font-size: 14px;
|
|
2624
2409
|
text-transform: uppercase;
|
|
2625
|
-
letter-spacing:
|
|
2626
|
-
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
2627
|
-
}
|
|
2628
|
-
|
|
2629
|
-
/* Sidebar List */
|
|
2630
|
-
.djb-side-nav ul {
|
|
2631
|
-
list-style: none;
|
|
2632
|
-
margin: 0;
|
|
2633
|
-
padding: 0;
|
|
2410
|
+
letter-spacing: 0.5px;
|
|
2634
2411
|
}
|
|
2635
2412
|
|
|
2636
|
-
.djb-side-nav
|
|
2637
|
-
|
|
2638
|
-
font-size: 14.5px;
|
|
2639
|
-
font-weight: 600;
|
|
2640
|
-
color: #475569;
|
|
2641
|
-
border-bottom: 1px solid #f1f5f9;
|
|
2642
|
-
cursor: pointer;
|
|
2643
|
-
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
|
2644
|
-
display: flex;
|
|
2645
|
-
align-items: center;
|
|
2646
|
-
position: relative;
|
|
2647
|
-
}
|
|
2648
|
-
|
|
2649
|
-
.djb-side-nav li:last-child {
|
|
2650
|
-
border-bottom: none;
|
|
2651
|
-
}
|
|
2652
|
-
|
|
2653
|
-
.djb-side-nav li:hover {
|
|
2654
|
-
background: #f8fafc;
|
|
2655
|
-
color: #0070B4;
|
|
2656
|
-
padding-left: 28px;
|
|
2657
|
-
}
|
|
2658
|
-
|
|
2659
|
-
.djb-side-nav li.active {
|
|
2660
|
-
background: #f1f7fc;
|
|
2661
|
-
color: #0070B4;
|
|
2662
|
-
font-weight: 700;
|
|
2663
|
-
padding-left: 28px;
|
|
2664
|
-
}
|
|
2665
|
-
|
|
2666
|
-
.djb-side-nav li.active::before {
|
|
2667
|
-
content: "";
|
|
2668
|
-
position: absolute;
|
|
2669
|
-
left: 0;
|
|
2670
|
-
top: 0;
|
|
2671
|
-
bottom: 0;
|
|
2672
|
-
width: 4px;
|
|
2673
|
-
background: #0070B4;
|
|
2674
|
-
border-top-right-radius: 4px;
|
|
2675
|
-
border-bottom-right-radius: 4px;
|
|
2676
|
-
}
|
|
2677
|
-
|
|
2678
|
-
/* Content Area */
|
|
2679
|
-
.djb-about-content {
|
|
2413
|
+
.djb-side-nav button {
|
|
2414
|
+
display: block;
|
|
2680
2415
|
width: 100%;
|
|
2681
|
-
|
|
2682
|
-
border-radius: 16px !important;
|
|
2683
|
-
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02) !important;
|
|
2684
|
-
border: 1px solid #e2e8f0 !important;
|
|
2685
|
-
padding: 40px !important; /* Override inline padding */
|
|
2686
|
-
overflow: hidden;
|
|
2687
|
-
}
|
|
2688
|
-
|
|
2689
|
-
/* Tabs */
|
|
2690
|
-
.djb-tabs {
|
|
2691
|
-
display: flex;
|
|
2692
|
-
gap: 8px;
|
|
2693
|
-
margin-bottom: 36px;
|
|
2694
|
-
padding: 6px;
|
|
2695
|
-
background: #f1f5f9;
|
|
2696
|
-
border-radius: 12px;
|
|
2697
|
-
width: fit-content;
|
|
2698
|
-
border: 1px solid #e2e8f0;
|
|
2699
|
-
flex-wrap: wrap;
|
|
2700
|
-
}
|
|
2701
|
-
|
|
2702
|
-
.djb-tabs button {
|
|
2703
|
-
padding: 10px 20px;
|
|
2704
|
-
font-size: 14px;
|
|
2705
|
-
font-weight: 600;
|
|
2706
|
-
color: #64748b;
|
|
2707
|
-
background: transparent;
|
|
2416
|
+
padding: 16px 20px;
|
|
2708
2417
|
border: none;
|
|
2709
|
-
|
|
2418
|
+
background: #fff;
|
|
2419
|
+
text-align: left;
|
|
2420
|
+
font-size: 15px;
|
|
2421
|
+
font-weight: 500;
|
|
2422
|
+
color: #334155;
|
|
2710
2423
|
cursor: pointer;
|
|
2424
|
+
border-bottom: 1px solid #f1f5f9;
|
|
2711
2425
|
transition: all 0.2s ease;
|
|
2712
|
-
outline: none;
|
|
2713
2426
|
}
|
|
2714
2427
|
|
|
2715
|
-
.djb-
|
|
2716
|
-
|
|
2428
|
+
.djb-side-nav button:hover {
|
|
2429
|
+
background: #f8fafc;
|
|
2430
|
+
color: #005bbb;
|
|
2431
|
+
padding-left: 24px;
|
|
2432
|
+
color: #0070b4;
|
|
2433
|
+
padding-left: 28px;
|
|
2717
2434
|
}
|
|
2718
2435
|
|
|
2719
|
-
.djb-
|
|
2720
|
-
background: #
|
|
2721
|
-
color: #
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2436
|
+
.djb-side-nav button.active {
|
|
2437
|
+
background: #eff6ff;
|
|
2438
|
+
color: #005bbb;
|
|
2439
|
+
border-left: 4px solid #005bbb;
|
|
2440
|
+
.djb-side-nav li.active {
|
|
2441
|
+
background: #f1f7fc;
|
|
2442
|
+
color: #0070b4;
|
|
2443
|
+
font-weight: 700;
|
|
2444
|
+
padding-left: 28px;
|
|
2445
|
+
}
|
|
2725
2446
|
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2447
|
+
.djb-side-nav li.active::before {
|
|
2448
|
+
content: "";
|
|
2449
|
+
position: absolute;
|
|
2450
|
+
left: 0;
|
|
2451
|
+
top: 0;
|
|
2452
|
+
bottom: 0;
|
|
2453
|
+
width: 4px;
|
|
2454
|
+
background: #0070b4;
|
|
2455
|
+
border-top-right-radius: 4px;
|
|
2456
|
+
border-bottom-right-radius: 4px;
|
|
2457
|
+
}
|
|
2733
2458
|
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
position: relative;
|
|
2743
|
-
}
|
|
2459
|
+
.djb-about-content {
|
|
2460
|
+
background: #ffffff;
|
|
2461
|
+
padding: 40px;
|
|
2462
|
+
border-radius: 12px;
|
|
2463
|
+
border: 1px solid #e2e8f0;
|
|
2464
|
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
2465
|
+
flex-wrap: wrap;
|
|
2466
|
+
}
|
|
2744
2467
|
|
|
2745
|
-
.djb-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2468
|
+
.djb-tabs button {
|
|
2469
|
+
padding: 10px 20px;
|
|
2470
|
+
font-size: 14px;
|
|
2471
|
+
font-weight: 600;
|
|
2472
|
+
color: #64748b;
|
|
2473
|
+
background: transparent;
|
|
2474
|
+
border: none;
|
|
2475
|
+
border-radius: 8px;
|
|
2476
|
+
cursor: pointer;
|
|
2477
|
+
transition: all 0.2s ease;
|
|
2478
|
+
outline: none;
|
|
2479
|
+
}
|
|
2754
2480
|
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
font-weight: 700;
|
|
2759
|
-
color: #334155;
|
|
2760
|
-
margin: 28px 0 14px;
|
|
2761
|
-
}
|
|
2481
|
+
.djb-tabs button:hover {
|
|
2482
|
+
color: #0070b4;
|
|
2483
|
+
}
|
|
2762
2484
|
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
}
|
|
2485
|
+
.djb-tabs button.active {
|
|
2486
|
+
background: #ffffff;
|
|
2487
|
+
color: #0070b4;
|
|
2488
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
|
|
2489
|
+
border-color: transparent;
|
|
2490
|
+
}
|
|
2770
2491
|
|
|
2771
|
-
.djb-section
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2492
|
+
.djb-section-title {
|
|
2493
|
+
font-size: 28px;
|
|
2494
|
+
color: #1e293b;
|
|
2495
|
+
margin-bottom: 24px;
|
|
2496
|
+
padding-bottom: 12px;
|
|
2497
|
+
border-bottom: 3px solid #005bbb;
|
|
2498
|
+
display: inline-block;
|
|
2499
|
+
border-bottom: 2px solid #f1f5f9;
|
|
2500
|
+
position: relative;
|
|
2501
|
+
}
|
|
2775
2502
|
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2503
|
+
.djb-section-title::after {
|
|
2504
|
+
content: "";
|
|
2505
|
+
position: absolute;
|
|
2506
|
+
bottom: -2px;
|
|
2507
|
+
left: 0;
|
|
2508
|
+
width: 60px;
|
|
2509
|
+
height: 2px;
|
|
2510
|
+
background: #0070b4;
|
|
2511
|
+
}
|
|
2782
2512
|
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2513
|
+
/* Subheading */
|
|
2514
|
+
.djb-sub-title {
|
|
2515
|
+
font-size: 16px;
|
|
2516
|
+
font-weight: 700;
|
|
2517
|
+
color: #334155;
|
|
2518
|
+
margin: 28px 0 14px;
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2521
|
+
.djb-section p {
|
|
2522
|
+
font-size: 16px;
|
|
2523
|
+
line-height: 1.7;
|
|
2524
|
+
color: #475569;
|
|
2525
|
+
margin-bottom: 20px;
|
|
2526
|
+
}
|
|
2790
2527
|
}
|
|
2791
2528
|
|
|
2792
2529
|
.djb-list li::before {
|
|
2793
2530
|
content: "•";
|
|
2794
|
-
color: #
|
|
2531
|
+
color: #0070b4;
|
|
2795
2532
|
font-size: 20px;
|
|
2796
2533
|
position: absolute;
|
|
2797
2534
|
left: 4px;
|
|
@@ -2839,7 +2576,7 @@ body {
|
|
|
2839
2576
|
|
|
2840
2577
|
.djb-table td:last-child {
|
|
2841
2578
|
font-weight: 700;
|
|
2842
|
-
color: #
|
|
2579
|
+
color: #0070b4;
|
|
2843
2580
|
}
|
|
2844
2581
|
|
|
2845
2582
|
/* Revenue Bars */
|
|
@@ -2855,7 +2592,7 @@ body {
|
|
|
2855
2592
|
|
|
2856
2593
|
.revenue-value {
|
|
2857
2594
|
font-weight: 700;
|
|
2858
|
-
color: #
|
|
2595
|
+
color: #0070b4;
|
|
2859
2596
|
font-size: 15px;
|
|
2860
2597
|
}
|
|
2861
2598
|
|
|
@@ -2869,7 +2606,7 @@ body {
|
|
|
2869
2606
|
|
|
2870
2607
|
.revenue-bar .bar {
|
|
2871
2608
|
height: 100%;
|
|
2872
|
-
background: linear-gradient(90deg, #
|
|
2609
|
+
background: linear-gradient(90deg, #0070b4, #0053a6);
|
|
2873
2610
|
border-radius: 5px;
|
|
2874
2611
|
transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
|
|
2875
2612
|
}
|
|
@@ -3010,11 +2747,11 @@ body {
|
|
|
3010
2747
|
@media (max-width: 900px) {
|
|
3011
2748
|
.djb-about-layout {
|
|
3012
2749
|
grid-template-columns: 1fr;
|
|
3013
|
-
gap: 24px;
|
|
3014
2750
|
}
|
|
3015
|
-
|
|
3016
2751
|
.djb-side-nav {
|
|
3017
2752
|
position: relative;
|
|
2753
|
+
top: auto;
|
|
2754
|
+
margin-bottom: 24px;
|
|
3018
2755
|
top: 0;
|
|
3019
2756
|
}
|
|
3020
2757
|
}
|
|
@@ -3032,11 +2769,13 @@ body {
|
|
|
3032
2769
|
font-size: 19px;
|
|
3033
2770
|
}
|
|
3034
2771
|
|
|
3035
|
-
.djb-section p,
|
|
2772
|
+
.djb-section p,
|
|
2773
|
+
.djb-list li {
|
|
3036
2774
|
font-size: 14px;
|
|
3037
2775
|
}
|
|
3038
2776
|
|
|
3039
|
-
.djb-table th,
|
|
2777
|
+
.djb-table th,
|
|
2778
|
+
.djb-table td {
|
|
3040
2779
|
padding: 12px 14px;
|
|
3041
2780
|
font-size: 13.5px;
|
|
3042
2781
|
}
|
|
@@ -3101,7 +2840,6 @@ body {
|
|
|
3101
2840
|
|
|
3102
2841
|
/* ================= LEVEL STYLES ================= */
|
|
3103
2842
|
|
|
3104
|
-
|
|
3105
2843
|
.level-1 {
|
|
3106
2844
|
background: #eaf2fb;
|
|
3107
2845
|
}
|
|
@@ -3111,7 +2849,8 @@ body {
|
|
|
3111
2849
|
}
|
|
3112
2850
|
|
|
3113
2851
|
/* 🔥 Allow wrapping ONLY from level-3 downward */
|
|
3114
|
-
.level-2 + .org-children,
|
|
2852
|
+
.level-2 + .org-children,
|
|
2853
|
+
.level-3 + .org-children {
|
|
3115
2854
|
flex-wrap: wrap;
|
|
3116
2855
|
}
|
|
3117
2856
|
/* ================= CHILDREN ================= */
|
|
@@ -3147,24 +2886,18 @@ body {
|
|
|
3147
2886
|
background: #0b5fa5;
|
|
3148
2887
|
}
|
|
3149
2888
|
|
|
3150
|
-
|
|
3151
|
-
|
|
3152
2889
|
.svg-node {
|
|
3153
2890
|
fill: #ffffff;
|
|
3154
2891
|
stroke: #0b5fa5;
|
|
3155
2892
|
stroke-width: 2;
|
|
3156
2893
|
}
|
|
3157
2894
|
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
2895
|
svg text {
|
|
3161
2896
|
font-size: 12px;
|
|
3162
2897
|
font-weight: 600;
|
|
3163
2898
|
fill: #0b5fa5;
|
|
3164
2899
|
}
|
|
3165
2900
|
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
2901
|
.orgchart-viewport {
|
|
3169
2902
|
width: 100%;
|
|
3170
2903
|
height: calc(100vh - 260px); /* header + tabs */
|
|
@@ -3319,7 +3052,6 @@ svg text {
|
|
|
3319
3052
|
background: var(--gray-100);
|
|
3320
3053
|
border: 2px solid var(--gray-300);
|
|
3321
3054
|
border-radius: 10px;
|
|
3322
|
-
padding: 4px 4px 4px 12px;
|
|
3323
3055
|
transition: all 0.3s;
|
|
3324
3056
|
min-width: 300px;
|
|
3325
3057
|
}
|
|
@@ -3625,9 +3357,6 @@ svg text {
|
|
|
3625
3357
|
|
|
3626
3358
|
/* View Mode Variations */
|
|
3627
3359
|
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
3360
|
.org-box:hover {
|
|
3632
3361
|
background: var(--gray-50);
|
|
3633
3362
|
transform: translateY(-4px);
|
|
@@ -3654,7 +3383,7 @@ svg text {
|
|
|
3654
3383
|
box-shadow: 0 0 25px rgba(72, 187, 120, 0.4);
|
|
3655
3384
|
}
|
|
3656
3385
|
|
|
3657
|
-
@keyframes pulse-highlight{
|
|
3386
|
+
@keyframes pulse-highlight {
|
|
3658
3387
|
0%,
|
|
3659
3388
|
100% {
|
|
3660
3389
|
box-shadow: 0 0 25px rgba(246, 173, 85, 0.6);
|
|
@@ -3673,10 +3402,6 @@ svg text {
|
|
|
3673
3402
|
word-wrap: break-word;
|
|
3674
3403
|
}
|
|
3675
3404
|
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
3405
|
.expand-icon {
|
|
3681
3406
|
position: absolute;
|
|
3682
3407
|
top: 6px;
|
|
@@ -3745,7 +3470,8 @@ svg text {
|
|
|
3745
3470
|
transform: translateY(-55px);
|
|
3746
3471
|
}
|
|
3747
3472
|
|
|
3748
|
-
.org-children .org-node:first-child::after,
|
|
3473
|
+
.org-children .org-node:first-child::after,
|
|
3474
|
+
.org-children .org-node:last-child::after {
|
|
3749
3475
|
content: "";
|
|
3750
3476
|
position: absolute;
|
|
3751
3477
|
top: -55px;
|
|
@@ -3827,7 +3553,7 @@ svg text {
|
|
|
3827
3553
|
animation: slideIn 0.3s ease;
|
|
3828
3554
|
}
|
|
3829
3555
|
|
|
3830
|
-
@keyframes slideIn{
|
|
3556
|
+
@keyframes slideIn {
|
|
3831
3557
|
from {
|
|
3832
3558
|
transform: translateY(100px);
|
|
3833
3559
|
opacity: 0;
|
|
@@ -3997,7 +3723,12 @@ svg text {
|
|
|
3997
3723
|
|
|
3998
3724
|
/* Print Styles */
|
|
3999
3725
|
@media print {
|
|
4000
|
-
.org-chart-toolbar,
|
|
3726
|
+
.org-chart-toolbar,
|
|
3727
|
+
.level-controls,
|
|
3728
|
+
.instruction-banner,
|
|
3729
|
+
.info-panel,
|
|
3730
|
+
.chart-legend,
|
|
3731
|
+
.zoom-controls {
|
|
4001
3732
|
display: none !important;
|
|
4002
3733
|
}
|
|
4003
3734
|
|
|
@@ -4083,10 +3814,6 @@ svg text {
|
|
|
4083
3814
|
gap: 10px;
|
|
4084
3815
|
}
|
|
4085
3816
|
|
|
4086
|
-
|
|
4087
|
-
|
|
4088
|
-
|
|
4089
|
-
|
|
4090
3817
|
/* ===== Hint ===== */
|
|
4091
3818
|
.doc-hint {
|
|
4092
3819
|
font-size: 13px;
|
|
@@ -4117,14 +3844,7 @@ svg text {
|
|
|
4117
3844
|
|
|
4118
3845
|
/* ===== Skeleton Loader ===== */
|
|
4119
3846
|
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
@keyframes skeleton{
|
|
3847
|
+
@keyframes skeleton {
|
|
4128
3848
|
0% {
|
|
4129
3849
|
background-position: 200% 0;
|
|
4130
3850
|
}
|
|
@@ -4139,7 +3859,8 @@ svg text {
|
|
|
4139
3859
|
visibility: hidden;
|
|
4140
3860
|
}
|
|
4141
3861
|
|
|
4142
|
-
.pdf-print-area,
|
|
3862
|
+
.pdf-print-area,
|
|
3863
|
+
.pdf-print-area * {
|
|
4143
3864
|
visibility: visible;
|
|
4144
3865
|
}
|
|
4145
3866
|
|
|
@@ -4256,7 +3977,8 @@ body {
|
|
|
4256
3977
|
height: auto !important; /* Prevents text cutoff */
|
|
4257
3978
|
}
|
|
4258
3979
|
|
|
4259
|
-
.upyog-hero-left,
|
|
3980
|
+
.upyog-hero-left,
|
|
3981
|
+
.upyog-hero-right {
|
|
4260
3982
|
width: 100% !important;
|
|
4261
3983
|
}
|
|
4262
3984
|
|
|
@@ -4500,7 +4222,7 @@ body {
|
|
|
4500
4222
|
gap: 40px !important;
|
|
4501
4223
|
padding: 40px 24px 20px 24px !important;
|
|
4502
4224
|
}
|
|
4503
|
-
|
|
4225
|
+
|
|
4504
4226
|
.footer-logos {
|
|
4505
4227
|
gap: 40px !important;
|
|
4506
4228
|
padding: 16px 0 !important;
|
|
@@ -4545,3 +4267,483 @@ body {
|
|
|
4545
4267
|
}
|
|
4546
4268
|
}
|
|
4547
4269
|
|
|
4270
|
+
/* =================================================
|
|
4271
|
+
ABOUT PAGE v2 – Premium Design (Matches Contact Us)
|
|
4272
|
+
================================================= */
|
|
4273
|
+
|
|
4274
|
+
/* ── Page Wrapper (masks body background leaks) ── */
|
|
4275
|
+
.about-page-wrapper,
|
|
4276
|
+
.contact-page-wrapper {
|
|
4277
|
+
background-color: #f8fafc !important;
|
|
4278
|
+
min-height: 100vh;
|
|
4279
|
+
width: 100%;
|
|
4280
|
+
}
|
|
4281
|
+
|
|
4282
|
+
/* ── Hero Banner ── */
|
|
4283
|
+
.about-hero-banner {
|
|
4284
|
+
position: relative;
|
|
4285
|
+
background: linear-gradient(135deg, #061224 0%, #0b5cab 100%);
|
|
4286
|
+
padding: 60px 40px;
|
|
4287
|
+
text-align: center;
|
|
4288
|
+
color: #ffffff;
|
|
4289
|
+
overflow: hidden;
|
|
4290
|
+
}
|
|
4291
|
+
.about-hero-overlay {
|
|
4292
|
+
position: absolute;
|
|
4293
|
+
top: 0;
|
|
4294
|
+
left: 0;
|
|
4295
|
+
width: 100%;
|
|
4296
|
+
height: 100%;
|
|
4297
|
+
background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 80%);
|
|
4298
|
+
pointer-events: none;
|
|
4299
|
+
}
|
|
4300
|
+
.about-hero-content {
|
|
4301
|
+
position: relative;
|
|
4302
|
+
z-index: 2;
|
|
4303
|
+
max-width: 800px;
|
|
4304
|
+
margin: 0 auto;
|
|
4305
|
+
}
|
|
4306
|
+
.about-hero-badge {
|
|
4307
|
+
display: inline-block;
|
|
4308
|
+
background: rgba(255, 255, 255, 0.08);
|
|
4309
|
+
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
4310
|
+
padding: 6px 16px;
|
|
4311
|
+
border-radius: 50px;
|
|
4312
|
+
font-size: 13px;
|
|
4313
|
+
font-weight: 600;
|
|
4314
|
+
text-transform: uppercase;
|
|
4315
|
+
letter-spacing: 1px;
|
|
4316
|
+
color: #3b82f6;
|
|
4317
|
+
margin-bottom: 16px;
|
|
4318
|
+
}
|
|
4319
|
+
.about-hero-content h1 {
|
|
4320
|
+
font-size: 32px;
|
|
4321
|
+
font-weight: 700;
|
|
4322
|
+
margin: 0 0 12px;
|
|
4323
|
+
letter-spacing: -0.5px;
|
|
4324
|
+
line-height: 1.2;
|
|
4325
|
+
}
|
|
4326
|
+
.about-hero-content p {
|
|
4327
|
+
font-size: 15.5px;
|
|
4328
|
+
color: #94a3b8;
|
|
4329
|
+
line-height: 1.6;
|
|
4330
|
+
margin: 0;
|
|
4331
|
+
}
|
|
4332
|
+
|
|
4333
|
+
/* ── Page Container ── */
|
|
4334
|
+
.about-page-container {
|
|
4335
|
+
max-width: 1280px;
|
|
4336
|
+
margin: 0 auto;
|
|
4337
|
+
padding: 40px 24px 60px;
|
|
4338
|
+
}
|
|
4339
|
+
|
|
4340
|
+
/* ── Layout Grid ── */
|
|
4341
|
+
.about-layout-grid {
|
|
4342
|
+
display: grid;
|
|
4343
|
+
grid-template-columns: 270px 1fr;
|
|
4344
|
+
gap: 30px;
|
|
4345
|
+
align-items: start;
|
|
4346
|
+
}
|
|
4347
|
+
|
|
4348
|
+
/* ── Sidebar ── */
|
|
4349
|
+
.about-side-nav {
|
|
4350
|
+
position: sticky;
|
|
4351
|
+
top: 100px;
|
|
4352
|
+
background: #ffffff;
|
|
4353
|
+
border-radius: 16px;
|
|
4354
|
+
border: 1px solid #f1f5f9;
|
|
4355
|
+
box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.06);
|
|
4356
|
+
overflow: hidden;
|
|
4357
|
+
height: fit-content;
|
|
4358
|
+
transition: box-shadow 0.3s ease;
|
|
4359
|
+
}
|
|
4360
|
+
.about-side-nav:hover {
|
|
4361
|
+
box-shadow: 0 16px 40px -15px rgba(2, 12, 27, 0.1);
|
|
4362
|
+
}
|
|
4363
|
+
.about-side-nav-header {
|
|
4364
|
+
display: flex;
|
|
4365
|
+
align-items: center;
|
|
4366
|
+
gap: 10px;
|
|
4367
|
+
background: linear-gradient(135deg, #061224 0%, #0b5cab 100%);
|
|
4368
|
+
color: #ffffff;
|
|
4369
|
+
padding: 20px 22px;
|
|
4370
|
+
font-size: 12px;
|
|
4371
|
+
font-weight: 800;
|
|
4372
|
+
text-transform: uppercase;
|
|
4373
|
+
letter-spacing: 1.2px;
|
|
4374
|
+
}
|
|
4375
|
+
.about-side-nav-header svg {
|
|
4376
|
+
opacity: 0.85;
|
|
4377
|
+
}
|
|
4378
|
+
.about-side-nav-list {
|
|
4379
|
+
list-style: none;
|
|
4380
|
+
margin: 0;
|
|
4381
|
+
padding: 8px 0;
|
|
4382
|
+
}
|
|
4383
|
+
.about-side-nav-item {
|
|
4384
|
+
display: flex;
|
|
4385
|
+
align-items: center;
|
|
4386
|
+
gap: 12px;
|
|
4387
|
+
padding: 14px 22px;
|
|
4388
|
+
font-size: 14px;
|
|
4389
|
+
font-weight: 600;
|
|
4390
|
+
color: #475569;
|
|
4391
|
+
cursor: pointer;
|
|
4392
|
+
border-bottom: 1px solid #f8fafc;
|
|
4393
|
+
transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
|
|
4394
|
+
position: relative;
|
|
4395
|
+
}
|
|
4396
|
+
.about-side-nav-item:last-child {
|
|
4397
|
+
border-bottom: none;
|
|
4398
|
+
}
|
|
4399
|
+
.about-side-nav-item:hover {
|
|
4400
|
+
background: #f8fafc;
|
|
4401
|
+
color: #0b5cab;
|
|
4402
|
+
padding-left: 26px;
|
|
4403
|
+
}
|
|
4404
|
+
.about-side-nav-item.active {
|
|
4405
|
+
background: #eff6ff;
|
|
4406
|
+
color: #0b5cab;
|
|
4407
|
+
font-weight: 700;
|
|
4408
|
+
padding-left: 26px;
|
|
4409
|
+
}
|
|
4410
|
+
.about-side-nav-item.active::before {
|
|
4411
|
+
content: "";
|
|
4412
|
+
position: absolute;
|
|
4413
|
+
left: 0;
|
|
4414
|
+
top: 0;
|
|
4415
|
+
bottom: 0;
|
|
4416
|
+
width: 4px;
|
|
4417
|
+
background: #0b5cab;
|
|
4418
|
+
border-top-right-radius: 4px;
|
|
4419
|
+
border-bottom-right-radius: 4px;
|
|
4420
|
+
}
|
|
4421
|
+
.about-nav-icon {
|
|
4422
|
+
display: flex;
|
|
4423
|
+
align-items: center;
|
|
4424
|
+
justify-content: center;
|
|
4425
|
+
width: 32px;
|
|
4426
|
+
height: 32px;
|
|
4427
|
+
min-width: 32px;
|
|
4428
|
+
background: #f1f5f9;
|
|
4429
|
+
border-radius: 8px;
|
|
4430
|
+
color: #64748b;
|
|
4431
|
+
transition: all 0.22s ease;
|
|
4432
|
+
}
|
|
4433
|
+
.about-side-nav-item.active .about-nav-icon,
|
|
4434
|
+
.about-side-nav-item:hover .about-nav-icon {
|
|
4435
|
+
background: #dbeafe;
|
|
4436
|
+
color: #0b5cab;
|
|
4437
|
+
}
|
|
4438
|
+
.about-nav-label {
|
|
4439
|
+
flex: 1;
|
|
4440
|
+
line-height: 1.3;
|
|
4441
|
+
}
|
|
4442
|
+
.about-nav-chevron {
|
|
4443
|
+
color: #0b5cab;
|
|
4444
|
+
opacity: 0.7;
|
|
4445
|
+
flex-shrink: 0;
|
|
4446
|
+
}
|
|
4447
|
+
|
|
4448
|
+
/* ── Content Card ── */
|
|
4449
|
+
.about-content-card {
|
|
4450
|
+
background: #ffffff;
|
|
4451
|
+
border-radius: 16px;
|
|
4452
|
+
border: 1px solid #f1f5f9;
|
|
4453
|
+
box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.06);
|
|
4454
|
+
padding: 36px;
|
|
4455
|
+
transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
4456
|
+
min-height: 480px;
|
|
4457
|
+
}
|
|
4458
|
+
.about-content-card:hover {
|
|
4459
|
+
box-shadow: 0 16px 40px -15px rgba(2, 12, 27, 0.1);
|
|
4460
|
+
}
|
|
4461
|
+
.about-content-card-header {
|
|
4462
|
+
display: flex;
|
|
4463
|
+
align-items: center;
|
|
4464
|
+
gap: 12px;
|
|
4465
|
+
margin-bottom: 28px;
|
|
4466
|
+
padding-bottom: 18px;
|
|
4467
|
+
border-bottom: 1px solid #f1f5f9;
|
|
4468
|
+
}
|
|
4469
|
+
.about-content-card-header-icon {
|
|
4470
|
+
display: flex;
|
|
4471
|
+
align-items: center;
|
|
4472
|
+
justify-content: center;
|
|
4473
|
+
width: 38px;
|
|
4474
|
+
height: 38px;
|
|
4475
|
+
background: #eff6ff;
|
|
4476
|
+
color: #0b5cab;
|
|
4477
|
+
border-radius: 10px;
|
|
4478
|
+
}
|
|
4479
|
+
|
|
4480
|
+
/* ── Tab Bar ── */
|
|
4481
|
+
.about-tab-bar {
|
|
4482
|
+
display: flex;
|
|
4483
|
+
gap: 6px;
|
|
4484
|
+
margin-bottom: 32px;
|
|
4485
|
+
padding: 5px;
|
|
4486
|
+
background: #f1f5f9;
|
|
4487
|
+
border-radius: 12px;
|
|
4488
|
+
border: 1px solid #e2e8f0;
|
|
4489
|
+
flex-wrap: wrap;
|
|
4490
|
+
width: fit-content;
|
|
4491
|
+
}
|
|
4492
|
+
.about-tab-btn {
|
|
4493
|
+
padding: 9px 18px;
|
|
4494
|
+
font-size: 13.5px;
|
|
4495
|
+
font-weight: 600;
|
|
4496
|
+
color: #64748b;
|
|
4497
|
+
background: transparent;
|
|
4498
|
+
border: none;
|
|
4499
|
+
border-radius: 8px;
|
|
4500
|
+
cursor: pointer;
|
|
4501
|
+
transition: all 0.2s ease;
|
|
4502
|
+
outline: none;
|
|
4503
|
+
white-space: nowrap;
|
|
4504
|
+
}
|
|
4505
|
+
.about-tab-btn:hover {
|
|
4506
|
+
color: #0b5cab;
|
|
4507
|
+
background: rgba(255, 255, 255, 0.6);
|
|
4508
|
+
}
|
|
4509
|
+
.about-tab-btn.active {
|
|
4510
|
+
background: #ffffff;
|
|
4511
|
+
color: #0b5cab;
|
|
4512
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
|
|
4513
|
+
}
|
|
4514
|
+
|
|
4515
|
+
/* ── Coming Soon ── */
|
|
4516
|
+
.about-coming-soon {
|
|
4517
|
+
display: flex;
|
|
4518
|
+
flex-direction: column;
|
|
4519
|
+
align-items: center;
|
|
4520
|
+
justify-content: center;
|
|
4521
|
+
padding: 80px 40px;
|
|
4522
|
+
gap: 16px;
|
|
4523
|
+
text-align: center;
|
|
4524
|
+
}
|
|
4525
|
+
.about-coming-soon h3 {
|
|
4526
|
+
font-size: 20px;
|
|
4527
|
+
font-weight: 700;
|
|
4528
|
+
color: #334155;
|
|
4529
|
+
margin: 0;
|
|
4530
|
+
}
|
|
4531
|
+
.about-coming-soon p {
|
|
4532
|
+
font-size: 15px;
|
|
4533
|
+
color: #94a3b8;
|
|
4534
|
+
margin: 0;
|
|
4535
|
+
}
|
|
4536
|
+
|
|
4537
|
+
/* ── Responsive ── */
|
|
4538
|
+
@media (max-width: 1024px) {
|
|
4539
|
+
.about-layout-grid {
|
|
4540
|
+
grid-template-columns: 240px 1fr;
|
|
4541
|
+
gap: 24px;
|
|
4542
|
+
}
|
|
4543
|
+
}
|
|
4544
|
+
@media (max-width: 900px) {
|
|
4545
|
+
.about-layout-grid {
|
|
4546
|
+
grid-template-columns: 1fr;
|
|
4547
|
+
gap: 20px;
|
|
4548
|
+
}
|
|
4549
|
+
.about-side-nav {
|
|
4550
|
+
position: relative;
|
|
4551
|
+
top: 0;
|
|
4552
|
+
}
|
|
4553
|
+
.about-side-nav-list {
|
|
4554
|
+
display: grid;
|
|
4555
|
+
grid-template-columns: repeat(2, 1fr);
|
|
4556
|
+
padding: 0;
|
|
4557
|
+
}
|
|
4558
|
+
}
|
|
4559
|
+
@media (max-width: 768px) {
|
|
4560
|
+
.about-hero-banner {
|
|
4561
|
+
padding: 40px 20px;
|
|
4562
|
+
}
|
|
4563
|
+
.about-hero-content h1 {
|
|
4564
|
+
font-size: 24px;
|
|
4565
|
+
}
|
|
4566
|
+
.about-hero-content p {
|
|
4567
|
+
font-size: 14px;
|
|
4568
|
+
}
|
|
4569
|
+
.about-page-container {
|
|
4570
|
+
padding: 24px 16px 48px;
|
|
4571
|
+
}
|
|
4572
|
+
.about-content-card {
|
|
4573
|
+
padding: 24px 18px;
|
|
4574
|
+
}
|
|
4575
|
+
.about-tab-bar {
|
|
4576
|
+
width: 100%;
|
|
4577
|
+
}
|
|
4578
|
+
.about-tab-btn {
|
|
4579
|
+
padding: 8px 12px;
|
|
4580
|
+
font-size: 13px;
|
|
4581
|
+
}
|
|
4582
|
+
.about-side-nav-list {
|
|
4583
|
+
grid-template-columns: 1fr;
|
|
4584
|
+
}
|
|
4585
|
+
}
|
|
4586
|
+
@media (max-width: 480px) {
|
|
4587
|
+
.about-hero-content h1 {
|
|
4588
|
+
font-size: 20px;
|
|
4589
|
+
}
|
|
4590
|
+
.about-tab-bar {
|
|
4591
|
+
gap: 4px;
|
|
4592
|
+
}
|
|
4593
|
+
}
|
|
4594
|
+
|
|
4595
|
+
/* ── Content block styles (used by renderBlock) ── */
|
|
4596
|
+
.djb-section {
|
|
4597
|
+
background: transparent;
|
|
4598
|
+
border: none;
|
|
4599
|
+
padding: 0;
|
|
4600
|
+
margin-bottom: 0;
|
|
4601
|
+
}
|
|
4602
|
+
.djb-section p {
|
|
4603
|
+
font-size: 15px;
|
|
4604
|
+
line-height: 1.8;
|
|
4605
|
+
color: #475569;
|
|
4606
|
+
margin-bottom: 18px;
|
|
4607
|
+
}
|
|
4608
|
+
.djb-section p strong {
|
|
4609
|
+
color: #003366;
|
|
4610
|
+
font-weight: 700;
|
|
4611
|
+
}
|
|
4612
|
+
|
|
4613
|
+
.djb-sub-title {
|
|
4614
|
+
font-size: 16px;
|
|
4615
|
+
font-weight: 700;
|
|
4616
|
+
color: #334155;
|
|
4617
|
+
margin: 28px 0 14px;
|
|
4618
|
+
}
|
|
4619
|
+
|
|
4620
|
+
.djb-list {
|
|
4621
|
+
padding-left: 0;
|
|
4622
|
+
margin: 20px 0;
|
|
4623
|
+
list-style: none;
|
|
4624
|
+
}
|
|
4625
|
+
.djb-list li {
|
|
4626
|
+
position: relative;
|
|
4627
|
+
padding-left: 22px;
|
|
4628
|
+
margin-bottom: 12px;
|
|
4629
|
+
font-size: 15px;
|
|
4630
|
+
line-height: 1.7;
|
|
4631
|
+
color: #475569;
|
|
4632
|
+
}
|
|
4633
|
+
.djb-list li::before {
|
|
4634
|
+
content: "•";
|
|
4635
|
+
color: #0070b4;
|
|
4636
|
+
font-size: 20px;
|
|
4637
|
+
position: absolute;
|
|
4638
|
+
left: 4px;
|
|
4639
|
+
top: -2px;
|
|
4640
|
+
}
|
|
4641
|
+
|
|
4642
|
+
.djb-table {
|
|
4643
|
+
width: 100%;
|
|
4644
|
+
border-collapse: separate;
|
|
4645
|
+
border-spacing: 0;
|
|
4646
|
+
margin: 28px 0;
|
|
4647
|
+
border-radius: 12px;
|
|
4648
|
+
border: 1px solid #e2e8f0;
|
|
4649
|
+
overflow: hidden;
|
|
4650
|
+
}
|
|
4651
|
+
.djb-table th {
|
|
4652
|
+
background: #f8fafc;
|
|
4653
|
+
color: #1e293b;
|
|
4654
|
+
font-weight: 700;
|
|
4655
|
+
font-size: 13px;
|
|
4656
|
+
text-transform: uppercase;
|
|
4657
|
+
letter-spacing: 0.5px;
|
|
4658
|
+
padding: 16px 20px;
|
|
4659
|
+
border-bottom: 1.5px solid #e2e8f0;
|
|
4660
|
+
text-align: left;
|
|
4661
|
+
}
|
|
4662
|
+
.djb-table td {
|
|
4663
|
+
padding: 16px 20px;
|
|
4664
|
+
border-bottom: 1px solid #e2e8f0;
|
|
4665
|
+
color: #475569;
|
|
4666
|
+
font-size: 14.5px;
|
|
4667
|
+
line-height: 1.6;
|
|
4668
|
+
}
|
|
4669
|
+
.djb-table tr:last-child td {
|
|
4670
|
+
border-bottom: none;
|
|
4671
|
+
}
|
|
4672
|
+
.djb-table tbody tr:hover td {
|
|
4673
|
+
background: #f8fafc;
|
|
4674
|
+
}
|
|
4675
|
+
.djb-table td:last-child {
|
|
4676
|
+
font-weight: 700;
|
|
4677
|
+
color: #0070b4;
|
|
4678
|
+
}
|
|
4679
|
+
|
|
4680
|
+
.djb-revenue-table td {
|
|
4681
|
+
padding: 20px;
|
|
4682
|
+
}
|
|
4683
|
+
.djb-revenue-table .revenue-cell {
|
|
4684
|
+
display: flex;
|
|
4685
|
+
flex-direction: column;
|
|
4686
|
+
gap: 8px;
|
|
4687
|
+
}
|
|
4688
|
+
.revenue-value {
|
|
4689
|
+
font-weight: 700;
|
|
4690
|
+
color: #0070b4;
|
|
4691
|
+
font-size: 15px;
|
|
4692
|
+
}
|
|
4693
|
+
.revenue-bar {
|
|
4694
|
+
width: 100%;
|
|
4695
|
+
height: 10px;
|
|
4696
|
+
background: #e2e8f0;
|
|
4697
|
+
border-radius: 5px;
|
|
4698
|
+
overflow: hidden;
|
|
4699
|
+
}
|
|
4700
|
+
.revenue-bar .bar {
|
|
4701
|
+
height: 100%;
|
|
4702
|
+
background: linear-gradient(90deg, #0070b4, #0053a6);
|
|
4703
|
+
border-radius: 5px;
|
|
4704
|
+
transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
|
|
4705
|
+
}
|
|
4706
|
+
.djb-revenue-table tbody tr:hover .bar {
|
|
4707
|
+
filter: brightness(1.05);
|
|
4708
|
+
}
|
|
4709
|
+
.bar-36 {
|
|
4710
|
+
width: 36%;
|
|
4711
|
+
}
|
|
4712
|
+
.bar-52 {
|
|
4713
|
+
width: 52%;
|
|
4714
|
+
}
|
|
4715
|
+
.bar-68 {
|
|
4716
|
+
width: 68%;
|
|
4717
|
+
}
|
|
4718
|
+
.bar-69 {
|
|
4719
|
+
width: 69%;
|
|
4720
|
+
}
|
|
4721
|
+
.bar-81 {
|
|
4722
|
+
width: 81%;
|
|
4723
|
+
}
|
|
4724
|
+
.bar-86 {
|
|
4725
|
+
width: 86%;
|
|
4726
|
+
}
|
|
4727
|
+
.bar-91 {
|
|
4728
|
+
width: 91%;
|
|
4729
|
+
}
|
|
4730
|
+
.bar-96 {
|
|
4731
|
+
width: 96%;
|
|
4732
|
+
}
|
|
4733
|
+
.bar-100 {
|
|
4734
|
+
width: 100%;
|
|
4735
|
+
}
|
|
4736
|
+
|
|
4737
|
+
.djb-org-fullwidth {
|
|
4738
|
+
text-align: center;
|
|
4739
|
+
}
|
|
4740
|
+
.org-structure-image {
|
|
4741
|
+
max-width: 100%;
|
|
4742
|
+
height: auto;
|
|
4743
|
+
display: block;
|
|
4744
|
+
border-radius: 8px;
|
|
4745
|
+
transition: transform 0.3s ease;
|
|
4746
|
+
}
|
|
4747
|
+
.org-structure-image:hover {
|
|
4748
|
+
transform: scale(1.015);
|
|
4749
|
+
}
|