:root {
            --bg: #f8fafc;
            --card-bg: #ffffff;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --accent-1: #3b82f6;
            --accent-2: #10b981;
            --accent-3: #f59e0b;
            --accent-4: #8b5cf6;
            --accent-5: #ec4899;
            --accent-6: #06b6d4;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
            --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.18), 0 10px 20px rgba(0, 0, 0, 0.1);
            --radius: 20px;
            --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

       

        /* Floating background orbs */
        .bg-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.25;
            pointer-events: none;
            z-index: 0;
            animation: floatOrb 20s ease-in-out infinite;
        }
        .bg-orb.orb-1 {
            width: 400px;
            height: 400px;
            background: #93c5fd;
            top: -100px;
            left: -80px;
            animation-delay: 0s;
        }
        .bg-orb.orb-2 {
            width: 350px;
            height: 350px;
            background: #a7f3d0;
            bottom: -120px;
            right: -60px;
            animation-delay: -7s;
            animation-duration: 18s;
        }
        .bg-orb.orb-3 {
            width: 280px;
            height: 280px;
            background: #fde68a;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -14s;
            animation-duration: 22s;
        }

        @keyframes floatOrb {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(60px, -40px) scale(1.15);
            }
            50% {
                transform: translate(-30px, 50px) scale(0.9);
            }
            75% {
                transform: translate(-50px, -30px) scale(1.1);
            }
        }

        /* Main Section */
        .workflow-section {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            width: 100%;
            padding: 20px;
        }

        /* Heading */
        .section-heading {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        .section-heading h2 {
            font-size: 2em;
            font-weight: 800;
            color: #1e293b;
            letter-spacing: -0.02em;
            position: relative;
            display: inline-block;
            padding-bottom: 20px;
            background: #000;
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 5s ease-in-out infinite;
            text-transform: uppercase;
        }
        @keyframes gradientShift {
            0%,
            100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        .section-heading .heading-line {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #fda335;
            border-radius: 10px;
            animation: linePulse 2.5s ease-in-out infinite;
        }
        @keyframes linePulse {
            0%,
            100% {
                width: 80px;
                opacity: 0.8;
            }
            50% {
                width: 140px;
                opacity: 1;
            }
        }
        .section-heading .subtitle {
            margin-top: 12px;
            font-size: 1.05rem;
            color: #64748b;
            font-weight: 500;
            letter-spacing: 0.03em;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            padding: 10px;
        }

        /* Individual Card */
        .card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 25px 20px 15px;
            position: relative;
            cursor: pointer;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(226, 232, 240, 0.8);
            overflow: hidden;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            animation: cardEntry 0.7s ease-out forwards;
            opacity: 0;
            transform: translateY(40px);
        }
        .card:nth-child(1) {
            animation-delay: 0.05s;
        }
        .card:nth-child(2) {
            animation-delay: 0.15s;
        }
        .card:nth-child(3) {
            animation-delay: 0.25s;
        }
        .card:nth-child(4) {
            animation-delay: 0.35s;
        }
        .card:nth-child(5) {
            animation-delay: 0.45s;
        }
        .card:nth-child(6) {
            animation-delay: 0.55s;
        }

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

        /* Card gradient border glow */
        .card::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: calc(var(--radius) + 2px);
            background: transparent;
            z-index: -2;
            transition: all var(--transition);
            opacity: 0;
        }

        /* Card inner background shine */
        .card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center,
                    rgba(255, 255, 255, 0) 30%,
                    rgba(255, 255, 255, 0.03) 60%,
                    rgba(255, 255, 255, 0) 80%);
            z-index: -1;
            transition: all 0.6s ease;
            opacity: 0;
            transform: scale(0.5);
        }

        /* Icon Container */
        .card .icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
            position: relative;
            transition: all var(--transition);
            z-index: 2;
        }
        .card .icon-wrapper .icon-bg {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            transition: all var(--transition);
            z-index: -1;
        }
        .card .icon-wrapper i {
            font-size: 2.2rem;
            color: #fff;
            transition: all var(--transition);
            z-index: 2;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
        }

        /* Card accent colors */
        .card.card-accent-1 .icon-wrapper .icon-bg {
            background: #eb9009;
        }
        .card.card-accent-2 .icon-wrapper .icon-bg {
            background: #eb9009;
        }
        .card.card-accent-3 .icon-wrapper .icon-bg {
            background: #eb9009;
        }
        .card.card-accent-4 .icon-wrapper .icon-bg {
            background: #eb9009;
        }
        .card.card-accent-5 .icon-wrapper .icon-bg {
            background: #eb9009;
        }
        .card.card-accent-6 .icon-wrapper .icon-bg {
            background: #eb9009;
        }

        .card h3 {
            font-size: 24px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
            transition: all var(--transition);
            letter-spacing: -0.01em;
            z-index: 2;
        }
        
        .card p {
            /*font-size: 0.95rem;*/
            color: #000;
            line-height: 1.7;
            transition: all var(--transition);
            z-index: 2;
            max-width: 260px;
        }
        

        /* Hover Effects */
        .card:hover {
            transform: translateY(-16px) scale(1.03);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }
        .card:hover::before {
            opacity: 1;
        }
        .card.card-accent-1:hover::before {
            background: #000;
        }
        .card.card-accent-2:hover::before {
            background: #000;
        }
        .card.card-accent-3:hover::before {
            background: #000;
        }
        .card.card-accent-4:hover::before {
            background: #000;
        }
        .card.card-accent-5:hover::before {
            background: #000;
        }
        .card.card-accent-6:hover::before {
            background: #000;
        }
        .card:hover::after {
            opacity: 1;
            transform: scale(1);
        }
        .card:hover .icon-wrapper {
            transform: scale(1.15) rotate(-8deg);
            filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
        }
        .card:hover .icon-wrapper i {
            transform: scale(1.1);
            animation: iconBounce 0.6s ease-out;
        }
        @keyframes iconBounce {
            0% {
                transform: scale(1);
            }
            30% {
                transform: scale(1.35);
            }
            60% {
                transform: scale(0.9);
            }
            100% {
                transform: scale(1.1);
            }
        }
        .card:hover h3 {
            transform: translateY(-2px);
            letter-spacing: 0.02em;
            color:#fff;
        }
        .card:hover p {
            color: #fff;
        }

        /* Active/press effect */
        .card:active {
            transform: translateY(-8px) scale(0.97);
            transition: all 0.15s ease;
            box-shadow: var(--shadow-md);
        }

        /* Ripple effect on card */
        .card .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: scale(0);
            animation: rippleEffect 0.7s ease-out forwards;
            pointer-events: none;
            z-index: 5;
        }
        @keyframes rippleEffect {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 22px;
            }
            .card {
                padding: 30px 22px 26px;
            }
            .card .icon-wrapper {
                width: 68px;
                height: 68px;
            }
            .card .icon-wrapper i {
                font-size: 1.8rem;
            }
            .card h3 {
                /*font-size: 1.15rem;*/
            }
            .card p {
                /*font-size: 0.9rem;*/
            }
        }

        @media (max-width: 600px) {
            .cards-grid {
                grid-template-columns: 1fr;
                gap: 18px;
                max-width: 420px;
                margin: 0 auto;
            }
            .card {
                padding: 28px 20px 24px;
                flex-direction: row;
                text-align: left;
                align-items: center;
                gap: 18px;
                border-radius: 16px;
            }
            .card .icon-wrapper {
                width: 56px;
                height: 56px;
                min-width: 56px;
                margin-bottom: 0;
                flex-shrink: 0;
            }
            .card .icon-wrapper i {
                font-size: 1.5rem;
            }
            .card .text-content {
                flex: 1;
            }
            .card h3 {
                /*font-size: 1.05rem;*/
                margin-bottom: 4px;
            }
            .card p {
                /*font-size: 0.85rem;*/
                max-width: 100%;
            }
            .card:hover {
                transform: translateY(-8px) scale(1.02);
            }
            .card:hover .icon-wrapper {
                transform: scale(1.1) rotate(-5deg);
            }
            .section-heading {
                margin-bottom: 36px;
            }
            .bg-orb {
                display: none;
            }
        }

        @media (max-width: 380px) {
            .card {
                padding: 22px 16px 20px;
                gap: 14px;
                border-radius: 14px;
            }
            .card .icon-wrapper {
                width: 48px;
                height: 48px;
                min-width: 48px;
            }
            .card .icon-wrapper i {
                font-size: 1.3rem;
            }
            .card h3 {
                /*font-size: 0.95rem;*/
            }
            .card p {
                /*font-size: 0.8rem;*/
                line-height: 1.5;
            }
            .cards-grid {
                gap: 14px;
            }
        }

        /* Smooth scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: transparent;
        }
        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 10px;
        }