/* Our Team (post 401) consolidated styles.
 * Extracted from inline <style> blocks during Phase 1C.
 */

/* =================================================================
   Block 1 - extracted from post 401 (our-team)
   ================================================================= */
:root {
            /* Traxx IT Core Colors */
            --traxx-blue: #0d2f4f; 
            --traxx-yellow: #ffc400; 
            --traxx-dark: #0f172a; 
            --traxx-text: #475569;
            --traxx-bg: #ffffff;
            --traxx-card-bg: #f8f9fa;
            
            /* Accent / Syntax Colors */
            --traxx-cyan: #00d2ff;
            --traxx-blue-light: #0284c7;
            --syntax-gray: #64748b;
            --traxx-gradient: linear-gradient(90deg, var(--traxx-blue-light) 0%, var(--traxx-cyan) 100%);
            
            --font-main: 'Inter', system-ui, sans-serif;
            --font-code: 'Fira Code', monospace;
        }

        body {
            font-family: var(--font-main);
            line-height: 1.7;
            color: var(--traxx-text);
            margin: 0;
            background-color: var(--traxx-bg);
            -webkit-font-smoothing: antialiased;
        }
        
        body.modal-open { overflow: hidden; }

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

        h1, h2, h3, h4 {
            font-family: var(--font-main);
            font-weight: 800;
            color: var(--traxx-dark);
            margin-top: 0;
        }

        /* --- Code Aesthetic Tags --- */
        .code-tag {
            font-family: var(--font-code);
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 10px;
        }
        .ct-cyan { color: var(--traxx-cyan); }
        .ct-blue { color: var(--traxx-blue-light); }
        
        /* --- Banner Section --- */
        .banner {
            background-color: var(--traxx-blue);
            background-image: linear-gradient(rgba(13, 47, 79, 0.75), rgba(0, 0, 0, 0.6)), url('https://traxxit-f89d094ac30cfedd-endpoint.azureedge.net/blobtraxxit315cc0d68b/wp-content/uploads/Meet-the-Experts.jpeg');
            height: 450px;
            background-position: center;
            background-size: cover;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            border-bottom: 4px solid;
            border-image: var(--traxx-gradient) 1;
        }

        .banner h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 15px;
            color: #ffffff;
            letter-spacing: -1px;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
        }

        .banner p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            font-weight: 400;
            max-width: 750px;
            color: #e2e8f0;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
        }

        /* --- Intro Section --- */
        .intro {
            text-align: center;
            padding: 80px 20px 40px 20px;
        }

        .intro h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            letter-spacing: -0.5px;
            margin-bottom: 20px;
        }

        .intro p {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto;
            color: var(--traxx-text);
        }

        .traxx-divider {
            width: 60px;
            height: 4px;
            background: var(--traxx-gradient);
            margin: 0 auto 25px auto;
            border-radius: 2px;
        }
        
        /* --- Profiles Section (Data Objects) --- */
        .profiles-section {
            padding: 40px 0 80px 0;
        }

        .profiles-container {
            display: flex;
            gap: 40px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .profile-card {
            background: var(--traxx-card-bg);
            border: 1px solid rgba(0,0,0,0.05);
            border-left: 4px solid var(--traxx-blue);
            border-radius: 0 8px 8px 0;
            padding: 40px 35px;
            flex: 1;
            max-width: 500px;
            min-width: 320px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .profile-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
            border-left-color: var(--traxx-yellow);
            background: #ffffff;
        }

        .profile-card h3 {
            font-size: 2rem;
            margin-top: 0;
            margin-bottom: 5px;
            letter-spacing: -0.5px;
        }
        
        .profile-card .title {
            font-family: var(--font-code);
            font-size: 0.9rem;
            color: var(--syntax-gray);
            margin-top: 0;
            margin-bottom: 25px;
        }
        .profile-card .title span {
            color: var(--traxx-blue-light);
            font-weight: 600;
        }
        
        .profile-card p {
            flex-grow: 1;
            margin-bottom: 30px;
        }
        
        .read-more {
            color: var(--traxx-blue);
            font-family: var(--font-code);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            cursor: pointer;
            align-self: flex-start;
            padding: 8px 16px;
            background-color: rgba(13, 47, 79, 0.05);
            border: 1px solid rgba(13, 47, 79, 0.1);
            border-radius: 4px;
            transition: all 0.2s ease;
        }
        
        .read-more:hover {
            background-color: var(--traxx-blue);
            color: #ffffff;
        }

        /* --- Certification Array Section (Light Mode) --- */
        .certs-section {
            background-color: var(--traxx-card-bg);
            padding: 80px 20px;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        .certs-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .certs-section h2 {
            color: var(--traxx-dark);
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 15px;
            text-align: center;
        }
        
        .certs-section .subtitle {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 50px auto;
            color: var(--traxx-text);
            text-align: center;
        }

        /* The Light Theme IDE Window wrapper */
        .cert-ide-wrapper {
            background-color: #ffffff;
            border-radius: 8px;
            border: 1px solid rgba(0,0,0,0.08);
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }

        .cert-code-line {
            font-family: var(--font-code);
            font-size: 15px;
            color: var(--syntax-gray);
            margin-bottom: 20px;
        }

        .certs-grid {
            display: grid;
            /* Desktop: 5 columns */
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            justify-items: center;
            align-items: center;
            padding: 10px 0 20px 20px;
            border-left: 2px solid rgba(0,0,0,0.05);
            margin-left: 10px;
        }

        .cert-card {
            width: 100%;
            height: 90px;
            background-color: #ffffff;
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: 6px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px;
            box-sizing: border-box;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        /* CSS Pseudo Array Commas */
        .cert-card::after {
            content: ',';
            position: absolute;
            right: -15px;
            bottom: 5px;
            font-family: var(--font-code);
            color: rgba(0,0,0,0.2);
            font-size: 18px;
            font-weight: bold;
        }
        .cert-card:last-child::after { content: ''; }

        .cert-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(13, 47, 79, 0.08);
            border-color: var(--traxx-blue-light);
        }

        .cert-card img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
            mix-blend-mode: multiply; 
            filter: grayscale(100%) opacity(0.6);
            transform: scale(1);
            /* Specifically targeting only visually altering properties to prevent layout snapping bugs */
            transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
        }
        
        .cert-card:hover img {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.05);
        }

        /* --- Modal Styles (Terminal Popups) --- */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(11, 17, 32, 0.85);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
        }

        .modal-content {
            background-color: var(--traxx-bg);
            margin: auto;
            padding: 50px 40px;
            border-radius: 8px;
            width: 100%;
            max-width: 750px;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 25px 50px rgba(0,0,0,0.5);
            border-top: 5px solid var(--traxx-yellow);
        }
        
        .modal-content h3 {
             font-size: 2.2rem;
             margin-top: 0;
             margin-bottom: 5px;
             letter-spacing: -1px;
        }

        .modal-subtitle {
            font-family: var(--font-code);
            color: var(--traxx-blue-light);
            font-weight: 600;
            font-size: 14px;
            margin-top: 0;
            margin-bottom: 25px;
        }

        .close-button {
            color: #94a3b8;
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
            transition: color 0.2s ease;
        }

        .close-button:hover {
            color: var(--traxx-dark);
        }

        /* --- Responsive Design --- */
        @media (max-width: 900px) {
            .profiles-container { flex-direction: column; align-items: center; }
            .profile-card { max-width: 100%; }
            .certs-grid { grid-template-columns: repeat(3, 1fr); }
        }
        
        @media (max-width: 600px) {
            .cert-ide-wrapper { padding: 25px 15px; }
            
            /* Tight 3x3 Grid on Mobile */
            .certs-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
                padding: 15px 0 15px 15px;
            }
            .cert-card {
                height: 60px; 
                padding: 5px;
            }
            .cert-card::after { display: none; } 
            
            .modal-content { padding: 30px 20px; }
        }
