        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0 !important;
            padding: 0 !important;
            width: 100%;
            overflow-x: hidden;
        }

        /* Loading state styles */
        body.loading {
            overflow: hidden;
        }

        body:not(.loading) {
            overflow: visible;
        }

        #header-container {
            min-height: 100px;
        }

        /* Loading overlay */
        #loadingOverlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.3s ease-out;
        }

        body:not(.loading) #loadingOverlay {
            opacity: 0;
            pointer-events: none;
        }

        :root {
            --primary-blue: #0066FF;
            --deep-blue: #0047AB;
            --electric-blue: #0047AB;
            --midnight: #0A1929;
            --slate: #1E293B;
            --ghost-white: #F8FAFC;
            --accent-cyan: #22D3EE;
        }

        #header-container {
            margin: 0 !important;
            padding: 0 !important;
        }

        #headerWrapper {
            top: 0 !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        #topBar {
            margin: 0 !important;
        }

        #mainNav {
            margin: 0 !important;
        }

        /* Ensure first section doesn't have top margin */
        section:first-of-type {
            margin-top: 0 !important;
        }

        /* Dropdown arrow rotation */
        .dropdown-arrow {
            transition: transform 0.3s ease;
            display: inline-block;
            margin-left: 0.5rem;
        }

        .dropdown-arrow.rotate-180 {
            transform: rotate(180deg);
        }

        /* Active page indicator */
        #mainNav a[aria-current="page"] {
            color: #2563eb !important;
            font-weight: 700 !important;
            position: relative;
        }

        /* Strong visible active indicator: color + bold + bottom border */
        #mainNav a[aria-current="page"],
        #mainNav .dropdown-toggle[aria-current="page"],
        #mainNav .dropdown-menu .dropdown-item[aria-current="page"] {
            color: #2563eb !important;
            font-weight: 700 !important;
            position: relative;
            border-bottom: 2px solid #2563eb;
            padding-bottom: 4px;
        }

        /* Also style elements that have the `.active` class (set by JS) */
        #mainNav a.active,
        #mainNav .dropdown-toggle.active,
        #mainNav .dropdown-menu .dropdown-item.active,
        #mobileMenu a.active {
            color: #2563eb !important;
            font-weight: 700 !important;
            position: relative;
            border-bottom: 2px solid #2563eb;
            padding-bottom: 4px;
        }

        /* Stronger specificity to ensure active indicator displays over other rules */
        #mainNav > a.active,
        #mainNav > a[aria-current="page"],
        #mainNav .dropdown-toggle.active,
        #mainNav .dropdown-toggle[aria-current="page"],
        #mainNav .dropdown-menu .dropdown-item.active,
        #mainNav .dropdown-menu .dropdown-item[aria-current="page"],
        #mobileMenu a.active,
        #mobileMenu a[aria-current="page"] {
            display: inline-block !important;
            color: #2563eb !important;
            font-weight: 700 !important;
            border-bottom: 2px solid #2563eb !important;
            padding-bottom: 4px !important;
        }

        /* Removed ::after underline to avoid double indicator (we use border-bottom now) */

        /* Ensure mobile menu is visible when open */
        #mobileMenu {
            transition: all 0.3s ease;
        }

        #mobileMenu:not(.hidden) {
            display: block !important;
        }

        /* Desktop: open dropdowns on hover for better discoverability */
        @media (min-width: 768px) {
            /* show on hover or keyboard focus */
            #mainNav .dropdown:hover > .dropdown-menu,
            #mainNav .dropdown:focus-within > .dropdown-menu {
                display: block !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: translateY(0) !important;
                pointer-events: auto !important;
                z-index: 9999 !important;
            }

            /* rotate arrow on hover/focus */
            #mainNav .dropdown:hover .dropdown-arrow,
            #mainNav .dropdown:focus-within .dropdown-arrow {
                transform: rotate(180deg) !important;
            }

            /* highlight toggle on hover/focus */
            #mainNav .dropdown:hover .dropdown-toggle,
            #mainNav .dropdown:focus-within .dropdown-toggle {
                color: #2563eb !important;
            }
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--ghost-white);
            color: var(--midnight);
            overflow-x: hidden;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--ghost-white);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-blue);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--deep-blue);
        }

        /* Animated Gradient Background */
        .gradient-bg {
            background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary-blue) 50%, var(--electric-blue) 100%);
            background-size: 200% 200%;
            animation: gradientShift 15s ease infinite;
        }

        .gradient-bg2 {
            background: linear-gradient(135deg, var(--deep-blue) 0%, var(--deep-blue) 50%, var(--deep-blue) 100%);
            background-size: 200% 200%;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        /* Glassmorphism */
        .glass {
            /* background: rgba(255, 255, 255, 0.1); */
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .glass-dark {
            background: rgba(49, 86, 124, 0.7);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Neon Glow Effect */
        .neon-glow {
            box-shadow: 0 0 20px rgba(0, 102, 255, 0.3),
                0 0 40px rgba(0, 102, 255, 0.2),
                0 0 60px rgba(0, 102, 255, 0.1);
        }

        .neon-text {
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.8),
                0 0 20px rgba(0, 212, 255, 0.6),
                0 0 30px rgba(0, 212, 255, 0.4);
        }

        /* Floating Animation */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .float {
            animation: float 6s ease-in-out infinite;
        }

        /* Card Hover Effects */
        .card-hover {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, .5);
            position: relative;
            overflow: hidden;
        }

        .card-hover::before {
            content: '';
            position: absolute;
            top: 0;
            left: -10%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(249, 251, 252, 0.2), transparent);
            transition: left 0.5s;
        }

        .card-hover:hover::before {
            left: 100%;
        }

        .card-hover:hover {
            transform: translateY(-10px) scale(1);
            box-shadow: 0 20px 30px rgba(22, 95, 206, 0.3);
        }

        /* Pulse Animation */
        @keyframes pulse-blue {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
            }

            50% {
                box-shadow: 0 0 0 20px rgba(0, 102, 255, 0);
            }
        }

        .pulse-blue {
            animation: pulse-blue 2s infinite;
        }

        /* Geometric Patterns */
        .pattern-dots {
            background-image: radial-gradient(circle, rgba(0, 102, 255, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
        }

        .pattern-grid {
            background-image:
                linear-gradient(rgba(0, 102, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        /* Slide In Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .slide-left {
            animation: slideInLeft 0.8s ease-out forwards;
        }

        .slide-right {
            animation: slideInRight 0.8s ease-out forwards;
        }

        /* Button Styles */
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue));
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
        }

        /* Typography */
        .mono {
            font-family: 'Space Mono', monospace;
        }

        /* Tender Badge */
        .badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-active {
            background: linear-gradient(135deg, #5db89a, #65c5a7);
            color: white;
        }

        .badge-category {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue));
            color: white;
        }

        /* Stats Counter Animation */
        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stat-card {
            animation: countUp 0.6s ease-out forwards;
        }

        /* Input Styles */
        .input-modern {
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid transparent;
            border-radius: 12px;
            padding: 16px 20px;
            font-size: 16px;
            transition: all 0.3s ease;
            outline: none;
        }

        .input-modern:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
            background: white;
        }

        /* Loading Shimmer */
        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }

            100% {
                background-position: 1000px 0;
            }
        }

        .shimmer {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 1000px 100%;
            animation: shimmer 2s infinite;
        }

        /* Navbar Blur */
        .navbar-blur {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid rgba(0, 102, 255, 0.1);
        }

        /* Industry Card Gradient Borders */
        .gradient-border {
            position: relative;
            /* background: white; */
            border-radius: 16px;
        }

        .gradient-border::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 2px;
            /* background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue)); */
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        /* Responsive Design Helpers */
        @media (max-width: 768px) {
            .hide-mobile {
                display: none;
            }
        }

        /* Decorative Elements */
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.3;
            animation: float 8s ease-in-out infinite;
        }

        .blob-1 {
            width: 400px;
            height: 400px;
            background: var(--primary-blue);
            top: -200px;
            right: -200px;
        }

        .blob-2 {
            width: 300px;
            height: 300px;
            background: var(--electric-blue);
            bottom: -150px;
            left: -150px;
            animation-delay: -4s;
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-toggle {
            color: #374151;
            font-weight: 500;
            transition-property: color;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .dropdown-toggle:hover {
            color: #2563eb;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            min-width: 180px;
            padding: 8px 0;
            margin-top: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            width: 100%;
            padding: 12px 20px;
            color: #1f2937;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            font-size: 14px;
        }

        .dropdown-item:hover {
            background-color: #f3f4f6;
            color: #0066ff;
            padding-left: 24px;
        }

        .dropdown-item:first-child {
            border-radius: 8px 8px 0 0;
        }

        .dropdown-item:last-child {
            border-radius: 0 0 8px 8px;
        }

        .dropdown-arrow {
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .dropdown-arrow.rotated {
            transform: rotate(180deg);
        }


         /* Loading state - hide content until header loads */
        body.loading {
            overflow: hidden;
        }
        body:not(.loading) {
            overflow: visible;
        }
        #header-container {
            min-height: 100px;
        }
        /* Loading overlay */
        #loadingOverlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.3s ease-out;
        }
        body:not(.loading) #loadingOverlay {
            opacity: 0;
            pointer-events: none;
        }