/* Custom Theme Colors (No Black) */
:root {
    --primary-navy: #1b263b;
    --accent-green: #2ecc71;
    --light-bg: #f8f9fa;
}

/* Footer Background Styling */
.site-footer {
    background-color: var(--primary-navy) !important;
}

/* Top Bar Styling */
.bg-dark {
    background-color: #2c3e50 !important;
}

/* Navbar & General Polish */
body {
    background-color: #ffffff;
    color: #333333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Footer Premium Gradient Styling (No Black) */
.site-footer {
    background: linear-gradient(135deg, #133b31 0%, #112236 100%);
    color: #f1f2f6;
}

/* Footer Link Hover Animation */
.footer-links a:hover {
    opacity: 1 !important;
    color: #2ecc71 !important;
    padding-left: 5px;
    transition: all 0.3s ease-in-out;
}

/* Social Icon Hover Effect */
.footer-social-links a:hover {
    color: #f39c12 !important;
    transform: translateY(-3px);
    display: inline-block;
    transition: all 0.3s ease;
}