 /* General Body & Typography */
        body {
            font-family: 'Syne', sans-serif;
            background-color: #F8F8F8;
            color: #2C2C2C;
            line-height: 1.6;
            scroll-behavior: smooth;
            overflow-x: hidden; /* Ensure no horizontal scroll for the entire page */
        }
        h1, h2, h3, h4 {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            color: #2C2C2C;
        }
        h1 { font-weight: 800; }

        .section-padding {
            padding: 80px 0;
        }

        /* Hero Section - Animated SVG Shapes Background */
        .hero-section {
            background: linear-gradient(135deg, #FF6600, #FF3300);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
            box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
            z-index: 0;
        }
        .hero-svg-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            filter: blur(2px); /* Subtle blur for ethereal effect */
        }
        .hero-svg-background .shape {
            fill: rgba(255,255,255,0.1);
            animation: morphAndFloat 25s infinite ease-in-out;
            transform-origin: center center;
            opacity: 0.8;
        }
        .hero-svg-background .shape:nth-child(1) {
            transform: translate(-50px, -50px) scale(0.9);
            animation-delay: 0s;
        }
        .hero-svg-background .shape:nth-child(2) {
            transform: translate(100px, 0px) scale(1.2);
            animation-delay: -8s;
        }
        .hero-svg-background .shape:nth-child(3) {
            transform: translate(0px, 100px) scale(1.0);
            animation-delay: -16s;
        }
        .hero-svg-background .shape:nth-child(4) {
            transform: translate(-100px, -20px) scale(1.1);
            animation-delay: -24s;
        }
        @keyframes morphAndFloat {
            0%, 100% { 
                transform: translate(0, 0) rotate(0deg) scale(1); 
                opacity: 0.8;
                border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            }
            25% { 
                transform: translate(15px, -15px) rotate(10deg) scale(1.05); 
                opacity: 0.9;
                border-radius: 60% 40% 30% 70% / 70% 30% 60% 40%;
            }
            50% { 
                transform: translate(0, 0) rotate(0deg) scale(1); 
                opacity: 0.7;
                border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            }
            75% { 
                transform: translate(-15px, 15px) rotate(-10deg) scale(1.05); 
                opacity: 0.9;
                border-radius: 70% 30% 40% 60% / 60% 40% 50% 30%;
            }
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }
        .hero-title {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
        }
        .hero-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            font-weight: 500;
        }
        .hero-cta-button {
            background-color: #FFFFFF;
            color: #FF6600;
            padding: 1rem 2.5rem;
            border-radius: 9999px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            display: inline-block;
        }
        .hero-cta-button:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .just-dial-rating {
            font-size: 1.15rem;
            font-weight: 600;
            color: white;
            margin-top: 1.5rem;
            margin-bottom: 2.5rem;
        }
        .just-dial-rating strong {
            color: #FFFAEC;
        }

        /* General Card Base Styles */
        .card-base {
            background-color: #FFFFFF;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border: 1px solid #E0E0E0;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
            position: relative;
            overflow: hidden;
            display: flex; /* Ensure inner content pushes */
            flex-direction: column;
        }
        .card-title {
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #2C2C2C;
        }
        .card-description {
            font-size: 1rem;
            color: #6B6B6B;
            overflow-wrap: break-word; 
            word-break: break-word; 
            line-height: 1.6;
            flex-grow: 1; /* Allow description to take available height */
        }

        /* Our Design Philosophy (New UI: "Focus Lens" with Icon Morph) */
        .philosophy-grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3.5rem; /* More spacing */
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .philosophy-card {
            @apply card-base p-6 text-center;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1); /* Smoother, bouncier transition */
            z-index: 1;
        }
        .philosophy-card:hover {
            transform: perspective(1000px) translateZ(50px) translateY(-25px) scale(1.07); /* 3D lift and scale */
            box-shadow: 0 35px 70px rgba(0,0,0,0.35), 0 0 0 12px rgba(255, 102, 0, 0.7); /* Even stronger, vibrant glow */
            border-color: #FF6600;
            z-index: 3; /* Ensure it's on top */
        }
        .philosophy-card .svg-icon-wrapper {
            width: 120px; /* Larger icon area */
            height: 120px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden; /* Important for morphing SVGs */
        }
        .philosophy-card .svg-icon-wrapper svg {
            width: 100%;
            height: 100%;
            transition: all 0.6s ease-in-out;
            transform-origin: center center;
        }
        /* Specific SVG morphing/transformation for philosophy icons */
        .philosophy-card:hover .svg-icon-wrapper svg #path1 { /* Example path IDs */
            transform: translateX(5px) rotate(15deg);
        }
        .philosophy-card:hover .svg-icon-wrapper svg #path2 {
            transform: translateY(-5px) scale(1.1);
        }
        .philosophy-card:hover .svg-icon-wrapper svg #path3 {
            transform: translateX(-5px) rotate(-15deg);
        }
        /* Radial gradient background on hover */
        .philosophy-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle at center, rgba(255, 153, 0, 0.2), transparent);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.6s ease-out;
            z-index: -1;
            opacity: 0;
        }
        .philosophy-card:hover::before {
            width: 150%;
            height: 150%;
            opacity: 1;
        }
        .philosophy-card:hover .card-title {
            color: #FF6600; /* Highlight title on hover */
        }

        /* Core Design Services (New UI: "Liquid Reveal" Cards) */
        .services-horizontal-scroll-container {
            position: relative;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 2rem;
            background-color: #FDFDFD; /* Ensure consistent background for liquid effect */
        }
        .services-grid-wrapper {
            display: flex;
            gap: 2.5rem; /* Larger gap */
            padding: 1.5rem 0;
            min-width: fit-content;
        }
        .service-card {
            @apply card-base p-6 text-center;
            flex-shrink: 0;
            width: 320px; /* Fixed width for horizontal scroll */
            scroll-snap-align: center;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            background: #FFFFFF; /* Ensure base background is white for contrast */
        }
        .service-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.25), 0 0 0 8px rgba(255, 102, 0, 0.5);
            border-color: #FF6600;
        }
        /* Liquid fill effect */
        .service-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0%; /* Starts at 0 height */
            background: linear-gradient(to top, #FF6600, #FF9900); /* Orange liquid */
            transition: height 0.5s ease-out;
            z-index: -1;
        }
        .service-card:hover::before {
            height: 100%; /* Fills up on hover */
        }
        .service-card .svg-icon {
            width: 90px; /* Larger SVG icons */
            height: 90px;
            margin: 0 auto 1.5rem;
            display: block; /* For centering */
            transition: all 0.5s ease-in-out;
            position: relative; /* Ensure it stays above liquid */
            z-index: 1;
        }
        .service-card:hover .svg-icon {
            transform: scale(1.15) rotate(15deg); /* Icon scales and rotates */
        }
        /* For individual SVG path fills that need to change color */
        .service-card:hover .svg-icon path, 
        .service-card:hover .svg-icon circle, 
        .service-card:hover .svg-icon rect,
        .service-card:hover .svg-icon polygon {
            fill: white; /* Ensure nested SVG elements also turn white */
        }
        .service-card .service-title, .service-card .service-description {
            position: relative;
            z-index: 1; /* Ensure text is above liquid */
            transition: color 0.5s ease-in-out;
        }
        .service-card:hover .service-title {
            color: white;
        }
        .service-card:hover .service-description {
            color: #FFF5EE; /* Light orange for description on hover */
        }

        /* Our Design Process (New UI: "Stitched Story Timeline" - Vertical) */
        .process-main-section {
            background-color: #F8F8F8; /* Use main background for this section */
            padding: 80px 0;
        }
        .process-flow-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .process-timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            height: 100%;
            width: 4px;
            background-color: #DEDEDE; /* Base line color */
            transform: translateX(-50%);
            z-index: 0;
            overflow: hidden; /* For drawing animation */
        }
        .process-timeline-line::after { /* Animated filling line */
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--line-fill-height, 0%); /* Controlled by JS */
            background: linear-gradient(to bottom, #FF6600, #FF9900);
            transition: height 0.3s ease-out;
        }

        .process-step-row {
            display: flex;
            align-items: center; /* Align items vertically in the middle */
            margin-bottom: 80px; /* Space between steps */
            position: relative;
            width: 100%; /* Take full width to manage offset */
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Slower animation */
        }
        .process-step-row.in-view {
            opacity: 1;
            transform: translateY(0);
        }
        .process-step-row:last-child {
            margin-bottom: 0; /* No margin after the last step */
        }

        /* Common styles for the node/connector side */
        .process-node {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1; /* Above the main line */
        }

        /* Specific alignment for odd/even rows */
        .process-step-row:nth-child(odd) { /* Node on right, box on left */
            justify-content: space-between; /* Pushes content to ends */
        }
        .process-step-row:nth-child(odd) .process-node { /* Renamed from process-node-left for simplicity */
            margin-right: 30px; /* Space between node and box */
            order: 2; /* Node comes after the box in the flex order */
        }
        .process-step-row:nth-child(odd) .process-step-box-flow {
            order: 1; /* Box comes first */
        }

        .process-step-row:nth-child(even) { /* Node on left, box on right */
            justify-content: space-between;
        }
        .process-step-row:nth-child(even) .process-node { /* Renamed from process-node-right for simplicity */
            margin-left: 30px; /* Space between node and box */
            order: 1; /* Node comes first */
        }
        .process-step-row:nth-child(even) .process-step-box-flow {
            order: 2; /* Box comes second */
        }

        /* The Icon Circle (replaces .process-point) */
        .process-icon-circle {
            width: 60px; /* Larger circle to contain icon */
            height: 60px;
            border-radius: 50%;
            background-color: #FF6600; /* Primary accent */
            border: 6px solid #F8F8F8; /* Matches section background for "cutout" effect */
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 0 0 rgba(255,102,0,0.5);
            animation: pulse 1.5s infinite ease-in-out;
            flex-shrink: 0; /* Don't shrink icon circle */
            z-index: 2; /* Ensure it's on top of connector line */
        }
        .process-step-row.in-view .process-icon-circle {
            animation-play-state: running;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255,102,0,0.5); }
            70% { box-shadow: 0 0 0 15px rgba(255,102,0,0); }
            100% { box-shadow: 0 0 0 0 rgba(255,102,0,0); }
        }

        /* SVG icon inside the circle */
        .process-icon-svg {
            width: 35px; /* Smaller, iconic SVG */
            height: 35px;
            fill: white; /* Ensure SVG paths are white */
        }


        /* Connector Line from Circle to Box */
        .process-connector-line {
            width: 50px; /* Length of the horizontal connector line */
            height: 2px;
            background-color: #FF6600; /* Matches accent color */
            position: absolute; /* Position relative to .process-node */
            top: 50%;
            transform: translateY(-50%);
            z-index: 1; /* Behind the icon circle but above main line */
        }
        .process-step-row:nth-child(odd) .process-connector-line { /* Connector from right node to left box */
            left: -50px; /* Position to connect from right of node to left of box */
        }
        .process-step-row:nth-child(even) .process-connector-line { /* Connector from left node to right box */
            right: -50px; /* Position to connect from left of node to right of box */
        }

        /* Step Box */
        .process-step-box-flow {
            @apply card-base p-6 text-left;
            flex-basis: calc(50% - 60px); /* Half width minus space for node/connector */
            max-width: 450px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
            cursor: pointer;
        }
        .process-step-box-flow:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
            border-color: #FF6600;
        }
        .process-step-box-flow h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }
        .process-step-box-flow .card-description {
            font-size: 0.95rem;
        }

        /* Our Design Toolkit Section (New UI: "Artisan's Palette" Grid) */
        .toolkit-grid-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* Larger click area */
            gap: 2rem;
            justify-content: center;
            padding: 2rem 0;
        }
        .tool-card {
            @apply card-base p-4 text-center;
            height: 160px; /* Fixed height for consistent grid */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 1;
        }
        .tool-card:hover {
            transform: translateY(-15px) scale(1.08);
            box-shadow: 0 15px 35px rgba(255, 102, 0, 0.4);
            border-color: #FF6600;
            z-index: 2;
        }
        .tool-card.active {
            background-color: #FF6600;
            color: white;
            transform: scale(1.15); /* Even larger when active */
            box-shadow: 0 10px 25px rgba(255, 102, 0, 0.6);
            border-color: #FF6600;
            z-index: 3;
        }
        .tool-icon-svg {
            width: 80px; /* Very large SVG logo */
            height: 80px;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease-in-out;
        }
        /* Force SVG elements to white when tool card is active */
        .tool-card.active .tool-icon-svg path,
        .tool-card.active .tool-icon-svg circle,
        .tool-card.active .tool-icon-svg rect,
        .tool-card.active .tool-icon-svg polygon {
            fill: white !important;
            stroke: white !important; /* Important for outlines */
        }
        .tool-label {
            font-size: 1rem; /* Larger label */
            font-weight: 600;
            color: #6B6B6B;
        }
        .tool-card.active .tool-label {
            color: white;
        }
        .tool-details-panel {
            @apply card-base p-8 mt-16 mx-auto max-w-5xl text-left; /* Even more top margin, wider */
            min-height: 250px; /* Larger panel */
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .tool-details-panel h3 {
            font-size: 2rem; /* Larger heading */
            font-weight: 700;
            margin-bottom: 1rem;
            color: #2C2C2C;
        }
        .tool-details-panel p {
            font-size: 1.1rem; /* Larger text */
            color: #6B6B6B;
        }

        /* Industry-Specific Design Section (New UI: "Focus-in" Cards) */
        .industry-grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        .industry-card {
            @apply card-base p-6 text-center;
            cursor: pointer;
            transition: all 0.5s ease-out;
        }
        .industry-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 8px rgba(255, 102, 0, 0.5);
            border-color: #FF6600;
        }
        /* Dynamic background pattern on hover */
        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(45deg, rgba(255, 102, 0, 0.1) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255, 102, 0, 0.1) 25%, transparent 25%);
            background-size: 40px 40px; /* Pattern cells */
            background-position: 0 0, 20px 20px; /* Offset for brick pattern */
            opacity: 0;
            transition: opacity 0.5s ease-out, background-size 0.5s ease-out;
            z-index: 0; /* Behind content */
        }
        .industry-card:hover::before {
            opacity: 1;
            background-size: 50px 50px; /* Pattern slightly grows */
        }
        .industry-svg-icon {
            width: 100px; /* Larger icon */
            height: 100px;
            margin: 0 auto 1.5rem;
            display: block;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative; z-index: 1;
        }
        .industry-card:hover .industry-svg-icon {
            transform: scale(1.2) rotate(15deg); /* More pronounced focus-in effect */
        }
        .industry-card .card-title,
        .industry-card .card-description {
            position: relative; z-index: 1; /* Ensure text is above pattern */
        }
        .highlight-text {
            color: #FF6600;
            font-weight: 700;
        }

        /* Success Stories Section - "Floating Quotes" Carousel */
        .testimonial-carousel-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background-color: #FDFDFD;
            padding: 2.5rem 0;
            border: 1px solid #E0E0E0;
        }
        .testimonial-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 0 2.5rem;
        }
        .testimonial-item {
            flex-shrink: 0;
            width: 100%;
            padding: 2rem; /* More padding */
            text-align: center;
            background-color: white;
            border-radius: 15px; /* Larger radius */
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border: 1px solid #E0E0E0;
            margin: 0 1rem; /* More space between items */
            height: auto; 
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            transform: rotateZ(1deg) translateY(0px); /* Subtle initial skew/float */
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .testimonial-item:nth-child(even) {
            transform: rotateZ(-1deg) translateY(0px); /* Alternate skew */
        }
        .testimonial-item:hover {
            transform: rotateZ(0deg) translateY(-10px) scale(1.02); /* Straighten and lift on hover */
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            border-color: #FF6600;
        }
        /* Large background quotation mark for design touch */
        .testimonial-item::before {
            content: '\f10e'; /* Font Awesome quote-right icon unicode */
            font-family: 'Font Awesome 6 Free'; /* Use Font Awesome font */
            font-weight: 900; /* For solid icon */
            position: absolute;
            top: 20px; /* Adjust position */
            left: 50%;
            transform: translateX(-50%);
            font-size: 12rem; /* Larger */
            color: rgba(255, 102, 0, 0.04); /* More transparent */
            z-index: 0;
            line-height: 1;
            pointer-events: none;
        }
        .testimonial-text {
            font-size: 1.2rem; /* Larger text */
            font-style: italic;
            color: #2C2C2C;
            margin-bottom: 2rem; /* More margin */
            line-height: 1.8;
            flex-grow: 1;
            overflow-wrap: break-word;
            word-break: break-word;
            position: relative;
            z-index: 1;
        }
        .testimonial-author {
            font-weight: 700;
            font-size: 1.1rem;
            color: #FF6600;
            position: relative; z-index: 1;
        }
        .testimonial-title-meta {
            font-size: 0.95rem;
            color: #6B6B6B;
            position: relative; z-index: 1;
        }
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 3rem; /* More margin */
            z-index: 10;
            position: relative;
        }
        .dot {
            width: 16px; /* Larger dots */
            height: 16px;
            border-radius: 50%;
            background-color: #DEDEDE;
            margin: 0 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .dot.active {
            background-color: #FF6600;
            border-color: #FFF5EE;
            box-shadow: 0 0 0 5px rgba(255, 102, 0, 0.3); /* Stronger active glow */
        }

        /* Footer */
        .footer-cta-section {
            background-color: #F8F8F8;
            border-top: 1px solid #E0E0E0;
        }

        /* Responsive adjustments */
        @media (max-width: 767px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.25rem;
            }
            .section-padding {
                padding: 60px 0;
            }
            h2 {
                font-size: 2.2rem;
            }
            .section-description {
                font-size: 1rem;
            }

            .card-title {
                font-size: 1.4rem;
                margin-bottom: 0.75rem;
            }
            .card-description {
                font-size: 0.9rem;
            }
            .philosophy-card, .industry-card {
                padding: 1rem; /* Less padding */
            }
            .philosophy-card .svg-icon-wrapper {
                width: 80px;
                height: 80px;
                margin-bottom: 1rem;
            }
            
            /* Horizontal Scroll for Services */
            .services-horizontal-scroll-container {
                padding: 1rem 0.5rem;
            }
            .services-grid-wrapper {
                gap: 1rem;
            }
            .service-card {
                width: 280px;
                padding: 1rem;
            }
            .service-card .svg-icon {
                width: 70px;
                height: 70px;
                margin-right: 0.75rem;
            }
            .service-card .service-title {
                font-size: 1.3rem;
            }
            .service-card .service-description {
                font-size: 0.85rem;
            }

            /* Process Stitched Story Flow */
            .process-timeline-line { /* Main vertical line */
                left: 30px; /* Shift line more to the left */
            }
            .process-step-row {
                flex-direction: column; /* Stack vertically */
                align-items: flex-start; /* Align all content to the left */
                margin-bottom: 2.5rem; /* Reduced margin for mobile */
            }

            /* Reset order and justify for mobile */
            .process-step-row:nth-child(odd),
            .process-step-row:nth-child(even) {
                justify-content: flex-start;
            }
            .process-step-row:nth-child(odd) .process-node, /* Now just .process-node */
            .process-step-row:nth-child(even) .process-node { /* Now just .process-node */
                order: unset; /* Reset flex order */
                position: absolute; /* Position relative to step-row for fixed position on line */
                left: 30px; /* Align with the main timeline line */
                top: 0; /* Align with the top of the step-row */
                transform: translateX(-50%); /* Center on the line */
                margin: 0; /* Remove horizontal margins */
            }

            .process-step-box-flow {
                flex-basis: 100%; /* Full width */
                max-width: 100%;
                margin-left: 80px; /* Shift box right to make space for the icon node */
                margin-right: 0;
                padding: 1.25rem; /* Slightly less padding */
            }

            .process-icon-circle {
                width: 45px; /* Smaller icon circle on mobile */
                height: 45px;
                border: 4px solid #F8F8F8; /* Thinner border */
            }
            .process-icon-svg {
                width: 25px; /* Smaller SVG icon */
                height: 25px;
            }
            .process-connector-line {
                display: none; /* Hide horizontal connector on mobile */
            }
            
            /* Toolkit Hexagon Grid */
            .toolkit-grid-wrapper {
                grid-template-columns: repeat(3, minmax(80px, 1fr)); /* 3 columns for better spacing */
                gap: 0.75rem 0.5rem;
            }
            .tool-card {
                width: 80px;
                height: 69px;
                padding: 0.5rem;
            }
            .toolkit-grid-wrapper > div:nth-child(2n) {
                margin-top: 34.5px;
            }
            .tool-icon-svg {
                width: 40px;
                height: 40px;
                margin-bottom: 0.25rem;
            }
            .tool-label {
                font-size: 0.65rem;
            }
            .tool-details-panel h3 {
                font-size: 1.4rem;
            }
            .tool-details-panel p {
                font-size: 0.85rem;
            }
            
            /* Industry Card Responsive */
            .industry-svg-icon {
                width: 70px;
                height: 70px;
                margin-bottom: 1rem;
            }

            /* Testimonial Responsive */
            .testimonial-carousel-container {
                padding: 1.5rem 0.5rem;
            }
            .testimonial-item {
                padding: 1rem;
                margin: 0 0.5rem;
                transform: none; /* No skew on mobile */
            }
            .testimonial-item::before {
                font-size: 6rem;
                top: 5px;
            }
            .testimonial-text {
                font-size: 1rem;
                margin-bottom: 1rem;
            }
            .carousel-dots {
                margin-top: 1.5rem;
            }
            .dot {
                width: 12px;
                height: 12px;
                margin: 0 8px;
            }
        }