
        @import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800&display=swap');

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Exo 2', sans-serif;
            scroll-behavior: smooth;
            transition: background-color 0.3s, color 0.3s;
            overflow-x: hidden;
            position: relative;
        }

        body.light {
            background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 50%, #f0f4ff 100%);
            background-attachment: fixed;
        }

        /* Scrollbar styling */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(0, 102, 255, 0.1);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #0052cc, #3385ff);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #003d99, #0066ff);
        }

        /* Focus styles for accessibility */
        *:focus-visible {
            outline: 2px solid #3385ff;
            outline-offset: 2px;
        }

        button:focus-visible,
        a:focus-visible {
            outline: 2px solid #3385ff;
            outline-offset: 2px;
            border-radius: 4px;
        }

        /* Theme classes - Updated with deeper blues */
        .light {
            background: linear-gradient(135deg, #f0f8ff 0%, #e6f0ff 100%);
            color: #001433;
            /* Darker text for better contrast */
        }

        .dark {
            background: linear-gradient(135deg, #000a1a 0%, #001433 100%);
            color: #e6f0ff;
            /* Lighter text for dark mode */
        }

        /* Futuristic elements */
        .clip-path-slant {
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }

        .clip-path-slant-reverse {
            clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px 0 rgba(0, 102, 255, 0.08);
            transition: all 0.3s ease;
        }

        .dark .glass-effect {
            background: rgba(0, 10, 26, 0.8);
            border: 1px solid rgba(0, 102, 255, 0.3);
            box-shadow: 0 8px 32px 0 rgba(0, 102, 255, 0.15);
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .glass-card:hover {
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(0, 102, 255, 0.3);
            box-shadow: 0 10px 40px rgba(0, 102, 255, 0.1);
        }

        .dark .glass-card {
            background: rgba(0, 20, 80, 0.2);
            border: 1px solid rgba(0, 102, 255, 0.2);
        }

        .dark .glass-card:hover {
            background: rgba(0, 20, 80, 0.3);
            border: 1px solid rgba(0, 102, 255, 0.4);
            box-shadow: 0 10px 40px rgba(0, 102, 255, 0.2);
        }

        .gradient-bg {
            background: linear-gradient(135deg, #002966 0%, #0066ff 100%);
        }

        .gradient-text {
            background: linear-gradient(90deg, #0052cc, #3385ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }

        .dark .gradient-text {
            background: linear-gradient(90deg, #66a3ff, #99c2ff);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .bg-grid {
            background-image:
                radial-gradient(circle, rgba(0, 102, 255, 0.1) 1px, transparent 1px),
                radial-gradient(circle, rgba(0, 102, 255, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            background-position: 0 0, 15px 15px;
        }

        .dark .bg-grid {
            background-image:
                radial-gradient(circle, rgba(0, 102, 255, 0.2) 1px, transparent 1px),
                radial-gradient(circle, rgba(0, 102, 255, 0.2) 1px, transparent 1px);
        }

        .bg-dots {
            background-image:
                radial-gradient(rgba(0, 102, 255, 0.2) 1px, transparent 1px);
            background-size: 20px 20px;
        }

        .dark .bg-dots {
            background-image:
                radial-gradient(rgba(0, 102, 255, 0.4) 1px, transparent 1px);
        }

        .glow-border {
            position: relative;
        }

        .glow-border::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid transparent;
            border-radius: inherit;
            background: linear-gradient(45deg, #0052cc, #3385ff) border-box;
            -webkit-mask:
                linear-gradient(#fff 0 0) padding-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .animated-gradient {
            background: linear-gradient(-45deg, #002966, #0066ff, #3385ff, #66a3ff);
            background-size: 400% 400%;
            animation: gradient 15s ease infinite;
        }

        @keyframes gradient {
            0% {
                background-position: 0% 50%;
            }

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

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

        .circuit-bg {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='none' stroke='%230052cc' stroke-width='0.5' d='M10,10 L30,10 M30,10 L30,30 M30,30 L50,30 M50,30 L50,50 M50,50 L70,50 M70,50 L70,70 M70,70 L90,70 M10,30 L30,30 M30,50 L50,50 M50,70 L70,70 M30,30 L30,50 M50,50 L50,70 M70,10 L70,30 M70,30 L90,30'/%3E%3Ccircle cx='30' cy='10' r='2' fill='%230052cc' opacity='0.3'/%3E%3Ccircle cx='30' cy='30' r='2' fill='%230052cc' opacity='0.3'/%3E%3Ccircle cx='50' cy='30' r='2' fill='%230052cc' opacity='0.3'/%3E%3Ccircle cx='50' cy='50' r='2' fill='%230052cc' opacity='0.3'/%3E%3Ccircle cx='70' cy='50' r='2' fill='%230052cc' opacity='0.3'/%3E%3Ccircle cx='70' cy='70' r='2' fill='%230052cc' opacity='0.3'/%3E%3Ccircle cx='90' cy='70' r='2' fill='%230052cc' opacity='0.3'/%3E%3Ccircle cx='10' cy='30' r='2' fill='%230052cc' opacity='0.3'/%3E%3Ccircle cx='30' cy='50' r='2' fill='%230052cc' opacity='0.3'/%3E%3Ccircle cx='50' cy='70' r='2' fill='%230052cc' opacity='0.3'/%3E%3Ccircle cx='70' cy='10' r='2' fill='%230052cc' opacity='0.3'/%3E%3Ccircle cx='70' cy='30' r='2' fill='%230052cc' opacity='0.3'/%3E%3Ccircle cx='90' cy='30' r='2' fill='%230052cc' opacity='0.3'/%3E%3C/svg%3E");
        }

        .dark .circuit-bg {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='none' stroke='%233385ff' stroke-width='0.5' d='M10,10 L30,10 M30,10 L30,30 M30,30 L50,30 M50,30 L50,50 M50,50 L70,50 M70,50 L70,70 M70,70 L90,70 M10,30 L30,30 M30,50 L50,50 M50,70 L70,70 M30,30 L30,50 M50,50 L50,70 M70,10 L70,30 M70,30 L90,30'/%3E%3Ccircle cx='30' cy='10' r='2' fill='%233385ff' opacity='0.6'/%3E%3Ccircle cx='30' cy='30' r='2' fill='%233385ff' opacity='0.6'/%3E%3Ccircle cx='50' cy='30' r='2' fill='%233385ff' opacity='0.6'/%3E%3Ccircle cx='50' cy='50' r='2' fill='%233385ff' opacity='0.6'/%3E%3Ccircle cx='70' cy='50' r='2' fill='%233385ff' opacity='0.6'/%3E%3Ccircle cx='70' cy='70' r='2' fill='%233385ff' opacity='0.6'/%3E%3Ccircle cx='90' cy='70' r='2' fill='%233385ff' opacity='0.6'/%3E%3Ccircle cx='10' cy='30' r='2' fill='%233385ff' opacity='0.6'/%3E%3Ccircle cx='30' cy='50' r='2' fill='%233385ff' opacity='0.6'/%3E%3Ccircle cx='50' cy='70' r='2' fill='%233385ff' opacity='0.6'/%3E%3Ccircle cx='70' cy='10' r='2' fill='%233385ff' opacity='0.6'/%3E%3Ccircle cx='70' cy='30' r='2' fill='%233385ff' opacity='0.6'/%3E%3Ccircle cx='90' cy='30' r='2' fill='%233385ff' opacity='0.6'/%3E%3C/svg%3E");
        }

        .light .circuit-bg {
            opacity: 0.45 !important;
        }

        /* Blockchain animation */
        .blockchain-container {
            position: relative;
            height: 100px;
            width: 100%;
            overflow: hidden;
        }

        .block {
            position: absolute;
            height: 60px;
            width: 60px;
            background: linear-gradient(135deg, #0052cc 0%, #3385ff 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .chain {
            position: absolute;
            height: 2px;
            background-color: #0052cc;
            top: 50%;
            transform: translateY(-50%);
        }

        /* Theme transition */
        .theme-transition {
            transition: all 0.3s ease;
        }

        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 100;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            width: 90%;
            max-width: 500px;
            padding: 2rem;
            border-radius: 1rem;
        }

        .dark .modal-content {
            background: linear-gradient(135deg, #001a40 0%, #001433 100%);
        }

        .light .modal-content {
            background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover {
            color: var(--primary-light);
        }

        .form-input {
            width: 100%;
            padding: 0.75rem;
            margin-bottom: 1rem;
            border-radius: 0.5rem;
            border: 1px solid rgba(0, 102, 255, 0.3);
            transition: all 0.3s ease;
        }

        .dark .form-input {
            background-color: rgba(0, 102, 255, 0.1);
            color: white;
        }

        .light .form-input {
            background-color: rgba(255, 255, 255, 0.8);
            color: #001433;
        }

        .form-input:focus {
            outline: none;
            border-color: #0066ff;
            box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.3);
        }

        /* Hero Africa Map Animation */
        .hero-animation {
            position: relative;
            width: 100%;
            height: 380px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .africa-map-container {
            position: relative;
            width: 320px;
            height: 360px;
            animation: float 6s ease-in-out infinite;
        }

        .africa-map-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 20px;
            filter:
                drop-shadow(0 0 15px rgba(0, 102, 255, 0.5))
                drop-shadow(0 0 30px rgba(0, 102, 255, 0.3))
                drop-shadow(0 0 45px rgba(0, 102, 255, 0.2));
            transition: all 0.4s ease;
            animation: map-glow 4s ease-in-out infinite alternate;
        }

        @keyframes map-glow {
            0% {
                filter:
                    drop-shadow(0 0 15px rgba(0, 102, 255, 0.5))
                    drop-shadow(0 0 30px rgba(0, 102, 255, 0.3))
                    drop-shadow(0 0 45px rgba(0, 102, 255, 0.2));
            }
            100% {
                filter:
                    drop-shadow(0 0 25px rgba(0, 102, 255, 0.7))
                    drop-shadow(0 0 50px rgba(0, 102, 255, 0.5))
                    drop-shadow(0 0 75px rgba(0, 102, 255, 0.3));
            }
        }

        .africa-map-container:hover .africa-map-image {
            transform: scale(1.03);
            filter:
                drop-shadow(0 0 30px rgba(0, 102, 255, 0.8))
                drop-shadow(0 0 60px rgba(0, 102, 255, 0.5))
                drop-shadow(0 0 90px rgba(0, 102, 255, 0.3));
        }

        /* Glowing border effect around map */
        .map-glow-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 110%;
            height: 110%;
            border-radius: 50%;
            border: 2px solid rgba(0, 102, 255, 0.3);
            animation: ring-pulse 3s ease-in-out infinite;
            pointer-events: none;
        }

        .map-glow-ring:nth-child(2) {
            width: 125%;
            height: 125%;
            animation-delay: 0.5s;
            border-color: rgba(0, 102, 255, 0.2);
        }

        .map-glow-ring:nth-child(3) {
            width: 140%;
            height: 140%;
            animation-delay: 1s;
            border-color: rgba(0, 102, 255, 0.1);
        }

        @keyframes ring-pulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.5;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.05);
                opacity: 1;
            }
        }

        /* Connection points on Africa map */
        .map-point {
            position: absolute;
            width: 14px;
            height: 14px;
            background: linear-gradient(135deg, #3385ff, #66a3ff);
            border-radius: 50%;
            box-shadow: 0 0 10px #3385ff, 0 0 20px rgba(0, 102, 255, 0.5);
            animation: point-pulse 2s ease-in-out infinite;
            z-index: 10;
        }

        .map-point::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 28px;
            height: 28px;
            border: 2px solid rgba(51, 133, 255, 0.6);
            border-radius: 50%;
            animation: point-ring 2s ease-in-out infinite;
        }

        .map-point::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 42px;
            height: 42px;
            border: 1px solid rgba(51, 133, 255, 0.3);
            border-radius: 50%;
            animation: point-ring 2s ease-in-out infinite 0.3s;
        }

        @keyframes point-pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 10px #3385ff, 0 0 20px rgba(0, 102, 255, 0.5);
            }
            50% {
                transform: scale(1.2);
                box-shadow: 0 0 20px #3385ff, 0 0 40px rgba(0, 102, 255, 0.7);
            }
        }

        @keyframes point-ring {
            0% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(1.5);
                opacity: 0;
            }
        }

        /* Animated connection lines */
        .map-connections {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
        }

        .map-connections line {
            stroke: #3385ff;
            stroke-width: 2;
            stroke-linecap: round;
            opacity: 0.6;
        }

        .map-connections .data-flow {
            fill: #66a3ff;
            animation: flow-move 3s linear infinite;
        }

        @keyframes flow-move {
            0% { offset-distance: 0%; opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { offset-distance: 100%; opacity: 0; }
        }

        /* Logo Container - For transparent logo with text */
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .logo-container img {
            height: 60px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 0 12px rgba(0, 102, 255, 0.5));
            transition: all 0.3s ease;
        }

        .logo-container:hover img {
            filter: drop-shadow(0 0 18px rgba(0, 102, 255, 0.7));
            transform: scale(1.05);
        }

        /* Mobile logo size */
        @media (max-width: 768px) {
            .logo-container img {
                height: 52px;
            }
        }

        /* Mobile brand text */
        @media (max-width: 640px) {
            .mobile-brand-text {
                font-size: 1.25rem;
                line-height: 1.2;
            }
        }

        /* Footer logo smaller version */
        .logo-container-sm img {
            height: 45px;
        }

        /* Dark mode adjustments for logo - invert text to white */
        .dark .logo-container img {
            filter: drop-shadow(0 0 15px rgba(51, 133, 255, 0.6)) brightness(1.3) contrast(1.1);
        }

        .dark .logo-container:hover img {
            filter: drop-shadow(0 0 20px rgba(51, 133, 255, 0.8)) brightness(1.4) contrast(1.1);
        }

        /* Footer logo needs extra brightness in dark footer */
        footer .logo-container img {
            filter: drop-shadow(0 0 8px rgba(51, 133, 255, 0.4)) brightness(1.5) contrast(1.2);
        }

        footer .logo-container:hover img {
            filter: drop-shadow(0 0 12px rgba(51, 133, 255, 0.6)) brightness(1.6) contrast(1.2);
        }

        @keyframes logo-shine {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) rotate(45deg);
            }
        }

        /* Product logo circles (small) */
        .product-logo-circle {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0052cc 0%, #3385ff 50%, #0066ff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow:
                0 0 12px rgba(0, 102, 255, 0.4),
                0 0 24px rgba(0, 102, 255, 0.2);
            transition: all 0.3s ease;
            animation: glow 2s ease-in-out infinite alternate;
        }

        .product-logo-circle:hover {
            transform: scale(1.15) rotate(5deg);
            box-shadow:
                0 0 20px rgba(0, 102, 255, 0.6),
                0 0 40px rgba(0, 102, 255, 0.4);
            animation: none;
        }

        .product-logo-circle img {
            filter: brightness(1.1);
        }

        /* Product logo circles (large for ecosystem section) */
        .product-logo-circle-lg {
            width: 64px;
            height: 64px;
            min-width: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0052cc 0%, #3385ff 50%, #0066ff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow:
                0 0 15px rgba(0, 102, 255, 0.5),
                0 0 30px rgba(0, 102, 255, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: glow 2.5s ease-in-out infinite alternate;
        }

        .product-logo-circle-lg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 40%,
                rgba(255, 255, 255, 0.15) 50%,
                transparent 60%
            );
            animation: logo-shine 4s ease-in-out infinite;
        }

        .product-logo-circle-lg:hover {
            transform: scale(1.15) rotate(5deg);
            box-shadow:
                0 0 25px rgba(0, 102, 255, 0.7),
                0 0 50px rgba(0, 102, 255, 0.5);
            animation: none;
        }

        .product-logo-circle-lg img {
            position: relative;
            z-index: 1;
            filter: brightness(1.1);
        }

        /* Icon circles for "Who We Serve" section */
        .icon-circle-lg {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0052cc 0%, #3385ff 50%, #0066ff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow:
                0 0 20px rgba(0, 102, 255, 0.5),
                0 0 40px rgba(0, 102, 255, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .icon-circle-lg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 40%,
                rgba(255, 255, 255, 0.15) 50%,
                transparent 60%
            );
            animation: logo-shine 4s ease-in-out infinite;
        }

        .glass-card:hover .icon-circle-lg {
            transform: scale(1.1);
            box-shadow:
                0 0 25px rgba(0, 102, 255, 0.6),
                0 0 50px rgba(0, 102, 255, 0.4);
        }

        .icon-circle-lg i {
            position: relative;
            z-index: 1;
        }

        /* Improved text readability */
        .readable-text {
            color: #1a365d;
            /* Dark blue-gray for light mode */
            font-weight: 500;
        }

        .dark .readable-text {
            color: #e2e8f0;
            /* Light gray for dark mode */
            font-weight: 500;
        }

        .zsp-text {
            color: #2D3748;
            /* Dark gray for light mode */
            font-weight: 500;
        }

        .dark .zsp-text {
            color: #e2e8f0;
            /* Light gray for dark mode */
            font-weight: 500;
        }

        /* Dog animation for coming soon modal */
        .dog-container {
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
            position: relative;
        }

        .dog-body {
            width: 60px;
            height: 40px;
            background: #8B5A2B;
            border-radius: 50% 50% 40% 40%;
            position: absolute;
            top: 60px;
            left: 45px;
        }

        .dog-head {
            width: 50px;
            height: 45px;
            background: #8B5A2B;
            border-radius: 45% 45% 40% 40%;
            position: absolute;
            top: 45px;
            left: 70px;
        }

        .dog-ear {
            width: 20px;
            height: 25px;
            background: #5D4037;
            border-radius: 50%;
            position: absolute;
        }

        .dog-ear-left {
            top: 35px;
            left: 65px;
            transform: rotate(-30deg);
        }

        .dog-ear-right {
            top: 35px;
            left: 95px;
            transform: rotate(30deg);
        }

        .dog-tail {
            width: 25px;
            height: 10px;
            background: #8B5A2B;
            border-radius: 50%;
            position: absolute;
            top: 65px;
            left: 25px;
            transform-origin: left center;
            animation: wag 1.5s ease-in-out infinite;
        }

        @keyframes wag {

            0%,
            100% {
                transform: rotate(-10deg);
            }

            50% {
                transform: rotate(60deg);
            }
        }

        .dog-leg {
            width: 10px;
            height: 25px;
            background: #8B5A2B;
            position: absolute;
        }

        .dog-leg-front-left {
            top: 85px;
            left: 50px;
        }

        .dog-leg-front-right {
            top: 85px;
            left: 80px;
        }

        .dog-leg-back-left {
            top: 85px;
            left: 40px;
        }

        .dog-leg-back-right {
            top: 85px;
            left: 90px;
        }

        .dog-eye {
            width: 6px;
            height: 6px;
            background: #000;
            border-radius: 50%;
            position: absolute;
            top: 55px;
        }

        .dog-eye-left {
            left: 75px;
        }

        .dog-eye-right {
            left: 90px;
        }

        .dog-nose {
            width: 10px;
            height: 8px;
            background: #000;
            border-radius: 50%;
            position: absolute;
            top: 65px;
            left: 85px;
        }

        .chasing-tail {
            animation: chase 3s linear infinite;
        }

        @keyframes chase {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Mobile Navigation */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 60;
        }

        .hamburger-line {
            width: 24px;
            height: 2px;
            background: linear-gradient(90deg, #0052cc, #3385ff);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .dark .hamburger-line {
            background: linear-gradient(90deg, #66a3ff, #99c2ff);
        }

        .mobile-menu-btn.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.95));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 55;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 100px 30px 30px;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .dark .mobile-nav {
            background: linear-gradient(135deg, rgba(0, 20, 51, 0.98), rgba(0, 10, 26, 0.98));
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 54;
        }

        .mobile-nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-link {
            display: block;
            padding: 15px 20px;
            font-size: 1.1rem;
            font-weight: 500;
            color: #001433;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .dark .mobile-nav-link {
            color: #e6f0ff;
        }

        .mobile-nav-link:hover,
        .mobile-nav-link:focus {
            background: rgba(0, 102, 255, 0.1);
            border-color: rgba(0, 102, 255, 0.3);
            transform: translateX(5px);
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex !important;
            }

            .desktop-nav {
                display: none !important;
            }

            header .container .flex {
                position: relative;
            }
        }

        /* Scroll-triggered animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }

        /* Enhanced modal animations */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0);
            z-index: 100;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }

        .modal.opening {
            display: flex;
            animation: modalFadeIn 0.3s ease forwards;
        }

        .modal.closing {
            animation: modalFadeOut 0.3s ease forwards;
        }

        @keyframes modalFadeIn {
            from {
                background-color: rgba(0, 0, 0, 0);
            }
            to {
                background-color: rgba(0, 0, 0, 0.6);
            }
        }

        @keyframes modalFadeOut {
            from {
                background-color: rgba(0, 0, 0, 0.6);
            }
            to {
                background-color: rgba(0, 0, 0, 0);
            }
        }

        .modal-content {
            width: 90%;
            max-width: 500px;
            padding: 2rem;
            border-radius: 1.5rem;
            transform: scale(0.9) translateY(20px);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        }

        .modal.opening .modal-content {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .modal.closing .modal-content {
            transform: scale(0.9) translateY(20px);
            opacity: 0;
        }

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0052cc, #3385ff);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 50;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            animation: glow 2s ease-in-out infinite alternate;
        }

        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 30px rgba(0, 102, 255, 0.6);
            animation: none;
        }

        .back-to-top:active {
            transform: translateY(-2px) scale(1.05);
        }

        .back-to-top i {
            color: white;
            font-size: 1.2rem;
        }

        /* Enhanced button styles */
        .btn-primary {
            position: relative;
            overflow: hidden;
            transform: translateY(0);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

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

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

        .btn-primary:active {
            transform: translateY(-1px);
        }

        /* Google Calendar scheduling button */
        #appointment-button {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #appointment-button .calendar-scheduling-button,
        #appointment-button .gcw-scheduling-button,
        #appointment-button .calendar-scheduling-button-button,
        #appointment-button .gcw-scheduling-button-button,
        #appointment-button button,
        #appointment-button a {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 8px !important;
            padding: 12px 22px !important;
            min-height: 44px !important;
            border-radius: 12px !important;
            font-family: 'Exo 2', sans-serif !important;
            font-weight: 600 !important;
            font-size: 0.95rem !important;
            color: #ffffff !important;
            background: linear-gradient(135deg, #0052cc 0%, #3385ff 100%) !important;
            border: 1px solid rgba(0, 102, 255, 0.5) !important;
            box-shadow: 0 10px 24px rgba(0, 102, 255, 0.3) !important;
            text-decoration: none !important;
            transition: transform 0.2s ease, box-shadow 0.2s ease !important;
        }

        #appointment-button .calendar-scheduling-button:hover,
        #appointment-button .gcw-scheduling-button:hover,
        #appointment-button .calendar-scheduling-button-button:hover,
        #appointment-button .gcw-scheduling-button-button:hover,
        #appointment-button button:hover,
        #appointment-button a:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 14px 30px rgba(0, 102, 255, 0.4) !important;
        }

        .light #appointment-button .calendar-scheduling-button:hover,
        .light #appointment-button .gcw-scheduling-button:hover,
        .light #appointment-button .calendar-scheduling-button-button:hover,
        .light #appointment-button .gcw-scheduling-button-button:hover,
        .light #appointment-button button:hover,
        .light #appointment-button a:hover {
            box-shadow: 0 16px 34px rgba(0, 82, 204, 0.35) !important;
        }

        #appointment-button .calendar-scheduling-button:active,
        #appointment-button .gcw-scheduling-button:active,
        #appointment-button .calendar-scheduling-button-button:active,
        #appointment-button .gcw-scheduling-button-button:active,
        #appointment-button button:active,
        #appointment-button a:active {
            transform: translateY(0) !important;
            box-shadow: 0 8px 18px rgba(0, 102, 255, 0.3) !important;
        }

        .light #appointment-button .calendar-scheduling-button,
        .light #appointment-button .gcw-scheduling-button,
        .light #appointment-button .calendar-scheduling-button-button,
        .light #appointment-button .gcw-scheduling-button-button,
        .light #appointment-button button,
        .light #appointment-button a {
            box-shadow: 0 12px 26px rgba(0, 82, 204, 0.28) !important;
        }

        /* Secondary/Outline button enhancements */
        .btn-secondary {
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .btn-secondary:hover::before {
            left: 100%;
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            border-color: #3385ff;
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
        }

        /* Learn More button specific styling */
        .learn-more-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .learn-more-btn i {
            transition: transform 0.3s ease;
        }

        .learn-more-btn:hover i {
            transform: translateX(4px);
        }

        /* Product modal styles */
        .product-modal .modal-content {
            max-width: 700px;
            max-height: 90vh;
            overflow-y: auto;
        }

        .product-modal-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0, 102, 255, 0.2);
        }

        .product-modal-icon {
            width: 72px;
            height: 72px;
            min-width: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0052cc 0%, #3385ff 50%, #0066ff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
        }

        .product-modal-icon img {
            width: 40px;
            height: 40px;
            filter: brightness(1.1);
        }

        .product-modal-title {
            font-size: 1.75rem;
            font-weight: 700;
        }

        .product-modal-tagline {
            font-size: 1.1rem;
            opacity: 0.8;
            margin-top: 4px;
        }

        .product-modal-section {
            margin-bottom: 24px;
        }

        .product-modal-section h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: #0066ff;
        }

        .dark .product-modal-section h4 {
            color: #66a3ff;
        }

        .product-modal-section p,
        .product-modal-section li {
            line-height: 1.7;
        }

        .product-features-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .product-features-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            padding: 12px;
            background: rgba(0, 102, 255, 0.05);
            border-radius: 8px;
            border-left: 3px solid #0066ff;
        }

        .dark .product-features-list li {
            background: rgba(0, 102, 255, 0.1);
            border-left-color: #3385ff;
        }

        .product-features-list li i {
            color: #0066ff;
            margin-top: 3px;
        }

        .dark .product-features-list li i {
            color: #66a3ff;
        }

        .product-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        @media (min-width: 640px) {
            .product-status {
                gap: 8px;
                padding: 8px 16px;
                font-size: 0.875rem;
            }
        }

        .product-status.live {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .product-status.pilot {
            background: rgba(59, 130, 246, 0.12);
            color: #3b82f6;
            border: 1px solid rgba(59, 130, 246, 0.35);
        }

        .product-status.development {
            background: rgba(234, 179, 8, 0.1);
            color: #eab308;
            border: 1px solid rgba(234, 179, 8, 0.3);
        }

        .product-status.coming-soon {
            background: rgba(0, 102, 255, 0.1);
            color: #3385ff;
            border: 1px solid rgba(0, 102, 255, 0.3);
        }

        /* Image loading skeleton */
        .img-skeleton {
            background: linear-gradient(90deg,
                rgba(0, 102, 255, 0.1) 0%,
                rgba(0, 102, 255, 0.2) 50%,
                rgba(0, 102, 255, 0.1) 100%);
            background-size: 200% 100%;
            animation: skeleton-loading 1.5s ease-in-out infinite;
        }

        @keyframes skeleton-loading {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }

        /* Form validation styles */
        .form-input.error {
            border-color: #ef4444 !important;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
        }

        .form-input.success {
            border-color: #22c55e !important;
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2) !important;
        }

        .error-message {
            color: #ef4444;
            font-size: 0.875rem;
            margin-top: -0.5rem;
            margin-bottom: 0.5rem;
            display: none;
        }

        .error-message.visible {
            display: block;
        }

        /* Loading spinner for form submit */
        .btn-loading {
            position: relative;
            pointer-events: none;
        }

        .btn-loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            left: 50%;
            margin-top: -10px;
            margin-left: -10px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        .btn-loading span {
            visibility: hidden;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Enhanced card hover effects */
        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

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

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

        /* Toast notification */
        .toast {
            position: fixed;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: linear-gradient(135deg, #0052cc, #3385ff);
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 200;
            font-weight: 500;
        }

        .toast.visible {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .toast.success {
            background: linear-gradient(135deg, #059669, #10b981);
        }

        .toast.error {
            background: linear-gradient(135deg, #dc2626, #ef4444);
        }

        /* Shimmer effect for buttons and cards */
        .shimmer-effect {
            position: relative;
            overflow: hidden;
        }

        .shimmer-effect::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            transition: left 0.5s;
        }

        .shimmer-effect:hover::before {
            left: 100%;
        }

        /* Floating particles background */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: rgba(0, 102, 255, 0.2);
            border-radius: 50%;
            pointer-events: none;
        }

        .light .particle {
            background: rgba(0, 82, 204, 0.25);
        }

        .particle.p1 {
            width: 4px;
            height: 4px;
            top: 20%;
            left: 10%;
            animation: float-slow 12s ease-in-out infinite;
        }

        .particle.p2 {
            width: 6px;
            height: 6px;
            top: 40%;
            right: 15%;
            animation: float-slow 15s ease-in-out infinite 2s;
        }

        .particle.p3 {
            width: 3px;
            height: 3px;
            top: 60%;
            left: 25%;
            animation: float 10s ease-in-out infinite 1s;
        }

        .particle.p4 {
            width: 5px;
            height: 5px;
            top: 80%;
            right: 30%;
            animation: float 13s ease-in-out infinite 3s;
        }

        /* Icon pulse animation */
        .icon-pulse {
            animation: iconPulse 2s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        /* Tilt effect on hover */
        .tilt-hover {
            transition: transform 0.3s ease;
        }

        .tilt-hover:hover {
            transform: perspective(1000px) rotateX(2deg) rotateY(2deg);
        }

        /* Gradient text animation */
        .gradient-text-animate {
            background: linear-gradient(90deg, #0052cc, #3385ff, #66a3ff, #3385ff, #0052cc);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradient-x 3s linear infinite;
        }

        /* Bounce on hover */
        .bounce-hover:hover {
            animation: bounceOnce 0.6s ease;
        }

        @keyframes bounceOnce {
            0%, 100% { transform: translateY(0); }
            25% { transform: translateY(-10px); }
            50% { transform: translateY(0); }
            75% { transform: translateY(-5px); }
        }

        /* Glow on hover effect */
        .glow-hover {
            transition: all 0.3s ease;
        }

        .glow-hover:hover {
            filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.6));
        }

        /* Magnetic button effect */
        .magnetic-btn {
            transition: all 0.2s ease;
        }

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

        .magnetic-btn:active {
            transform: translateY(0);
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
        }

        /* Ripple effect */
        @keyframes ripple {
            0% {
                transform: scale(0);
                opacity: 1;
            }
            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        /* Parallax scroll effect */
        .parallax {
            transition: transform 0.1s ease-out;
        }

        /* Text reveal animation */
        .text-reveal {
            position: relative;
            overflow: hidden;
        }

        .text-reveal::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, #e6f0ff, transparent);
            animation: textReveal 2s ease-in-out;
        }

        @keyframes textReveal {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        /* Hero specific styles */
        .hero-title {
            background: linear-gradient(135deg, #001433, #0052cc, #3385ff, #66a3ff);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            background-clip: text;
            animation: gradientFlow 8s ease infinite;
        }

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

        /* Spotlight effect */
        .spotlight {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .light .spotlight {
            background: radial-gradient(circle, rgba(0, 82, 204, 0.2) 0%, transparent 70%);
        }

        /* Animated gradient orbs */
        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
            animation: float 20s ease-in-out infinite;
            pointer-events: none;
        }

        .light .gradient-orb {
            opacity: 0.55;
            filter: blur(70px);
        }

        .gradient-orb-1 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #0052cc, #3385ff);
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .gradient-orb-2 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #3385ff, #66a3ff);
            bottom: -50px;
            right: -50px;
            animation-delay: 4s;
        }

        .gradient-orb-3 {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, #66a3ff, #99c2ff);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 2s;
        }

        /* Glass morphism enhanced */
        .glass-morph {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px 0 rgba(0, 102, 255, 0.1);
        }

        .dark .glass-morph {
            background: rgba(0, 20, 80, 0.1);
            border: 1px solid rgba(0, 102, 255, 0.2);
        }

        /* Neon text glow */
        .neon-text {
            text-shadow:
                0 0 10px rgba(0, 102, 255, 0.5),
                0 0 20px rgba(0, 102, 255, 0.3),
                0 0 30px rgba(0, 102, 255, 0.2);
            animation: neonPulse 3s ease-in-out infinite;
        }

        @keyframes neonPulse {
            0%, 100% {
                text-shadow:
                    0 0 10px rgba(0, 102, 255, 0.5),
                    0 0 20px rgba(0, 102, 255, 0.3),
                    0 0 30px rgba(0, 102, 255, 0.2);
            }
            50% {
                text-shadow:
                    0 0 15px rgba(0, 102, 255, 0.7),
                    0 0 30px rgba(0, 102, 255, 0.5),
                    0 0 45px rgba(0, 102, 255, 0.3);
            }
        }

        /* Typing cursor effect */
        .typing-cursor::after {
            content: '|';
            animation: blink 1s step-end infinite;
            margin-left: 4px;
            color: #3385ff;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Scan line effect */
        .scan-line {
            position: absolute;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #3385ff, transparent);
            animation: scan 4s linear infinite;
            pointer-events: none;
            opacity: 0.3;
        }

        .light .scan-line {
            background: linear-gradient(90deg, transparent, #0052cc, transparent);
            opacity: 0.5;
        }

        @keyframes scan {
            0% {
                top: 0%;
            }
            100% {
                top: 100%;
            }
        }

        /* 3D card effect */
        .card-3d {
            transform-style: preserve-3d;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .card-3d:hover {
            transform: rotateY(5deg) rotateX(5deg) scale(1.05);
        }

        /* Liquid button effect */
        .liquid-btn {
            position: relative;
            overflow: hidden;
        }

        .liquid-btn::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;
        }

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

        /* Enhanced map glow rings */
        .map-glow-ring {
            animation: mapGlowPulse 3s ease-in-out infinite;
        }

        @keyframes mapGlowPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.6;
            }
        }

        /* Sleek scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(0, 20, 51, 0.1);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #0052cc, #3385ff);
            border-radius: 10px;
            border: 2px solid transparent;
            background-clip: padding-box;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #3385ff, #66a3ff);
            background-clip: padding-box;
        }

        /* Selection color */
        ::selection {
            background: rgba(0, 102, 255, 0.3);
            color: #001433;
        }

        ::-moz-selection {
            background: rgba(0, 102, 255, 0.3);
            color: #001433;
        }

        /* Enhanced page load animation */
        @keyframes pageLoad {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        body {
            animation: pageLoad 0.8s ease-out;
        }

        /* Smooth hover transitions for all interactive elements */
        a, button, input, textarea {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
    
