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

        :root {
            --primary-blue: #1e40af;
            --primary-blue-dark: #1e3a8a;
            --secondary-blue: #3b82f6;
            --accent-purple: #8b5cf6;
            --accent-teal: #06b6d4;
            --text-gray: #475569;
            --bg-light: #f8fafc;
            --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
            --bg-light: #f8fafc;
            --bg-light-blue: #e6f0fa;
            --bg-light-gray: #f1f1f1;
            --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            --gradient-dark: linear-gradient(135deg, #1f2937 0%, #4b5563 100%);
            --gradient-cta: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-light: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
            --text-dark: #1f2937;
            --text-light: #ffffff;
            --accent: #3b82f6;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 25%, #dbeafe 50%, #e0f2fe 75%, #f0f9ff 100%);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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


        .section {
            padding: 80px 0;
            position: relative;
        }

        .section--gradient {
            background: var(--gradient-hero);
            color: var(--text-light);
        }

        .section--light-blue {
            background: var(--bg-light-blue);
        }

        .section--white {
            background: var(--bg-light);
        }

        .section--gradient-dark {
            background: var(--gradient-dark);
            color: var(--text-light);
        }

        .section--gradient-cta {
            background: var(--gradient-cta);
            color: var(--text-light);
        }

        .section--gradient-light {
            background: var(--gradient-light);
            color: var(--primary-blue-dark);
        }


        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Banner */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-image: url('../../img/industries/hero.webp');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: scroll;
            color: white;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center;
            background-size: cover;
            opacity: 0.3;
        }
        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5); /* dark overlay, adjust opacity */
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 2rem;
            animation-delay: 0.3s;
        }

        .hero h1 {
            font-size: clamp(2rem, 3vw, 3rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            line-height: 1.2;
            -webkit-text-fill-color: white;
        }

        .hero p {
            font-size: clamp(1.125rem, 2vw, 1.25rem);
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .hero-cta:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        /* Sticky Navigation */
        .industry-sticky-nav {
            position: sticky;
            top: 80px;
            z-index: 999;
            background-color: #ffffff;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            /* border-bottom: 1px solid rgba(226, 232, 240, 0.8); */
            transition: background 0.3s ease;
            box-shadow: none;
        }
        .industry-sticky-nav .container {
            background-color: #ffffff;
        }

        .industry-sticky-nav.visible {
            transform: translateY(0);
        }

        .industry-sticky-nav.scrolled {
            background-color: #ffffff;
            box-shadow: var(--shadow-md);
        }

        .industry-nav-content {
            display: flex;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 2rem;
            padding: 1rem 0;
        }

        .industry-nav-link {
            color: var(--text-gray);
            font-weight: 500;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
        }

        .industry-nav-link.active {
            color: var(--primary-blue);
            background: rgba(59, 130, 246, 0.2);
            font-weight: 600;
        }
        
        .industry-nav-link:hover {
            color: var(--primary-blue);
            background: rgba(59, 130, 246, 0.1);
        }
        


        /* Section Styling */
        .section {
            padding: 5rem 0;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-blue), var(--accent-purple));
            border-radius: 2px;
        }

       

        /* Overview Section */
        .angled-overview-section {
        position: relative;
        width: 100%;
        min-height: 500px;
        background: url('../../img/industries/overview.webp') no-repeat center center;
        background-size: cover;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        
        }


        .angled-blue-glow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        clip-path: polygon(0 0, 75% 0, 62% 80%, 85% 100%, 0 100%);
        -webkit-clip-path: polygon(0 0, 75% 0, 62% 80%, 85% 100%, 0 100%);
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.523), rgba(79, 147, 241, 0.655));
        filter: blur(12px);
        z-index: 1;
        }


        .angled-white-overlay {
            position: relative;
            background: rgba(255, 255, 255, 0.75);
            clip-path: polygon(0 0, 73% 0, 62% 80%, 80% 100%, 0 100%); 
            -webkit-clip-path: polygon(0 0, 73% 0, 62% 80%, 80% 100%, 0 100%); 
            padding: 5rem 2rem;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            overflow: hidden;
            z-index: 2;
            backdrop-filter: blur(1px);
            -webkit-backdrop-filter: blur(1px);
        }

        .angled-content {
            margin-right: auto;
            margin-left: 2rem;
            max-width: 60%;
            z-index: 3;
        }

        .angled-content h2 {
        font-size: 3rem;
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        margin-bottom: 24px;
        line-height: 1.2;
        color: #1f1f1f;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }

        .bold {
        color: #000;
        }

        .highlight {
        color: #0066ff;
        }

        .angled-content p {
        font-size: 1.1rem;
        color: #2a2a2a;
        line-height: 1.85;
        text-align: justify;
        padding: 20px;
        font-family: 'Inter', sans-serif;
        }

        @media (min-width: 1441px) {

            .angled-overview-section {
                position: relative;
                width: 100%;
                min-height: 500px;
            }
            
            .angled-white-overlay {
                position: relative;
                background: rgba(255, 255, 255, 0.75);
                clip-path: polygon(0 0, 73% 0, 62% 80%, 80% 100%, 0 100%); 
                -webkit-clip-path: polygon(0 0, 73% 0, 62% 80%, 80% 100%, 0 100%); 
                padding: 8rem 2rem;
                display: flex;
                align-items: center;
                justify-content: flex-start;
                overflow: hidden;
                z-index: 2;
                backdrop-filter: blur(1px);
                -webkit-backdrop-filter: blur(1px);
            }
        }


        /* Industries Grid */
        .industries-section {
        padding: 60px 20px;
        text-align: center;
        }

        .industry-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        }

        .industry-card {
        position: relative;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        overflow: hidden;
        height: 350px;
        text-decoration: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        align-items: flex-end;
        opacity: 0.9;
        }

        .industry-card:hover {
        transform: scale(1.03);
        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
        }

        .industry-card .overlay {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        transition: background 0.3s;
        }

        .title-box {
        background: white;
        padding: 15px 15px;
        width: 100%;
        text-align: center;
        border-top: 2px solid rgba(30, 64, 175, 0.1);
        border-bottom: 2px solid rgba(30, 64, 175, 0.05);
        box-shadow: 0 4px 12px rgba(30, 64, 175, 0.05);
        border-radius: 0 0 12px 12px;
        }

        .industry-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: #111111;
        margin: 0;
        letter-spacing: 0.5px;
        text-shadow: 1px 1px 0 rgba(100, 116, 139, 0.1);
        position: relative;
        display: inline-block;
        }

        .industry-title::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        margin: 8px auto 0;
        border-radius: 2px;
        }

        /* How We Help */
        
        .help-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
        }

       .help-card {
        width: 100%;
        height: 320px;
        border-radius: 20px;
        perspective: 1000px;
        -webkit-perspective: 1000px;
        }

        .card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        -webkit-transform-style: preserve-3d; 
        transition: transform 0.8s cubic-bezier(0.45, 0, 0.2, 1);
        will-change: transform;
        }

        .help-card:hover .card-inner {
        transform: rotateY(180deg);
        }

        .card-front,
        .card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transform: translate3d(0, 0, 0);
        border-radius: 1rem;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        padding: 1rem;
        text-align: center;
        max-width: 90%;
        }

        /* FRONT: image with overlay */
        .card-front {
        background-size: cover;
        background-position: center;
        padding: 0;
        z-index: 2;
        }

        .card-front .overlay {
        background: rgba(0, 0, 0, 0.5);
        border-radius: 20px;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        }

        .card-front .overlay h3 {
        color: #ffffff;
        font-size: 1.5rem;
        font-weight: 600;
        padding: 1rem;
        }

        /* BACK: text content */
        .card-back {
        transform: rotateY(180deg);
        background: #ffffff;
        padding: 2rem;
        z-index: 1;
        }

        .card-back h3 {
        font-size: 1.375rem;
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 0.5rem;
        }

        .card-back p {
        color: #64748b;
        line-height: 1.6;
        font-size: 0.95rem;
        }

        .help-card:hover .card-front {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        }

        
        .flip-icon {
            position: absolute;
            bottom: 5rem;
            right: 0rem;
            width: 24px;
            height: 24px;
            opacity: 0.7;
            margin-top: 0.5rem;
            opacity: 0.6;
            transition: transform 0.3s ease;
            display: none;
        }
        /* Case Study */
        .case-study-section {
            background-color: #f9f9f9;
            position: relative;
            padding: 4rem 1rem;
            overflow: hidden;
        }

        .case-study-section::before {
        content: "";
        position: absolute;
        top: 60%;
        left: 0;
        width: 100%;
        height: 300px;
        background-color: #d1ecf1; /* soft blue band */
        transform: translateY(-50%);
        z-index: 0;
        border-radius: 100px;
        }

        .case-study-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        }

        .case-study-title {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 3rem;
        }

        .case-study-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 2rem;
        justify-items: center;
        }

        .case-study-card {
        background-color: #ffffff;
        border-radius: 2rem;
        padding: 1.5rem;
        width: 100%;
        max-width: 400px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 380px; /* Fixed height to match across all cards */
        position: relative;
        }

        .case-study-card:hover {
        transform: translateY(-6px);
        }

        .case-study-img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 1rem;
        }

        .case-study-card h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: #333333;
        margin-bottom: 0.5rem;
        }

        .case-study-card p {
        flex-grow: 1;
        font-size: 0.9rem;
        color: #666666;
        }

        .case-study-card a {
            
        margin-top:0.5rem;
        font-size: 1rem;
        font-weight: 600;
        color: #0056b3; /* dark blue for better visibility */
        text-transform: uppercase;
        letter-spacing: 0.07em;
        text-decoration: none; /* No underline by default */
        }

        .case-study-card a:hover {
        text-decoration: underline 4px solid var(--accent-teal); /* Underline only on hover */
        }



        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="80" fill="url(%23b)"/><circle cx="900" cy="200" r="120" fill="url(%23b)"/><circle cx="300" cy="800" r="100" fill="url(%23b)"/></svg>') no-repeat center;
            background-size: cover;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.125rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        /* Mobile Responsiveness */

        
        @media (max-width: 1024px) {

            .help-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 2rem;
                margin-top: 2rem;
                margin-left: 2rem;
            }


            .help-card {
                height: auto;
                display: flex;
                flex-direction: column;
            }

            .card-inner {
                display: flex;
                flex-direction: column;
                height: 100%;
                width: 100%;
            }

            .card-front,
            .card-back {
                display: none;
                height: auto;
                min-height: 240px;
                border-radius: 16px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
                box-sizing: border-box;
                position: relative;
                backface-visibility: visible;
                -webkit-backface-visibility: visible;
                transform: none;
            }

            .help-card .card-front {
                display: block;
            }

            .help-card.is-open .card-front {
                display: none;
            }

            .flip-icon {
                display: block;
            }

            .help-card.is-open .card-back {
                display: flex !important;
                flex-direction: column;
                justify-content: center;
                align-items: center;    
            }

            .help-card:hover .card-inner {
                transform: none !important;
            }

            
        }
        

        @media (max-width: 480px) {

            .industry-card {
                height: 220px;
            }

            .hero-content {
                padding: 1.5rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-cta {
                font-size: 0.9rem;
                padding: 0.75rem 1.5rem;
            }

            .help-card {
                height: auto;
            }

            .card-front, .card-back {
                padding: 1.5rem;
            }
            .section {
                padding: 2.5rem 1rem;
            }
            .angled-overview-section {
                min-height: 360px;
                background-size: cover;
                background-position: top;
            }

            .angled-white-overlay {
                padding: 2rem 1rem;
                background: rgba(255, 255, 255, 0.75);
                backdrop-filter: blur(2px);
            }
            
            .angled-content {
                max-width: 95%;
                font-size: 0.95rem;
            }

            .angled-content h2 {
                font-size: 1.5rem;
                margin-bottom: 14px;
                line-height: 1.3;
            }

            .angled-content p {
                font-size: 0.9rem;
                padding: 12px;
                line-height: 1.6;
            }

            .help-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 1rem 1rem;
            }

            .help-card {
                height: auto;
            }

            .card-inner {
                transform: none;
                transition: none;
                transform: none !important;
            }

            .help-card:hover .card-inner {
                transform: none !important;
            }

            .card-front,
            .card-back {
                position: relative;
                height: auto;
                transform: none;
                backface-visibility: visible;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
                border-radius: 16px;
            }

            .card-front {
                background-size: cover;
                background-position: center;
                padding: 0;
            }

            .card-front .overlay {
                min-height: 180px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                border-radius: 16px;
                background: rgba(0, 0, 0, 0.5);
            }

            .card-front .overlay h3 {
                font-size: 1.2rem;
                padding: 1rem;
                color: white;
            }

            .card-back {
                display: none;
            }

            .case-study-section {
                padding: 2.5rem 1rem;
            }

            .case-study-img {
                width: 100px;
                height: 100px;
            }

            .case-study-card {
                padding: 1rem;
            }

            .case-study-card h3 {
                font-size: 0.95rem;
            }

            .case-study-card p {
                font-size: 0.85rem;
            }

            .case-study-card a {
                font-size: 0.8rem;
            }

        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .nav-content {
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .industry-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .section {
                padding: 3rem 0;
            }

            .industry-sticky-nav {
                top: 70px;

            }
            .industry-nav-content {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem;
                padding: 0.75rem;
            }

            .industry-nav-link {
                padding: 0.4rem 0.75rem;
                font-size: 0.9rem;
            }

            .angled-overview-section {
                min-height: 400px;
                background-position: center top;
                background-size: cover;
            }
                    
            /* Remove angled shape on mobile */
            .angled-white-overlay {
                padding: 3rem 1.5rem;
                margin: 1rem auto;
                background: rgba(255, 255, 255, 0.75);
                backdrop-filter: blur(2px);
                clip-path: none !important;
                max-width: 90%;
                border-radius: 1.5rem;
            }
            
            .angled-content {
                max-width: 95%;
                font-size: 0.95rem;
            }
            
            .angled-blue-glow {
                display: none;
            }

            /* Content inside white box */
            .angled-content h2 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .angled-content p {
                font-size: 1rem;
                line-height: 1.6;
            }
            .case-study-section {
                padding: 3rem 1rem;
            }

            .case-study-title,
            .section-title {
                font-size: 1.75rem;
                margin-bottom: 2rem;
                text-align: center;
            }

            .case-study-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0;
                max-width: 100%;
                margin: 0 auto;
            }

            .case-study-card {
                max-width: 100%;
                width: 100%;
                padding: 1.5rem;
                height: auto;
                text-align: center;
                border-radius: 1.5rem;
                box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
            }

            .case-study-img {
                width: 100px;
                height: 100px;
                margin: 0 auto 1rem;
                border-radius: 50%;
                object-fit: cover;
            }

            .case-study-card h3 {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
                color: #111827;
            }

            .case-study-card p {
                font-size: 0.95rem;
                color: #475569;
                margin-bottom: 1rem;
            }

            .case-study-card a {
                display: inline-block;
                font-size: 0.85rem;
                font-weight: 600;
                color: var(--accent);
                letter-spacing: 0.05em;
                text-transform: uppercase;
                text-decoration: none;
                border-bottom: 2px solid transparent;
                transition: border-color 0.2s ease;
            }

            .case-study-card a:hover {
                border-color: var(--accent-teal);
            }

            .case-study-section::before {
                display: none;
            }
            .help-card {
                height: auto;
                cursor: pointer;
                -webkit-tap-highlight-color: transparent;
            }

            .card-inner {
                transform: none;
                transition: none;
            }

            .card-front,
            .card-back {
                position: relative;
                height: auto;
                transform: none;
                backface-visibility: visible;
                display: none;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
                border-radius: 16px;
            }
            .help-card .card-front {
                display: block;
            }

            .help-card.is-open .card-front {
                display: none;
            }

            .help-card.is-open .card-back {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

            .flip-icon {
                display: block;
            }


        }

        /* Loading Animation */
        .loading {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }

        /* Scroll animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        @media (prefers-reduced-motion: reduce) {
            .animate-fadeInUp,
            .scroll-reveal,
            .help-card:hover .card-inner {
                animation: none;
                transform: none;
                transition: none;
            }
        }