

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
          

        }

        /* Dark mode support */
        .dark {
            color-scheme: dark;
        }

        /* Gradient text */
        .gradient-text {
            background: linear-gradient(135deg, #1e40af, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse-slow {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        @keyframes bounce-slow {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes slide-in {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes zoom-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes wiggle {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-3deg); }
            75% { transform: rotate(3deg); }
        }

        @keyframes glow {
            0% {
                box-shadow: 0 0 10px rgba(93, 92, 222, 0.5);
            }
            50% {
                box-shadow: 0 0 20px rgba(93, 92, 222, 0.8);
            }
            100% {
                box-shadow: 0 0 10px rgba(93, 92, 222, 0.5);
            }
        }

        .animate-float { animation: float 3s ease-in-out infinite; }
        .animate-pulse-slow { animation: pulse-slow 3s ease-in-out infinite; }
        .animate-bounce-slow { animation: bounce-slow 2s ease-in-out infinite; }
        .animate-slide-in { animation: slide-in 1s ease-out; }
        .animate-zoom-pulse { animation: zoom-pulse 2s ease-in-out infinite; }
        .animate-wiggle { animation: wiggle 1s ease-in-out infinite; }
        .animate-glow { animation: glow 3s ease-in-out infinite; }

        /* Floating shapes */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            z-index: 0;
        }

        .floating-shape {
            position: absolute;
            animation: float 6s ease-in-out infinite;
        }

        .floating-shape:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-shape:nth-child(2) {
            top: 60%;
            right: 20%;
            animation-delay: 2s;
        }

        .floating-shape:nth-child(3) {
            bottom: 30%;
            left: 60%;
            animation-delay: 4s;
        }

        /* Card styles */
        .expertise-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .expertise-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .dark .expertise-card {
            background: rgba(31, 41, 55, 0.9);
            border: 1px solid rgba(75, 85, 99, 0.2);
        }

        .industry-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1e40af, #f59e0b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin: 0 auto 16px;
            position: relative;
            overflow: hidden;
        }

        .industry-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(45deg);
            animation: shine 3s ease-in-out infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            50% { transform: translateX(0%) translateY(0%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        /* Sector item styles */
        .sector-item:hover {
            transform: translateX(10px);
        }

        /* Tag styles with brand colors */
        .tag-primary {
            background: rgba(30, 64, 175, 0.1);
            color: #1e40af;
        }

        .tag-gold {
            background: rgba(245, 158, 11, 0.1);
            color: #f59e0b;
        }

        .tag-brown {
            background: rgba(139, 69, 19, 0.1);
            color: #8b4513;
        }

        /* Typing animation */
        .typing-animation {
            border-right: 2px solid #1e40af;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { border-color: #1e40af; }
            51%, 100% { border-color: transparent; }
        }

        /* Responsive improvements */
        @media (max-width: 768px) {
            .floating-shape {
                display: none;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #1e40af;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #f59e0b;
        }
