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

        :root {
            --navy-suit: #2C4057;
            --navy-dark: #1a2633;
            --baby-blue: #6EC1E4;
            --baby-blue-dark: #5BA8CC;
            --sky-blue: #87CEEB;
            --cyan-api: #00FFC6;
            --tulane-green: #006747;
            --tulane-blue: #418FDE;
            --kelley-green: #43B02A;
            --white: #FFFFFF;
            --off-white: #F8FAFB;
            --light-gray: #EDF2F4;
            --text-primary: #1a2633;
            --text-secondary: #4a5568;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--white);
            scroll-behavior: smooth;
        }

        /* Scroll reveal animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

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

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 25px;
        }

        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--light-gray);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(26, 38, 51, 0.05);
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 12px rgba(26, 38, 51, 0.1);
        }

        /* Scroll progress indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--baby-blue) 0%, var(--cyan-api) 100%);
            z-index: 101;
            transition: width 0.1s ease-out;
        }

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--navy-suit);
            color: var(--white);
            border: none;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(26, 38, 51, 0.2);
            z-index: 99;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--baby-blue);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(110, 193, 228, 0.3);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 18px;
            font-weight: 700;
            color: var(--navy-suit);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-accent {
            width: 8px;
            height: 8px;
            background: var(--baby-blue);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

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

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

        @keyframes countUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

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

        /* Typing cursor effect */
        .typing-cursor::after {
            content: '|';
            margin-left: 5px;
            animation: blink 1s infinite;
            color: var(--kelley-green);
        }

        /* Number counter animation */
        .metric-value {
            font-size: 40px;
            font-weight: 700;
             color: var(--tulane-green);
            margin-bottom: 8px;
            transition: all 0.3s ease;
        }

        .metric-value.counting {
            animation: countUp 0.8s ease-out;
        }

        /* Gradient text effect */
        .gradient-text {
            background: linear-gradient(135deg, var(--navy-suit) 0%, var(--baby-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Glass morphism effect */
        .glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Magnetic hover effect for buttons */
        .magnetic {
            transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        }

        /* Skeleton loading state */
        @keyframes skeleton {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        .skeleton {
            background: linear-gradient(
                90deg,
                var(--light-gray) 25%,
                var(--off-white) 50%,
                var(--light-gray) 75%
            );
            background-size: 200% 100%;
            animation: skeleton 1.5s ease-in-out infinite;
        }

        .header-cta {
            display: flex;
            gap: 15px;
        }

        .btn-small {
            padding: 8px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
        }

        .btn-small.primary {
            background: var(--navy-suit);
            color: var(--white);
        }

        .btn-small.primary:hover {
            background: var(--navy-dark);
            transform: translateY(-1px);
        }

        .btn-small.secondary {
            background: transparent;
            color: var(--navy-suit);
            border: 2px solid var(--navy-suit);
        }

        .btn-small.secondary:hover {
            background: var(--navy-suit);
            color: var(--white);
        }

        /* Hero Section */
        .hero {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(135deg, var(--navy-suit) 0%, #1a4d6e 25%, var(--navy-dark) 50%, #2C4057 75%, var(--navy-suit) 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

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

        /* Particle canvas */
        #particle-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        /* 3D Tilt Effect for Cards */
        .tilt-card {
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform-style: preserve-3d;
            will-change: transform;
        }

        /* Hero background character image */
        .hero-bg-image {
            position: absolute;
            bottom: 0;
            right: 10%;
            height: 85%;
            opacity: 0.12;
            pointer-events: none;
            z-index: 0;
            transition: transform 0.1s ease-out;
        }

        .hero-bg-image img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            right: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--baby-blue) 0%, transparent 70%);
            transform: translateY(-50%);
            opacity: 0.08;
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -10%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--cyan-api) 0%, transparent 70%);
            opacity: 0.06;
            animation: float 8s ease-in-out infinite;
            animation-delay: 1s;
        }

        .hero-content {
            animation: fadeInUp 0.8s ease-out;
        }

        .hero h1 {
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-tagline {
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero-quote-attribution {
            font-size: 14px;
            color: var(--sky-blue);
            margin-top: 10px;
            margin-bottom: 40px;
            opacity: 0.9;
            animation: fadeInUp 0.8s ease-out 0.5s both;
        }

        .hero-quote-attribution em {
            font-style: italic;
        }

        .hero-cta {
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .hero-label {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--baby-blue);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--white);
        }

        .hero-tagline {
            font-size: 32px;
            color: var(--white);
            max-width: 700px;
            margin: 0 auto 15px;
            font-weight: 600;
            font-style: italic;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Podcast embed in hero */
        .podcast-figure {
            max-width: 660px;
            margin: 24px auto 0;
            padding: 16px;
            background: rgba(255,255,255,0.03);
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
        }

        .podcast-iframe {
            display: block;
            width: 100%;
            height: 175px;
            border-radius: 10px;
            border: none;
        }

        .podcast-figure figcaption {
            margin-top: 8px;
            font-size: 13px;
            color: rgba(255,255,255,0.9);
        }

        .visually-hidden {
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .btn {
            padding: 14px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 15px;
            display: inline-block;
        }

        .btn-primary {
            background: var(--baby-blue);
            color: var(--navy-dark);
        }

        .btn-primary:hover {
            background: var(--baby-blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(110, 193, 228, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--navy-suit);
        }

        /* Sections */
        .section {
            padding: 70px 0;
            position: relative;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(110, 193, 228, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(110, 193, 228, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .section:hover::before {
            opacity: 1;
        }

        .section.gray {
            background: var(--off-white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .section-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            animation: scaleIn 0.6s ease-out;
        }

        .section-icon img:hover {
            transform: scale(1.1) rotate(-5deg);
            filter: drop-shadow(0 8px 16px rgba(110, 193, 228, 0.3));
        }

        .section-header {
            animation: fadeInUp 0.8s ease-out;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--navy-suit) 0%, var(--baby-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            color: var(--text-secondary);
            font-size: 16px;
            max-width: 650px;
            margin: 0 auto;
        }

        /* About me content image */
        .about-me-content img {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .about-me .section-subtitle span {
            display: inline-block;
            margin-right: 8px;
            font-weight: 500;
            font-size: 1rem;
        }

        .about-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            margin-top: 2rem;
        }

        .about-text {
            flex: 1 1 400px;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .about-text p {
            margin-bottom: 1rem;
        }

        .about-text .cta {
            font-weight: bold;
            color: #0078D4;
            margin-top: 1.5rem;
        }

        .about-visual {
            flex: 1 1 300px;
            text-align: center;
        }

        .about-visual img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);         
        }
        /* Value Props */
        .value-props {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            justify-content: center;   
        }

        .value-card {
            background: var(--white);
            border: 2px solid var(--light-gray);
            padding: 35px;
            border-radius: 12px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.6s ease-out both;
        }

        .value-card:nth-child(1) { animation-delay: 0.1s; }
        .value-card:nth-child(2) { animation-delay: 0.2s; }
        .value-card:nth-child(3) { animation-delay: 0.3s; }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--baby-blue);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .value-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(110, 193, 228, 0.1),
                transparent
            );
            transition: left 0.5s;
        }

        .value-card:hover::after {
            left: 100%;
        }

        .value-card:hover::before {
            transform: scaleX(1);
        }

        .value-card:hover {
            border-color: var(--baby-blue);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(110, 193, 228, 0.15);
        }

        .value-icon {
            width: 110px;
            height: 110px;
            margin: 0 auto 20px;
            position: relative;
        }

        .value-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .value-card:hover .value-icon img {
            transform: scale(1.1) rotate(5deg);
            filter: drop-shadow(0 8px 16px rgba(110, 193, 228, 0.3));
        }

        .value-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--navy-suit);
            font-weight: 700;
        }

        .value-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

         /* Metrics Grid */
         .metrics-grid {
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
             gap: 25px;
             max-width: 1000px;
             margin: 0 auto;
         }
 
         /* Metric Card */
         .metric-card {
             position: relative;
             overflow: hidden;
 
             background: var(--white);
             padding: 30px;
             border-radius: 12px;
             border: 2px solid var(--light-gray);
             border-top: 4px solid var(--baby-blue);
             text-align: center;
 
             transition: all 0.3s;
             animation: scaleIn 0.5s ease-out both;
 
             /* progress fill variable */
             --fill: 0%;
         }
 
         /* Progress Fill Layer */
         .metric-card::before {
             content: "";
             position: absolute;
             inset: 0;
 
             background: linear-gradient(180deg,
                     var(--baby-blue),
                     var(--cyan-api));
 
             opacity: 0.12;
             transform: translateY(calc(100% - var(--fill)));
             transition: transform 0.25s ease-out;
 
             z-index: 0;
         }
 
         /* Ensure content stays above fill */
         .metric-card>* {
             position: relative;
             z-index: 1;
         }
 
         /* Staggered entrance */
         .metric-card:nth-child(1) {
             animation-delay: 0.1s;
         }
 
         .metric-card:nth-child(2) {
             animation-delay: 0.2s;
         }
 
         .metric-card:nth-child(3) {
             animation-delay: 0.3s;
         }
 
         .metric-card:nth-child(4) {
             animation-delay: 0.4s;
         }
 
         .metric-card:nth-child(5) {
             animation-delay: 0.5s;
         }
 
         .metric-card:nth-child(6) {
             animation-delay: 0.6s;
         }
 
         /* Hover Effects */
         .metric-card:hover {
             transform: translateY(-8px) scale(1.02);
             box-shadow: 0 12px 30px rgba(26, 38, 51, 0.08);
             border-top-color: var(--cyan-api);
         }
 
         .metric-card:hover::before {
             opacity: 0.18;
         }
 
         .metric-card:hover .metric-value {
             color: var(--baby-blue);
             transform: scale(1.1);
         }
 
         /* Metric Value */
         .metric-value {
             font-size: 40px;
             font-weight: 700;
             color: var(--navy-suit);
             margin-bottom: 8px;
             transition: all 0.3s ease;
         }
 
         /* Metric Label */
         .metric-label {
             font-size: 14px;
             color: var(--text-secondary);
             font-weight: 600;
         }
        /* Case Studies */
        .case-studies {
            max-width: 900px;
            margin: 0 auto;
        }

        .case-study {
            background: var(--white);
            border: 2px solid var(--light-gray);
            border-left: 6px solid var(--navy-suit);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 30px;
            transition: all 0.4s ease;
            position: relative;
            animation: fadeInUp 0.8s ease-out both;
            overflow: hidden;
        }

        .case-study::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(110, 193, 228, 0.15) 0%, transparent 70%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .case-study:hover::after {
            opacity: 1;
        }

        .case-study:nth-child(1) { animation-delay: 0.2s; }
        .case-study:nth-child(2) { animation-delay: 0.4s; }

        .case-study:hover {
            border-left-color: var(--baby-blue);
            box-shadow: 0 15px 40px rgba(26, 38, 51, 0.15);
            transform: translateX(5px);
        }

        .case-icon {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 90px;
            height: 90px;
            opacity: 0.9;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .case-study:hover .case-icon {
            transform: scale(1.15) rotate(-5deg);
            opacity: 1;
        }

        .case-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .case-tag {
            display: inline-block;
            background: var(--light-gray);
            color: var(--navy-suit);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .case-study h3 {
            font-size: 26px;
            color: var(--navy-suit);
            margin-bottom: 20px;
            font-weight: 700;
            max-width: 75%;
        }

        .case-details {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 30px;
            margin-top: 25px;
        }

        .case-detail h4 {
            font-size: 12px;
            text-transform: uppercase;
            color: var(--navy-suit);
            margin-bottom: 8px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .case-detail p {
            color: var(--text-secondary);
            line-height: 1.5;
            font-size: 14px;
        }

        .case-outcome {
            background: linear-gradient(135deg, var(--baby-blue) 0%, var(--baby-blue-dark) 100%);
            background-size: 200% 200%;
            color: var(--navy-dark);
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
            font-weight: 500;
            transition: all 0.4s ease;
            animation: fadeInUp 0.6s ease-out 0.8s both;
        }

        .case-study:hover .case-outcome {
            background-position: right center;
            transform: scale(1.02);
            box-shadow: 0 4px 12px rgba(110, 193, 228, 0.3);
        }

        .case-outcome strong {
            font-weight: 700;
        }

        /* Contact Section */
        .contact-section {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-avatar {
            width: 140px;
            height: 140px;
            margin: 0 auto 30px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid var(--baby-blue);
            box-shadow: 0 8px 20px rgba(110, 193, 228, 0.2);
            transition: all 0.4s ease;
            animation: scaleIn 0.6s ease-out;
            position: relative;
        }

        .contact-avatar::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            padding: 4px;
            background: linear-gradient(45deg, var(--baby-blue), var(--cyan-api), var(--baby-blue));
            background-size: 300% 300%;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            animation: shimmer 3s linear infinite;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .contact-avatar:hover::before {
            opacity: 1;
        }

        .contact-avatar:hover {
            transform: scale(1.08);
            box-shadow: 0 12px 30px rgba(110, 193, 228, 0.4);
        }

        .contact-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .contact-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 35px;
            flex-wrap: wrap;
        }

        .contact-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            background: var(--white);
            border: 2px solid var(--navy-suit);
            border-radius: 8px;
            text-decoration: none;
            color: var(--navy-suit);
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--navy-suit);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .contact-link:hover::before {
            left: 0;
        }

        .contact-link:hover {
            color: var(--white);
            border-color: var(--navy-suit);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(26, 38, 51, 0.2);
        }

        .contact-links > * {
            animation: fadeInUp 0.5s ease-out both;
        }

        .contact-links > *:nth-child(1) { animation-delay: 0.1s; }
        .contact-links > *:nth-child(2) { animation-delay: 0.2s; }
        .contact-links > *:nth-child(3) { animation-delay: 0.3s; }

        .contact-icon {
            font-size: 20px;
        }

        /* Footer */
        footer {
            background: var(--navy-suit);
            color: var(--white);
            padding: 30px 0;
            text-align: center;
            margin-top: 80px;
        }

        footer p {
            opacity: 0.9;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

            .hero-tagline {
                font-size: 18px;
            }

            .value-props {
                grid-template-columns: 1fr;
            }

            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .case-details {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .case-icon {
                position: static;
                margin: 0 auto 20px;
            }

            .case-study h3 {
                max-width: 100%;
            }

            .header-cta .btn-small.secondary {
                display: none;
            }

            .section {
                padding: 50px 0;
            }

            .section-icon {
                width: 80px;
                height: 80px;
            }

            .value-icon {
                width: 90px;
                height: 90px;
            }
        }

        @media (max-width: 480px) {
            .metrics-grid {
                grid-template-columns: 1fr;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }
        }
/* ============================================
   INFINITE TECH STACK MARQUEE
   ============================================ */

.tech-stack-section {
    background: linear-gradient(135deg, var(--navy-suit) 0%, var(--navy-dark) 100%);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--baby-blue), transparent);
}

.tech-stack-header {
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
}

.tech-stack-header h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--baby-blue);
    margin-bottom: 8px;
}

.tech-stack-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Marquee Container */
.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    user-select: none;
}

.marquee-content {
    display: flex;
    animation: scroll 5s linear infinite;
    will-change: transform;
}

.marquee-content:hover {
    animation-play-state: paused;
}

/* Logo Items */
.tech-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 100px;
    margin: 0 30px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(110, 193, 228, 0.1), transparent);
    transition: left 0.5s;
}

.tech-logo:hover::before {
    left: 100%;
}

.tech-logo:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--baby-blue);
    transform: translateY(-5px);
}

/* Logo Text Styling */
.tech-logo-text {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

/* Brand Colors for Each Tech */
.logo-salesforce { color: #00A1E0; }
.logo-hubspot { color: #FF7A59; }
.logo-apollo { color: #6C5CE7; }
.logo-linkedin { color: #0A66C2; }
.logo-zoho { color: #E42527; }
.logo-gcp { color: #4285F4; }
.logo-aws { color: #FF9900; }
.logo-azure { color: #0089D6; }
.logo-looker { color: #4285F4; }
.logo-tableau { color: #E97627; }
.logo-snowflake { color: #29B5E8; }
.logo-python { color: #3776AB; }

/* Logo Image Support (when using actual logos) */
.tech-logo img {
    max-width: 140px;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.tech-logo:hover img {
    opacity: 1;
    filter: brightness(1) invert(0);
}

/* Keyframe Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Fade edges for smooth appearance */
.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--navy-suit), transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--navy-dark), transparent);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .tech-logo {
        min-width: 150px;
        height: 80px;
        margin: 0 15px;
        padding: 15px 20px;
    }
    
    .tech-logo-text {
        font-size: 16px;
    }
    
    .marquee-content {
        animation-duration: 30s;
    }
}

@media (max-width: 480px) {
    .tech-stack-section {
        padding: 40px 0;
    }
    
    .tech-logo {
        min-width: 120px;
        height: 70px;
        margin: 0 10px;
        padding: 12px 16px;
    }
    
    .tech-logo-text {
        font-size: 14px;
    }
    
    .marquee-content {
        animation-duration: 25s;
    }
}

/* Tech Logo Image Styling */
.tech-logo-img {
    max-width: 160px;
    max-height: 45px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.tech-logo:hover .tech-logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
