@djb25/digit-ui-css 1.0.63 → 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 +575 -343
- 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,10 +2363,19 @@ body {
|
|
|
2548
2363
|
|
|
2549
2364
|
/* HERO */
|
|
2550
2365
|
|
|
2366
|
+
/* ================= ABOUT PAGE – PREMIUM KSMART REDESIGN ================= */
|
|
2551
2367
|
|
|
2368
|
+
/* ===============================
|
|
2369
|
+
ABOUT PAGE – KSMART STYLE
|
|
2370
|
+
DJB COLOR TUNING
|
|
2371
|
+
=============================== */
|
|
2552
2372
|
|
|
2553
|
-
/*
|
|
2373
|
+
/* Page background for About Us page */
|
|
2374
|
+
body {
|
|
2375
|
+
background: #f8fafc;
|
|
2376
|
+
}
|
|
2554
2377
|
|
|
2378
|
+
/* Main wrapper */
|
|
2555
2379
|
.djb-page-wrapper {
|
|
2556
2380
|
max-width: 1200px;
|
|
2557
2381
|
margin: 0 auto;
|
|
@@ -2573,7 +2397,7 @@ body {
|
|
|
2573
2397
|
border-radius: 12px;
|
|
2574
2398
|
border: 1px solid #e2e8f0;
|
|
2575
2399
|
overflow: hidden;
|
|
2576
|
-
box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
|
|
2400
|
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
2577
2401
|
}
|
|
2578
2402
|
|
|
2579
2403
|
.side-nav-title {
|
|
@@ -2605,54 +2429,370 @@ body {
|
|
|
2605
2429
|
background: #f8fafc;
|
|
2606
2430
|
color: #005bbb;
|
|
2607
2431
|
padding-left: 24px;
|
|
2432
|
+
color: #0070b4;
|
|
2433
|
+
padding-left: 28px;
|
|
2608
2434
|
}
|
|
2609
2435
|
|
|
2610
2436
|
.djb-side-nav button.active {
|
|
2611
2437
|
background: #eff6ff;
|
|
2612
2438
|
color: #005bbb;
|
|
2613
2439
|
border-left: 4px solid #005bbb;
|
|
2614
|
-
|
|
2615
|
-
|
|
2440
|
+
.djb-side-nav li.active {
|
|
2441
|
+
background: #f1f7fc;
|
|
2442
|
+
color: #0070b4;
|
|
2443
|
+
font-weight: 700;
|
|
2444
|
+
padding-left: 28px;
|
|
2445
|
+
}
|
|
2616
2446
|
|
|
2617
|
-
.djb-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
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
|
+
}
|
|
2624
2458
|
|
|
2625
|
-
.djb-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
}
|
|
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
|
+
}
|
|
2633
2467
|
|
|
2634
|
-
.djb-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
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
|
+
}
|
|
2640
2480
|
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
grid-template-columns: 1fr;
|
|
2481
|
+
.djb-tabs button:hover {
|
|
2482
|
+
color: #0070b4;
|
|
2644
2483
|
}
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2484
|
+
|
|
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
|
+
}
|
|
2491
|
+
|
|
2492
|
+
.djb-section-title {
|
|
2493
|
+
font-size: 28px;
|
|
2494
|
+
color: #1e293b;
|
|
2648
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;
|
|
2649
2501
|
}
|
|
2650
|
-
}
|
|
2651
2502
|
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
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
|
+
}
|
|
2512
|
+
|
|
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
|
+
}
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2529
|
+
.djb-list li::before {
|
|
2530
|
+
content: "•";
|
|
2531
|
+
color: #0070b4;
|
|
2532
|
+
font-size: 20px;
|
|
2533
|
+
position: absolute;
|
|
2534
|
+
left: 4px;
|
|
2535
|
+
top: -2px;
|
|
2536
|
+
}
|
|
2537
|
+
|
|
2538
|
+
/* Tables */
|
|
2539
|
+
.djb-table {
|
|
2540
|
+
width: 100%;
|
|
2541
|
+
border-collapse: separate;
|
|
2542
|
+
border-spacing: 0;
|
|
2543
|
+
margin: 28px 0;
|
|
2544
|
+
border-radius: 12px;
|
|
2545
|
+
border: 1px solid #e2e8f0;
|
|
2546
|
+
overflow: hidden;
|
|
2547
|
+
}
|
|
2548
|
+
|
|
2549
|
+
.djb-table th {
|
|
2550
|
+
background: #f8fafc;
|
|
2551
|
+
color: #1e293b;
|
|
2552
|
+
font-weight: 700;
|
|
2553
|
+
font-size: 13px;
|
|
2554
|
+
text-transform: uppercase;
|
|
2555
|
+
letter-spacing: 0.5px;
|
|
2556
|
+
padding: 16px 20px;
|
|
2557
|
+
border-bottom: 1.5px solid #e2e8f0;
|
|
2558
|
+
text-align: left;
|
|
2559
|
+
}
|
|
2560
|
+
|
|
2561
|
+
.djb-table td {
|
|
2562
|
+
padding: 16px 20px;
|
|
2563
|
+
border-bottom: 1px solid #e2e8f0;
|
|
2564
|
+
color: #475569;
|
|
2565
|
+
font-size: 14.5px;
|
|
2566
|
+
line-height: 1.6;
|
|
2567
|
+
}
|
|
2568
|
+
|
|
2569
|
+
.djb-table tr:last-child td {
|
|
2570
|
+
border-bottom: none;
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2573
|
+
.djb-table tbody tr:hover td {
|
|
2574
|
+
background: #f8fafc;
|
|
2575
|
+
}
|
|
2576
|
+
|
|
2577
|
+
.djb-table td:last-child {
|
|
2578
|
+
font-weight: 700;
|
|
2579
|
+
color: #0070b4;
|
|
2580
|
+
}
|
|
2581
|
+
|
|
2582
|
+
/* Revenue Bars */
|
|
2583
|
+
.djb-revenue-table td {
|
|
2584
|
+
padding: 20px;
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
.djb-revenue-table .revenue-cell {
|
|
2588
|
+
display: flex;
|
|
2589
|
+
flex-direction: column;
|
|
2590
|
+
gap: 8px;
|
|
2591
|
+
}
|
|
2592
|
+
|
|
2593
|
+
.revenue-value {
|
|
2594
|
+
font-weight: 700;
|
|
2595
|
+
color: #0070b4;
|
|
2596
|
+
font-size: 15px;
|
|
2597
|
+
}
|
|
2598
|
+
|
|
2599
|
+
.revenue-bar {
|
|
2600
|
+
width: 100%;
|
|
2601
|
+
height: 10px;
|
|
2602
|
+
background: #e2e8f0;
|
|
2603
|
+
border-radius: 5px;
|
|
2604
|
+
overflow: hidden;
|
|
2605
|
+
}
|
|
2606
|
+
|
|
2607
|
+
.revenue-bar .bar {
|
|
2608
|
+
height: 100%;
|
|
2609
|
+
background: linear-gradient(90deg, #0070b4, #0053a6);
|
|
2610
|
+
border-radius: 5px;
|
|
2611
|
+
transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
|
|
2612
|
+
}
|
|
2613
|
+
|
|
2614
|
+
.djb-revenue-table tbody tr:hover .bar {
|
|
2615
|
+
filter: brightness(1.05);
|
|
2616
|
+
}
|
|
2617
|
+
|
|
2618
|
+
/* Width presets */
|
|
2619
|
+
.bar-36 {
|
|
2620
|
+
width: 36%;
|
|
2621
|
+
}
|
|
2622
|
+
.bar-52 {
|
|
2623
|
+
width: 52%;
|
|
2624
|
+
}
|
|
2625
|
+
.bar-68 {
|
|
2626
|
+
width: 68%;
|
|
2627
|
+
}
|
|
2628
|
+
.bar-69 {
|
|
2629
|
+
width: 69%;
|
|
2630
|
+
}
|
|
2631
|
+
.bar-81 {
|
|
2632
|
+
width: 81%;
|
|
2633
|
+
}
|
|
2634
|
+
.bar-86 {
|
|
2635
|
+
width: 86%;
|
|
2636
|
+
}
|
|
2637
|
+
.bar-91 {
|
|
2638
|
+
width: 91%;
|
|
2639
|
+
}
|
|
2640
|
+
.bar-96 {
|
|
2641
|
+
width: 96%;
|
|
2642
|
+
}
|
|
2643
|
+
.bar-100 {
|
|
2644
|
+
width: 100%;
|
|
2645
|
+
}
|
|
2646
|
+
|
|
2647
|
+
/* Org Chart Structure */
|
|
2648
|
+
.djb-org-fullwidth {
|
|
2649
|
+
text-align: center;
|
|
2650
|
+
}
|
|
2651
|
+
|
|
2652
|
+
.org-image-wrapper {
|
|
2653
|
+
border-radius: 16px;
|
|
2654
|
+
overflow: hidden;
|
|
2655
|
+
border: 1px solid #e2e8f0;
|
|
2656
|
+
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
|
|
2657
|
+
background: #ffffff;
|
|
2658
|
+
padding: 20px;
|
|
2659
|
+
display: inline-block;
|
|
2660
|
+
max-width: 100%;
|
|
2661
|
+
margin-top: 10px;
|
|
2662
|
+
}
|
|
2663
|
+
|
|
2664
|
+
.org-structure-image {
|
|
2665
|
+
max-width: 100%;
|
|
2666
|
+
height: auto;
|
|
2667
|
+
display: block;
|
|
2668
|
+
border-radius: 8px;
|
|
2669
|
+
transition: transform 0.3s ease;
|
|
2670
|
+
}
|
|
2671
|
+
|
|
2672
|
+
.org-structure-image:hover {
|
|
2673
|
+
transform: scale(1.015);
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2676
|
+
/* Citizen Charter PDF Viewer Styling */
|
|
2677
|
+
.doc-frame {
|
|
2678
|
+
border: 1px solid #e2e8f0;
|
|
2679
|
+
border-radius: 16px;
|
|
2680
|
+
overflow: hidden;
|
|
2681
|
+
background: #ffffff;
|
|
2682
|
+
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
|
|
2683
|
+
}
|
|
2684
|
+
|
|
2685
|
+
.doc-header {
|
|
2686
|
+
display: flex;
|
|
2687
|
+
justify-content: space-between;
|
|
2688
|
+
align-items: center;
|
|
2689
|
+
padding: 24px 32px;
|
|
2690
|
+
background: #f8fafc;
|
|
2691
|
+
border-bottom: 1px solid #e2e8f0;
|
|
2692
|
+
gap: 20px;
|
|
2693
|
+
flex-wrap: wrap;
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
.doc-title {
|
|
2697
|
+
font-size: 18px;
|
|
2698
|
+
font-weight: 800;
|
|
2699
|
+
color: #003366;
|
|
2700
|
+
margin: 0;
|
|
2701
|
+
}
|
|
2702
|
+
|
|
2703
|
+
.doc-meta {
|
|
2704
|
+
display: flex;
|
|
2705
|
+
gap: 12px;
|
|
2706
|
+
font-size: 13px;
|
|
2707
|
+
color: #64748b;
|
|
2708
|
+
margin-top: 6px;
|
|
2709
|
+
}
|
|
2710
|
+
|
|
2711
|
+
.doc-hint {
|
|
2712
|
+
padding: 14px 32px;
|
|
2713
|
+
background: #ecfdf5;
|
|
2714
|
+
border-bottom: 1px solid #a7f3d0;
|
|
2715
|
+
color: #065f46;
|
|
2716
|
+
font-size: 13.5px;
|
|
2717
|
+
font-weight: 600;
|
|
2718
|
+
display: flex;
|
|
2719
|
+
align-items: center;
|
|
2720
|
+
gap: 8px;
|
|
2721
|
+
}
|
|
2722
|
+
|
|
2723
|
+
.pdf-container {
|
|
2724
|
+
position: relative;
|
|
2725
|
+
width: 100%;
|
|
2726
|
+
height: 650px;
|
|
2727
|
+
background: #f1f5f9;
|
|
2728
|
+
}
|
|
2729
|
+
|
|
2730
|
+
.pdf-container iframe {
|
|
2731
|
+
width: 100%;
|
|
2732
|
+
height: 100%;
|
|
2733
|
+
border: none;
|
|
2734
|
+
}
|
|
2735
|
+
|
|
2736
|
+
.pdf-loader-overlay {
|
|
2737
|
+
position: absolute;
|
|
2738
|
+
inset: 0;
|
|
2739
|
+
background: rgba(255, 255, 255, 0.85);
|
|
2740
|
+
display: flex;
|
|
2741
|
+
align-items: center;
|
|
2742
|
+
justify-content: center;
|
|
2743
|
+
z-index: 10;
|
|
2744
|
+
}
|
|
2745
|
+
|
|
2746
|
+
/* Responsive Media Queries */
|
|
2747
|
+
@media (max-width: 900px) {
|
|
2748
|
+
.djb-about-layout {
|
|
2749
|
+
grid-template-columns: 1fr;
|
|
2750
|
+
}
|
|
2751
|
+
.djb-side-nav {
|
|
2752
|
+
position: relative;
|
|
2753
|
+
top: auto;
|
|
2754
|
+
margin-bottom: 24px;
|
|
2755
|
+
top: 0;
|
|
2756
|
+
}
|
|
2757
|
+
}
|
|
2758
|
+
|
|
2759
|
+
@media (max-width: 768px) {
|
|
2760
|
+
.djb-page-wrapper {
|
|
2761
|
+
padding: 24px 16px 60px;
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2764
|
+
.djb-about-content {
|
|
2765
|
+
padding: 24px !important;
|
|
2766
|
+
}
|
|
2767
|
+
|
|
2768
|
+
.djb-section-title {
|
|
2769
|
+
font-size: 19px;
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2772
|
+
.djb-section p,
|
|
2773
|
+
.djb-list li {
|
|
2774
|
+
font-size: 14px;
|
|
2775
|
+
}
|
|
2776
|
+
|
|
2777
|
+
.djb-table th,
|
|
2778
|
+
.djb-table td {
|
|
2779
|
+
padding: 12px 14px;
|
|
2780
|
+
font-size: 13.5px;
|
|
2781
|
+
}
|
|
2782
|
+
|
|
2783
|
+
.doc-header {
|
|
2784
|
+
padding: 20px;
|
|
2785
|
+
}
|
|
2786
|
+
|
|
2787
|
+
.doc-hint {
|
|
2788
|
+
padding: 12px 20px;
|
|
2789
|
+
}
|
|
2790
|
+
}
|
|
2791
|
+
|
|
2792
|
+
/* ================= PAGE ================= */
|
|
2793
|
+
.org-page {
|
|
2794
|
+
width: 100%;
|
|
2795
|
+
}
|
|
2656
2796
|
|
|
2657
2797
|
/* ================= SCROLL (INSIDE CONTENT) ================= */
|
|
2658
2798
|
.org-scroll {
|
|
@@ -2700,7 +2840,6 @@ body {
|
|
|
2700
2840
|
|
|
2701
2841
|
/* ================= LEVEL STYLES ================= */
|
|
2702
2842
|
|
|
2703
|
-
|
|
2704
2843
|
.level-1 {
|
|
2705
2844
|
background: #eaf2fb;
|
|
2706
2845
|
}
|
|
@@ -2710,7 +2849,8 @@ body {
|
|
|
2710
2849
|
}
|
|
2711
2850
|
|
|
2712
2851
|
/* 🔥 Allow wrapping ONLY from level-3 downward */
|
|
2713
|
-
.level-2 + .org-children,
|
|
2852
|
+
.level-2 + .org-children,
|
|
2853
|
+
.level-3 + .org-children {
|
|
2714
2854
|
flex-wrap: wrap;
|
|
2715
2855
|
}
|
|
2716
2856
|
/* ================= CHILDREN ================= */
|
|
@@ -2746,24 +2886,18 @@ body {
|
|
|
2746
2886
|
background: #0b5fa5;
|
|
2747
2887
|
}
|
|
2748
2888
|
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
2889
|
.svg-node {
|
|
2752
2890
|
fill: #ffffff;
|
|
2753
2891
|
stroke: #0b5fa5;
|
|
2754
2892
|
stroke-width: 2;
|
|
2755
2893
|
}
|
|
2756
2894
|
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
2895
|
svg text {
|
|
2760
2896
|
font-size: 12px;
|
|
2761
2897
|
font-weight: 600;
|
|
2762
2898
|
fill: #0b5fa5;
|
|
2763
2899
|
}
|
|
2764
2900
|
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
2901
|
.orgchart-viewport {
|
|
2768
2902
|
width: 100%;
|
|
2769
2903
|
height: calc(100vh - 260px); /* header + tabs */
|
|
@@ -2918,7 +3052,6 @@ svg text {
|
|
|
2918
3052
|
background: var(--gray-100);
|
|
2919
3053
|
border: 2px solid var(--gray-300);
|
|
2920
3054
|
border-radius: 10px;
|
|
2921
|
-
padding: 4px 4px 4px 12px;
|
|
2922
3055
|
transition: all 0.3s;
|
|
2923
3056
|
min-width: 300px;
|
|
2924
3057
|
}
|
|
@@ -3224,9 +3357,6 @@ svg text {
|
|
|
3224
3357
|
|
|
3225
3358
|
/* View Mode Variations */
|
|
3226
3359
|
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
3360
|
.org-box:hover {
|
|
3231
3361
|
background: var(--gray-50);
|
|
3232
3362
|
transform: translateY(-4px);
|
|
@@ -3253,7 +3383,7 @@ svg text {
|
|
|
3253
3383
|
box-shadow: 0 0 25px rgba(72, 187, 120, 0.4);
|
|
3254
3384
|
}
|
|
3255
3385
|
|
|
3256
|
-
@keyframes pulse-highlight{
|
|
3386
|
+
@keyframes pulse-highlight {
|
|
3257
3387
|
0%,
|
|
3258
3388
|
100% {
|
|
3259
3389
|
box-shadow: 0 0 25px rgba(246, 173, 85, 0.6);
|
|
@@ -3272,10 +3402,6 @@ svg text {
|
|
|
3272
3402
|
word-wrap: break-word;
|
|
3273
3403
|
}
|
|
3274
3404
|
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
3405
|
.expand-icon {
|
|
3280
3406
|
position: absolute;
|
|
3281
3407
|
top: 6px;
|
|
@@ -3344,7 +3470,8 @@ svg text {
|
|
|
3344
3470
|
transform: translateY(-55px);
|
|
3345
3471
|
}
|
|
3346
3472
|
|
|
3347
|
-
.org-children .org-node:first-child::after,
|
|
3473
|
+
.org-children .org-node:first-child::after,
|
|
3474
|
+
.org-children .org-node:last-child::after {
|
|
3348
3475
|
content: "";
|
|
3349
3476
|
position: absolute;
|
|
3350
3477
|
top: -55px;
|
|
@@ -3426,7 +3553,7 @@ svg text {
|
|
|
3426
3553
|
animation: slideIn 0.3s ease;
|
|
3427
3554
|
}
|
|
3428
3555
|
|
|
3429
|
-
@keyframes slideIn{
|
|
3556
|
+
@keyframes slideIn {
|
|
3430
3557
|
from {
|
|
3431
3558
|
transform: translateY(100px);
|
|
3432
3559
|
opacity: 0;
|
|
@@ -3596,7 +3723,12 @@ svg text {
|
|
|
3596
3723
|
|
|
3597
3724
|
/* Print Styles */
|
|
3598
3725
|
@media print {
|
|
3599
|
-
.org-chart-toolbar,
|
|
3726
|
+
.org-chart-toolbar,
|
|
3727
|
+
.level-controls,
|
|
3728
|
+
.instruction-banner,
|
|
3729
|
+
.info-panel,
|
|
3730
|
+
.chart-legend,
|
|
3731
|
+
.zoom-controls {
|
|
3600
3732
|
display: none !important;
|
|
3601
3733
|
}
|
|
3602
3734
|
|
|
@@ -3682,10 +3814,6 @@ svg text {
|
|
|
3682
3814
|
gap: 10px;
|
|
3683
3815
|
}
|
|
3684
3816
|
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
3817
|
/* ===== Hint ===== */
|
|
3690
3818
|
.doc-hint {
|
|
3691
3819
|
font-size: 13px;
|
|
@@ -3716,14 +3844,7 @@ svg text {
|
|
|
3716
3844
|
|
|
3717
3845
|
/* ===== Skeleton Loader ===== */
|
|
3718
3846
|
|
|
3719
|
-
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
@keyframes skeleton{
|
|
3847
|
+
@keyframes skeleton {
|
|
3727
3848
|
0% {
|
|
3728
3849
|
background-position: 200% 0;
|
|
3729
3850
|
}
|
|
@@ -3738,7 +3859,8 @@ svg text {
|
|
|
3738
3859
|
visibility: hidden;
|
|
3739
3860
|
}
|
|
3740
3861
|
|
|
3741
|
-
.pdf-print-area,
|
|
3862
|
+
.pdf-print-area,
|
|
3863
|
+
.pdf-print-area * {
|
|
3742
3864
|
visibility: visible;
|
|
3743
3865
|
}
|
|
3744
3866
|
|
|
@@ -3855,7 +3977,8 @@ body {
|
|
|
3855
3977
|
height: auto !important; /* Prevents text cutoff */
|
|
3856
3978
|
}
|
|
3857
3979
|
|
|
3858
|
-
.upyog-hero-left,
|
|
3980
|
+
.upyog-hero-left,
|
|
3981
|
+
.upyog-hero-right {
|
|
3859
3982
|
width: 100% !important;
|
|
3860
3983
|
}
|
|
3861
3984
|
|
|
@@ -4099,7 +4222,7 @@ body {
|
|
|
4099
4222
|
gap: 40px !important;
|
|
4100
4223
|
padding: 40px 24px 20px 24px !important;
|
|
4101
4224
|
}
|
|
4102
|
-
|
|
4225
|
+
|
|
4103
4226
|
.footer-logos {
|
|
4104
4227
|
gap: 40px !important;
|
|
4105
4228
|
padding: 16px 0 !important;
|
|
@@ -4144,7 +4267,6 @@ body {
|
|
|
4144
4267
|
}
|
|
4145
4268
|
}
|
|
4146
4269
|
|
|
4147
|
-
|
|
4148
4270
|
/* =================================================
|
|
4149
4271
|
ABOUT PAGE v2 – Premium Design (Matches Contact Us)
|
|
4150
4272
|
================================================= */
|
|
@@ -4168,9 +4290,11 @@ body {
|
|
|
4168
4290
|
}
|
|
4169
4291
|
.about-hero-overlay {
|
|
4170
4292
|
position: absolute;
|
|
4171
|
-
top: 0;
|
|
4172
|
-
|
|
4173
|
-
|
|
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%);
|
|
4174
4298
|
pointer-events: none;
|
|
4175
4299
|
}
|
|
4176
4300
|
.about-hero-content {
|
|
@@ -4181,8 +4305,8 @@ body {
|
|
|
4181
4305
|
}
|
|
4182
4306
|
.about-hero-badge {
|
|
4183
4307
|
display: inline-block;
|
|
4184
|
-
background: rgba(255,255,255,0.08);
|
|
4185
|
-
border: 1px solid rgba(255,255,255,0.15);
|
|
4308
|
+
background: rgba(255, 255, 255, 0.08);
|
|
4309
|
+
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
4186
4310
|
padding: 6px 16px;
|
|
4187
4311
|
border-radius: 50px;
|
|
4188
4312
|
font-size: 13px;
|
|
@@ -4228,13 +4352,13 @@ body {
|
|
|
4228
4352
|
background: #ffffff;
|
|
4229
4353
|
border-radius: 16px;
|
|
4230
4354
|
border: 1px solid #f1f5f9;
|
|
4231
|
-
box-shadow: 0 10px 30px -10px rgba(2,12,27,0.06);
|
|
4355
|
+
box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.06);
|
|
4232
4356
|
overflow: hidden;
|
|
4233
4357
|
height: fit-content;
|
|
4234
4358
|
transition: box-shadow 0.3s ease;
|
|
4235
4359
|
}
|
|
4236
4360
|
.about-side-nav:hover {
|
|
4237
|
-
box-shadow: 0 16px 40px -15px rgba(2,12,27,0.1);
|
|
4361
|
+
box-shadow: 0 16px 40px -15px rgba(2, 12, 27, 0.1);
|
|
4238
4362
|
}
|
|
4239
4363
|
.about-side-nav-header {
|
|
4240
4364
|
display: flex;
|
|
@@ -4266,10 +4390,12 @@ body {
|
|
|
4266
4390
|
color: #475569;
|
|
4267
4391
|
cursor: pointer;
|
|
4268
4392
|
border-bottom: 1px solid #f8fafc;
|
|
4269
|
-
transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
|
|
4393
|
+
transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
|
|
4270
4394
|
position: relative;
|
|
4271
4395
|
}
|
|
4272
|
-
.about-side-nav-item:last-child {
|
|
4396
|
+
.about-side-nav-item:last-child {
|
|
4397
|
+
border-bottom: none;
|
|
4398
|
+
}
|
|
4273
4399
|
.about-side-nav-item:hover {
|
|
4274
4400
|
background: #f8fafc;
|
|
4275
4401
|
color: #0b5cab;
|
|
@@ -4284,7 +4410,9 @@ body {
|
|
|
4284
4410
|
.about-side-nav-item.active::before {
|
|
4285
4411
|
content: "";
|
|
4286
4412
|
position: absolute;
|
|
4287
|
-
left: 0;
|
|
4413
|
+
left: 0;
|
|
4414
|
+
top: 0;
|
|
4415
|
+
bottom: 0;
|
|
4288
4416
|
width: 4px;
|
|
4289
4417
|
background: #0b5cab;
|
|
4290
4418
|
border-top-right-radius: 4px;
|
|
@@ -4294,7 +4422,8 @@ body {
|
|
|
4294
4422
|
display: flex;
|
|
4295
4423
|
align-items: center;
|
|
4296
4424
|
justify-content: center;
|
|
4297
|
-
width: 32px;
|
|
4425
|
+
width: 32px;
|
|
4426
|
+
height: 32px;
|
|
4298
4427
|
min-width: 32px;
|
|
4299
4428
|
background: #f1f5f9;
|
|
4300
4429
|
border-radius: 8px;
|
|
@@ -4306,21 +4435,28 @@ body {
|
|
|
4306
4435
|
background: #dbeafe;
|
|
4307
4436
|
color: #0b5cab;
|
|
4308
4437
|
}
|
|
4309
|
-
.about-nav-label {
|
|
4310
|
-
|
|
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
|
+
}
|
|
4311
4447
|
|
|
4312
4448
|
/* ── Content Card ── */
|
|
4313
4449
|
.about-content-card {
|
|
4314
4450
|
background: #ffffff;
|
|
4315
4451
|
border-radius: 16px;
|
|
4316
4452
|
border: 1px solid #f1f5f9;
|
|
4317
|
-
box-shadow: 0 10px 30px -10px rgba(2,12,27,0.06);
|
|
4453
|
+
box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.06);
|
|
4318
4454
|
padding: 36px;
|
|
4319
|
-
transition: box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
|
|
4455
|
+
transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
4320
4456
|
min-height: 480px;
|
|
4321
4457
|
}
|
|
4322
4458
|
.about-content-card:hover {
|
|
4323
|
-
box-shadow: 0 16px 40px -15px rgba(2,12,27,0.1);
|
|
4459
|
+
box-shadow: 0 16px 40px -15px rgba(2, 12, 27, 0.1);
|
|
4324
4460
|
}
|
|
4325
4461
|
.about-content-card-header {
|
|
4326
4462
|
display: flex;
|
|
@@ -4334,7 +4470,8 @@ body {
|
|
|
4334
4470
|
display: flex;
|
|
4335
4471
|
align-items: center;
|
|
4336
4472
|
justify-content: center;
|
|
4337
|
-
width: 38px;
|
|
4473
|
+
width: 38px;
|
|
4474
|
+
height: 38px;
|
|
4338
4475
|
background: #eff6ff;
|
|
4339
4476
|
color: #0b5cab;
|
|
4340
4477
|
border-radius: 10px;
|
|
@@ -4367,12 +4504,12 @@ body {
|
|
|
4367
4504
|
}
|
|
4368
4505
|
.about-tab-btn:hover {
|
|
4369
4506
|
color: #0b5cab;
|
|
4370
|
-
background: rgba(255,255,255,0.6);
|
|
4507
|
+
background: rgba(255, 255, 255, 0.6);
|
|
4371
4508
|
}
|
|
4372
4509
|
.about-tab-btn.active {
|
|
4373
4510
|
background: #ffffff;
|
|
4374
4511
|
color: #0b5cab;
|
|
4375
|
-
box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
|
|
4512
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
|
|
4376
4513
|
}
|
|
4377
4514
|
|
|
4378
4515
|
/* ── Coming Soon ── */
|
|
@@ -4399,26 +4536,60 @@ body {
|
|
|
4399
4536
|
|
|
4400
4537
|
/* ── Responsive ── */
|
|
4401
4538
|
@media (max-width: 1024px) {
|
|
4402
|
-
.about-layout-grid {
|
|
4539
|
+
.about-layout-grid {
|
|
4540
|
+
grid-template-columns: 240px 1fr;
|
|
4541
|
+
gap: 24px;
|
|
4542
|
+
}
|
|
4403
4543
|
}
|
|
4404
4544
|
@media (max-width: 900px) {
|
|
4405
|
-
.about-layout-grid {
|
|
4406
|
-
|
|
4407
|
-
|
|
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
|
+
}
|
|
4408
4558
|
}
|
|
4409
4559
|
@media (max-width: 768px) {
|
|
4410
|
-
.about-hero-banner {
|
|
4411
|
-
|
|
4412
|
-
|
|
4413
|
-
.about-
|
|
4414
|
-
|
|
4415
|
-
|
|
4416
|
-
.about-
|
|
4417
|
-
|
|
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
|
+
}
|
|
4418
4585
|
}
|
|
4419
4586
|
@media (max-width: 480px) {
|
|
4420
|
-
.about-hero-content h1 {
|
|
4421
|
-
|
|
4587
|
+
.about-hero-content h1 {
|
|
4588
|
+
font-size: 20px;
|
|
4589
|
+
}
|
|
4590
|
+
.about-tab-bar {
|
|
4591
|
+
gap: 4px;
|
|
4592
|
+
}
|
|
4422
4593
|
}
|
|
4423
4594
|
|
|
4424
4595
|
/* ── Content block styles (used by renderBlock) ── */
|
|
@@ -4434,7 +4605,10 @@ body {
|
|
|
4434
4605
|
color: #475569;
|
|
4435
4606
|
margin-bottom: 18px;
|
|
4436
4607
|
}
|
|
4437
|
-
.djb-section p strong {
|
|
4608
|
+
.djb-section p strong {
|
|
4609
|
+
color: #003366;
|
|
4610
|
+
font-weight: 700;
|
|
4611
|
+
}
|
|
4438
4612
|
|
|
4439
4613
|
.djb-sub-title {
|
|
4440
4614
|
font-size: 16px;
|
|
@@ -4458,7 +4632,7 @@ body {
|
|
|
4458
4632
|
}
|
|
4459
4633
|
.djb-list li::before {
|
|
4460
4634
|
content: "•";
|
|
4461
|
-
color: #
|
|
4635
|
+
color: #0070b4;
|
|
4462
4636
|
font-size: 20px;
|
|
4463
4637
|
position: absolute;
|
|
4464
4638
|
left: 4px;
|
|
@@ -4492,26 +4666,84 @@ body {
|
|
|
4492
4666
|
font-size: 14.5px;
|
|
4493
4667
|
line-height: 1.6;
|
|
4494
4668
|
}
|
|
4495
|
-
.djb-table tr:last-child td {
|
|
4496
|
-
|
|
4497
|
-
|
|
4498
|
-
|
|
4499
|
-
|
|
4500
|
-
|
|
4501
|
-
.
|
|
4502
|
-
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
|
|
4506
|
-
.
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
.
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
|
|
4514
|
-
|
|
4515
|
-
|
|
4516
|
-
|
|
4517
|
-
|
|
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
|
+
}
|