ministerchief commited on
Commit
9dcf232
·
verified ·
1 Parent(s): 1c5d093

Update static/css/style.css

Browse files
Files changed (1) hide show
  1. static/css/style.css +305 -8
static/css/style.css CHANGED
@@ -1560,22 +1560,319 @@ a:hover{
1560
 
1561
  }
1562
 
1563
- /* =======================
1564
- Footer
1565
- ======================= */
1566
 
1567
- footer{
 
 
 
 
 
1568
 
1569
- background:#fff!important;
1570
 
1571
- color:#000!important;
 
 
 
1572
 
1573
- border-top:3px solid var(--primary);
1574
 
1575
- padding:40px 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1576
 
1577
  }
1578
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1579
  /* =======================
1580
  Utilities
1581
  ======================= */
 
1560
 
1561
  }
1562
 
1563
+ /* ==========================
1564
+ Footer Section
1565
+ ========================== */
1566
 
1567
+ .footer-section{
1568
+ background:#ffffff;
1569
+ border-top:3px solid #D4AF37;
1570
+ padding:50px 0 25px;
1571
+ overflow:hidden;
1572
+ }
1573
 
1574
+ /* Remove Bootstrap negative margin issue */
1575
 
1576
+ .footer-section .row{
1577
+ margin-left:0;
1578
+ margin-right:0;
1579
+ }
1580
 
1581
+ /* Footer Cards */
1582
 
1583
+ .footer-card{
1584
+
1585
+ background:#fff;
1586
+
1587
+ border:2px solid #D4AF37;
1588
+
1589
+ border-radius:18px;
1590
+
1591
+ padding:20px;
1592
+
1593
+ height:100%;
1594
+
1595
+ box-shadow:0 8px 20px rgba(212,175,55,.12);
1596
+
1597
+ transition:.3s;
1598
+
1599
+ }
1600
+
1601
+ .footer-card:hover{
1602
+
1603
+ transform:translateY(-4px);
1604
+
1605
+ box-shadow:0 15px 35px rgba(212,175,55,.25);
1606
+
1607
+ }
1608
+
1609
+ /* Heading */
1610
+
1611
+ .footer-card h5{
1612
+
1613
+ margin-bottom:18px;
1614
+
1615
+ font-weight:700;
1616
 
1617
  }
1618
 
1619
+ /* Text */
1620
+
1621
+ .footer-card p{
1622
+
1623
+ margin-bottom:10px;
1624
+
1625
+ line-height:1.7;
1626
+
1627
+ }
1628
+
1629
+ /* Links */
1630
+
1631
+ .footer-links{
1632
+
1633
+ list-style:none;
1634
+
1635
+ padding:0;
1636
+
1637
+ margin:0;
1638
+
1639
+ }
1640
+
1641
+ .footer-links li{
1642
+
1643
+ margin-bottom:12px;
1644
+
1645
+ }
1646
+
1647
+ .footer-links a{
1648
+
1649
+ color:#333;
1650
+
1651
+ text-decoration:none;
1652
+
1653
+ }
1654
+
1655
+ .footer-links a:hover{
1656
+
1657
+ color:#C89B3C;
1658
+
1659
+ }
1660
+
1661
+ /* Social Icons */
1662
+
1663
+ .social-icons{
1664
+
1665
+ display:flex;
1666
+
1667
+ gap:12px;
1668
+
1669
+ margin-bottom:20px;
1670
+
1671
+ flex-wrap:wrap;
1672
+
1673
+ }
1674
+
1675
+ .social-icon{
1676
+ width:44px;
1677
+ height:44px;
1678
+ display:flex;
1679
+ justify-content:center;
1680
+ align-items:center;
1681
+ border-radius:50%;
1682
+ background:linear-gradient(135deg,#FFD54F,#D4AF37,#B8860B);
1683
+ color:#fff !important;
1684
+ }
1685
+
1686
+ .social-icon i{
1687
+ color:#fff !important;
1688
+ font-size:18px;
1689
+ line-height:1;
1690
+ display:flex;
1691
+ align-items:center;
1692
+ justify-content:center;
1693
+ }
1694
+ /* Fix only the email icon */
1695
+ .social-icon .fa-envelope{
1696
+ position:relative;
1697
+ top:-1px; /* adjust between -1px and -2px if needed */
1698
+ left:0;
1699
+ }
1700
+
1701
+ /* Mobile */
1702
+
1703
+ @media(max-width:991px){
1704
+
1705
+ .footer-card{
1706
+
1707
+ margin-bottom:20px;
1708
+
1709
+ }
1710
+
1711
+ }
1712
+ .footer-section p i{
1713
+
1714
+ color:#C89B3C;
1715
+
1716
+ }
1717
+
1718
+ .footer-section hr{
1719
+
1720
+ border-color:#d9c48a;
1721
+
1722
+ }
1723
+ /* ==========================
1724
+ Compact Premium Footer Cards
1725
+ ========================== */
1726
+
1727
+ .footer-card{
1728
+
1729
+ background:#ffffff;
1730
+
1731
+ border:2px solid #D4AF37;
1732
+
1733
+ border-radius:16px;
1734
+
1735
+ padding:18px 20px; /* Reduced padding */
1736
+
1737
+ height:100%;
1738
+
1739
+ box-shadow:0 6px 18px rgba(212,175,55,.12);
1740
+
1741
+ transition:.3s;
1742
+
1743
+ }
1744
+
1745
+ .footer-card:hover{
1746
+
1747
+ transform:translateY(-3px);
1748
+
1749
+ border-color:#B8860B;
1750
+
1751
+ box-shadow:0 10px 25px rgba(212,175,55,.22);
1752
+
1753
+ }
1754
+
1755
+ /* Headings */
1756
+
1757
+ .footer-card h4,
1758
+ .footer-card h5{
1759
+
1760
+ margin-bottom:12px;
1761
+
1762
+ font-size:22px;
1763
+
1764
+ color:#000;
1765
+
1766
+ }
1767
+
1768
+ /* Paragraphs */
1769
+
1770
+ .footer-card p{
1771
+
1772
+ margin-bottom:8px;
1773
+
1774
+ line-height:1.5;
1775
+
1776
+ font-size:15px;
1777
+
1778
+ }
1779
+
1780
+ /* Quick Links */
1781
+
1782
+ .footer-links{
1783
+
1784
+ margin:0;
1785
+ padding:0;
1786
+
1787
+ }
1788
+
1789
+ .footer-links li{
1790
+
1791
+ margin-bottom:8px;
1792
+
1793
+ }
1794
+
1795
+ .footer-links a{
1796
+
1797
+ color:#444;
1798
+
1799
+ text-decoration:none;
1800
+
1801
+ font-size:15px;
1802
+
1803
+ }
1804
+
1805
+ .footer-links i{
1806
+
1807
+ color:#D4AF37;
1808
+
1809
+ margin-right:8px;
1810
+
1811
+ }
1812
+
1813
+ /* Social Icons */
1814
+
1815
+ .social-icons{
1816
+
1817
+ display:flex;
1818
+
1819
+ gap:10px;
1820
+
1821
+ flex-wrap:wrap;
1822
+
1823
+ margin-bottom:15px;
1824
+
1825
+ }
1826
+
1827
+ .social-icon{
1828
+
1829
+ width:42px;
1830
+
1831
+ height:42px;
1832
+
1833
+ border-radius:50%;
1834
+
1835
+ display:flex;
1836
+
1837
+ align-items:center;
1838
+
1839
+ justify-content:center;
1840
+
1841
+ background:linear-gradient(135deg,#FFD54F,#D4AF37,#B8860B);
1842
+
1843
+ color:#fff !important;
1844
+
1845
+ font-size:17px;
1846
+
1847
+ transition:.3s;
1848
+
1849
+ }
1850
+
1851
+ .social-icon:hover{
1852
+
1853
+ transform:translateY(-3px);
1854
+
1855
+ }
1856
+
1857
+ /* Contact */
1858
+
1859
+ .footer-card .fa-phone,
1860
+ .footer-card .fa-envelope,
1861
+ .footer-card .fa-globe{
1862
+
1863
+ color:#D4AF37;
1864
+
1865
+ margin-right:8px;
1866
+
1867
+ }
1868
+
1869
+ .footer-card p:last-child{
1870
+
1871
+ margin-bottom:0;
1872
+
1873
+ }
1874
+
1875
+
1876
  /* =======================
1877
  Utilities
1878
  ======================= */