/* Custom CSS for Global Navigator */

/* 1. Typography & Global */
html, body {
  	text-size-adjust: 100%; !important
  	-webkit-text-size-adjust: 100%;  !important
}

body {
    font-family: 'Inter', sans-serif; /* Use a modern, light font stack */
    background-color: #f8f9fa; /* Very light gray background */
}
.text-primary { color: #0056b3 !important; } /* Trustworthy Blue */
.btn-primary { 
    background-color: #0056b3; 
    border-color: #0056b3;
    transition: background-color 0.3s;
}
.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}
.btn-warning {
    background-color: #ffc107; /* Bright Gold/Orange for high visibility CTAs */
    border-color: #ffc107;
    color: #212529 !important;
}
.btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

/* 2. Navbar */
.custom-navbar {
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white for a clean look */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.nav-link {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.65); !important;
}

/* 3. Footer */

    /* Styling for the social icons in the footer */
    .footer-social-icon {
        font-size: 1.5rem; /* Larger icons */
        transition: color 0.2s, transform 0.2s;
        /* Inherit or define colors (using text-white by default) */
    }

    /* Change color on hover to the primary color (Bootstrap blue/primary) */
    .footer-social-icon:hover {
        color: var(--bs-primary) !important; 
        transform: translateY(-2px); /* Slight lift effect */
    }

    /* Custom hover effect for footer links */
    .text-white-50.hover-primary:hover {
        color: var(--bs-primary) !important; 
    }
.key-list-item {
    position: relative;
    padding-left: 32px;
}

.key-list-item i {
    position: absolute;
    left: 0;
    top: 3px;
}