body {
            font-family: 'Poppins', sans-serif;
            -webkit-tap-highlight-color: transparent;
        }
        /*.bi { -webkit-text-stroke: 1px; }*/
        .primary-color {
            background-color: #14416a;
        }
        .secondary-color {
            background-color: #f7c72b;
        }
        .accent-color {
            background-color: #e74c3c;
        }
        .hero-pattern {
            background-color: #14416a;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .card-hover:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .bottom-nav {
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        }
        /* Mobile menu animation */
        .mobile-menu {
            transition: transform 0.3s ease-in-out;
        }
        .mobile-menu.hidden {
            transform: translateX(-100%);
        }
        /* Custom scrollbar for webkit browsers */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #14416a;
            border-radius: 3px;
        }
        /* Search results dropdown */
        .search-results {
            max-height: 300px;
            overflow-y: auto;
        }
        
        /* Responsive grid for quick links */
        @media (min-width: 768px) {
            .quick-links-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }


@media (max-width: 400px) {
.quick-links-grid {
    grid-template-columns: repeat(6, 1fr);
}
}