    /* CSS Reset for full screen display */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1B365D;
            background: #FFFFFF;
        }

        .container {
            max-width: none;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Full width container for sections that should have no padding */
        .full-width-container {
            max-width: none;
            margin: 0 auto;
            padding: 0;
        }

        /* Navigation Bar Styles */
        nav {
            background: linear-gradient(135deg, #1B365D 0%, #2A4A7A 100%);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
            height: 100%;
        }

        .nav-logo:hover {
            opacity: 0.9;
        }

        .nav-logo-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2em;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1em;
            padding: 10px 15px;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: block;
        }

        .nav-link:hover {
            background: rgba(255,255,255,0.15);
        }

        /* Dropdown Styles */
        .nav-dropdown {
            position: relative;
        }

        .dropdown-toggle::after {
            content: ' ▼';
            font-size: 0.7em;
            margin-left: 5px;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            margin-top: 10px;
            list-style: none;
            padding: 10px 0;
        }

        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            padding: 0;
        }

        .dropdown-menu a {
            color: #1B365D;
            text-decoration: none;
            padding: 12px 20px;
            display: block;
            transition: background 0.3s ease;
        }

        .dropdown-menu a:hover {
            background: #F8F9FA;
        }

        .dropdown-label {
            padding: 6px 20px 4px;
            font-size: 0.72em;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #999;
        }

        .dropdown-divider {
            height: 1px;
            background: #EDEDED;
            margin: 6px 0;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8em;
            cursor: pointer;
            padding: 5px;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #1B365D 0%, #2A4A7A 100%);
                flex-direction: column;
                gap: 0;
                padding: 20px 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                max-height: 600px;
            }

            .nav-item {
                padding: 0 40px;
            }

            .nav-link {
                padding: 15px 0;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: rgba(255,255,255,0.1);
                margin: 10px 0;
                display: none;
            }

            .nav-dropdown.active .dropdown-menu {
                display: block;
            }

            .dropdown-menu a {
                color: white;
                padding: 10px 20px;
            }

            .dropdown-menu a:hover {
                background: rgba(255,255,255,0.1);
            }
        }

        /* Add padding to body to account for fixed nav */
        body {
            padding-top: 80px;
        }

        /* Laptop-scale tightening: shrink nav spacing before the mobile
           breakpoint kicks in, so 100% zoom on a standard laptop doesn't
           crowd or wrap the menu */
        @media (max-width: 1300px) and (min-width: 769px) {
            .nav-container {
                padding: 0 10px;
            }

            .nav-menu {
                gap: 2px;
                flex-wrap: nowrap;
            }

            .nav-link {
                padding: 8px 8px;
                font-size: 0.85em;
                white-space: nowrap;
            }

            .nav-logo img {
                height: 46px !important;
                margin-top: 11px !important;
            }
        }

        /* ============================================
           FOIA Data Explorer — premiere feature section
        ============================================ */
        .data-explorer-feature {
            background: linear-gradient(135deg, #1B365D 0%, #2A4A7A 100%);
            padding: 56px 0;
        }

        .def-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .def-eyebrow {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            color: #FFFFFF;
            font-size: 0.78em;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            padding: 5px 14px;
            border-radius: 999px;
            margin-bottom: 14px;
        }

        .def-copy h2 {
            color: #FFFFFF;
            font-size: 2em;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .def-copy p {
            color: rgba(255,255,255,0.88);
            font-size: 1.05em;
            line-height: 1.7;
            margin-bottom: 24px;
            max-width: 520px;
        }

        .def-cta {
            display: inline-block;
            background: #FFFFFF;
            color: #1B365D;
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05em;
            transition: all 0.3s ease;
            margin-bottom: 28px;
        }

        .def-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        }

        .def-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .def-stat {
            flex: 1 1 150px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            padding: 16px 18px;
        }

        .def-stat-value {
            color: #FFFFFF;
            font-size: 1.5em;
            font-weight: 700;
            line-height: 1.2;
        }

        .def-stat-label {
            color: rgba(255,255,255,0.75);
            font-size: 0.82em;
            margin-top: 4px;
        }

        .def-chart-panel {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 14px;
            padding: 20px 22px;
        }

        .def-chart-label {
            color: rgba(255,255,255,0.8);
            font-size: 0.85em;
            font-weight: 600;
            margin-bottom: 12px;
        }

        /* Power BI capability demo callout */
        .powerbi-demo-callout {
            background: #F8F9FA;
            padding: 30px 0;
        }

        .pbi-callout-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            background: #FFFFFF;
            border: 1px solid #E8E8E8;
            border-radius: 12px;
            padding: 22px 28px;
            box-shadow: 0 2px 10px rgba(27,54,93,0.06);
            flex-wrap: wrap;
        }

        .pbi-callout-text h3 {
            color: #1B365D;
            font-size: 1.15em;
            margin-bottom: 4px;
        }

        .pbi-callout-text p {
            color: #666;
            font-size: 0.92em;
        }

        .pbi-callout-btn {
            flex-shrink: 0;
            background: #1B365D;
            color: #FFFFFF;
            padding: 12px 22px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95em;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .pbi-callout-btn:hover {
            background: #0F2A4A;
        }

        @media (max-width: 768px) {
            .def-grid { grid-template-columns: 1fr; }
            .def-copy p { max-width: none; }
            .pbi-callout-card { flex-direction: column; text-align: center; }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1B365D 0%, #2A4A7A 100%);
            color: #FFFFFF;
            padding: 50px 0;
            text-align: center;
            position: relative;
            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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            background-repeat: repeat;
            background-position: 0 0;
            opacity: 0.3;
        }

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

        .hero h1 {
            font-size: 3em;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .hero h2 {
            font-size: 1.9rem;
            margin-bottom: 1rem;
            font-weight: 500;
            opacity: 0;
            animation: fadeInUp 1s ease 0.2s forwards;
        }

        .hero p {
            font-size: 1.05em;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        /* Power BI Section */
        .powerbi-section {
            padding: 80px 0;
            background: #F8F9FA;
            text-align: center;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.2em;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1B365D;
        }

        .section-title p {
            font-size: 1.1em;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .powerbi-container {
            max-width: 1400px;
            margin: 40px auto 0;
            padding: 0;
        }

        .powerbi-container iframe {
            display: block;
            margin: 0 auto;
            width: 100%;
            max-width: 980px;
            border: none;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(27, 54, 93, 0.15);
        }

        .powerbi-placeholder {
            border: 2px dashed #E8E8E8;
            border-radius: 12px;
            padding: 40px;
            width: 100%;
        }

        .powerbi-placeholder h3 {
            font-size: 1.5em;
            color: #1B365D;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .powerbi-placeholder p {
            color: #666;
            font-size: 1.1em;
        }

        /* FOIA Agency Rankings Section */
        .rankings-section {
            padding: 80px 0;
            background: #FFFFFF;
        }

        .methodology-text {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 40px;
            text-align: center;
        }

        .methodology-text p {
            color: #666;
            font-size: 1em;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .methodology-text h3 {
            color: #1B365D;
            font-size: 1.4em;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        /* Methodology Accordion Styles */
        .methodology-overview {
            background: #F8F9FA;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 30px;
            text-align: center;
        }

        .methodology-overview h4 {
            color: #1B365D;
            font-size: 1.3em;
            margin-bottom: 20px;
        }

        .methodology-table {
            width: 100%;
            max-width: 800px;
            margin: 20px auto;
            border-collapse: collapse;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(27, 54, 93, 0.1);
        }

        .methodology-table th {
            background: linear-gradient(135deg, #1B365D, #2A4A7A);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }

        .methodology-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #E8E8E8;
            color: #666;
        }

        .methodology-table tr:last-child td {
            border-bottom: none;
            font-weight: 600;
            background: #F8F9FA;
            color: #1B365D;
        }

        .methodology-table tbody tr {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .methodology-table tbody tr:hover {
            background: #F8F9FA;
        }

        .methodology-table tbody tr.clickable-row {
            position: relative;
        }

        .methodology-table tbody tr.clickable-row::after {
            content: '▼';
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.9em;
            color: #1B365D;
            transition: transform 0.3s ease;
        }

        .methodology-table tbody tr.clickable-row.active::after {
            transform: translateY(-50%) rotate(180deg);
        }

        /* Detail rows that expand from table */
        .table-detail-row {
            display: none;
            background: white;
        }

        .table-detail-row.active {
            display: table-row;
        }

        .table-detail-cell {
            padding: 30px 25px;
            border-bottom: 2px solid #1B365D;
            text-align: left;
            color: #666;
            line-height: 1.7;
        }

        .table-detail-cell h5 {
            color: #1B365D;
            font-size: 1.1em;
            margin: 20px 0 10px 0;
            font-weight: 600;
        }

        .table-detail-cell p {
            margin-bottom: 15px;
        }

        .table-detail-cell strong {
            color: #1B365D;
        }

        .table-detail-cell ul {
            margin: 15px 0 15px 30px;
        }

        .table-detail-cell li {
            margin-bottom: 8px;
        }

        .accordion-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(27, 54, 93, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: 0 4px 12px rgba(27, 54, 93, 0.15);
        }

        .accordion-header {
            background: linear-gradient(135deg, #1B365D, #2A4A7A);
            color: white;
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background: linear-gradient(135deg, #0F2A4A, #1B365D);
        }

        .accordion-header h4 {
            margin: 0;
            font-size: 1.3em;
            font-weight: 600;
        }

        .accordion-icon {
            font-size: 1.5em;
            transition: transform 0.3s ease;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: white;
        }

        .accordion-item.active .accordion-content {
            max-height: 5000px;
        }

        .accordion-inner {
            padding: 30px 25px;
            text-align: left;
            color: #666;
            line-height: 1.7;
        }

        .accordion-inner h5 {
            color: #1B365D;
            font-size: 1.1em;
            margin: 20px 0 10px 0;
            font-weight: 600;
        }

        .accordion-inner p {
            margin-bottom: 15px;
        }

        .accordion-inner strong {
            color: #1B365D;
        }

        .accordion-inner ul {
            margin: 15px 0 15px 30px;
        }

        .accordion-inner li {
            margin-bottom: 8px;
        }

        .detail-table {
            width: 100%;
            margin: 20px 0;
            border-collapse: collapse;
            background: #F8F9FA;
            border-radius: 8px;
            overflow: hidden;
        }

        .detail-table th {
            background: #1B365D;
            color: white;
            padding: 12px;
            text-align: left;
            font-weight: 600;
            font-size: 0.95em;
        }

        .detail-table td {
            padding: 10px 12px;
            border-bottom: 1px solid #E8E8E8;
        }

        .detail-table tr:last-child td {
            border-bottom: none;
        }

        /* Links Section */
        .links-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #F8F9FA 0%, #E8E9EB 100%);
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 40px;
            padding: 0 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .link-card {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(12px);
            padding: 18px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 
                0 4px 20px rgba(27, 54, 93, 0.12),
                inset 0 1px 1px rgba(255, 255, 255, 0.8);
            position: relative;
            overflow: hidden;
        }

        /* Static glass reflection at top */
        .link-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.4) 0%,
                rgba(255, 255, 255, 0.1) 50%,
                transparent 100%
            );
            pointer-events: none;
            border-radius: 12px 12px 0 0;
        }

        /* Glass reflection streak on hover */
        .link-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 100%
            );
            transform: skewX(-20deg);
            transition: left 0.6s ease;
            z-index: 2;
        }

        .link-card:hover::before {
            left: 150%;
        }

        .link-card:hover {
            transform: translateY(-3px) scale(1.01);
            box-shadow: 
                0 8px 30px rgba(27, 54, 93, 0.18),
                inset 0 1px 1px rgba(255, 255, 255, 0.9);
            background: rgba(255, 255, 255, 0.65);
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .link-icon {
            width: 95px;
            height: 95px;
            flex-shrink: 0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        /* Larger size for FOIA Logo images only */
        .link-icon-large {
            width: 95px;
            height: 95px;
        }

        .link-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .link-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative;
            z-index: 1;
        }

        .link-card h3 {
            font-size: 1.1em;
            font-weight: 600;
            margin: 0;
            color: #1B365D;
        }

        .link-card p {
            color: #666;
            line-height: 1.5;
            font-size: 0.9em;
            margin: 0;
        }

        .link-button {
            display: inline-block;
            background: #1B365D;
            color: #FFFFFF;
            padding: 8px 16px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9em;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .link-button:hover {
            background: #0F2A4A;
            transform: translateX(3px);
        }

        /* About Section */
        /* Combined About Me & Connect Section */
        .about-connect-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1B365D 0%, #2A4A7A 100%);
            position: relative;
            overflow: hidden;
        }

        .about-connect-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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            background-repeat: repeat;
            background-position: 0 0;
            opacity: 0.3;
        }

        #about .section-title h2 {
            color: #FFFFFF;
        }

        #about .section-title p {
            color: rgba(255, 255, 255, 0.9);
        }

        .about-connect-grid {
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            position: relative;
            z-index: 2;
        }

        .about-side {
            display: flex;
            flex-direction: column;
            gap: 15px;
            background: rgba(255, 255, 255, 0.10);
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 2;
        }

        .about-side h3 {
            font-size: 1.6em;
            color: #FFFFFF;
            margin-bottom: 0;
        }

        .about-image {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            position: relative;
        }

        .data-visualization {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 8px;
            height: 150px;
            margin-bottom: 20px;
        }

        .data-bar {
            background: linear-gradient(180deg, #1B365D, #2A4A7A);
            border-radius: 4px 4px 0 0;
            opacity: 0.8;
            animation: barGrow 2s ease-out;
        }

        .data-bar:nth-child(1) { width: 25px; height: 60px; animation-delay: 0.1s; }
        .data-bar:nth-child(2) { width: 25px; height: 100px; animation-delay: 0.3s; }
        .data-bar:nth-child(3) { width: 25px; height: 45px; animation-delay: 0.5s; }
        .data-bar:nth-child(4) { width: 25px; height: 120px; animation-delay: 0.7s; }
        .data-bar:nth-child(5) { width: 25px; height: 80px; animation-delay: 0.9s; }

        @keyframes barGrow {
            from { height: 0; opacity: 0; }
            to { opacity: 0.8; }
        }

        /* Profile Photo Styling */
        .about-photo {
            text-align: center;
        }

        .profile-photo {
            width: 100%;
            max-width: 300px;
            height: auto;
            aspect-ratio: 1;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 4px solid rgba(255, 255, 255, 0.3);
        }

        .about-text-new p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1em;
            margin-bottom: 15px;
            line-height: 1.7;
        }

        /* LinkedIn Button in About Section */
        .linkedin-button-container {
            text-align: center;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .linkedin-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: #0A66C2;
            color: #FFFFFF;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1em;
            transition: all 0.3s ease;
            width: 100%;
        }

        .linkedin-button:hover {
            background: #004182;
            transform: translateY(-2px);
        }

        /* Contact Form Side */
        .contact-side {
            background: rgba(255, 255, 255, 0.10);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 2;
        }

        .contact-side h3 {
            font-size: 1.6em;
            color: #FFFFFF;
            margin-bottom: 15px;
        }

        .form-intro {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        /* Services Section (Now "How I Can Help") */
        .services {
            padding: 80px 0;
            background: linear-gradient(135deg, #F8F9FA 0%, #E8E9EB 100%);
        }

        .services .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 40px;
            padding: 0 20px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(12px);
            padding: 28px 22px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 
                0 4px 20px rgba(27, 54, 93, 0.12),
                inset 0 1px 1px rgba(255, 255, 255, 0.8);
            position: relative;
            overflow: hidden;
        }

        /* Static glass reflection at top */
        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.4) 0%,
                rgba(255, 255, 255, 0.1) 50%,
                transparent 100%
            );
            pointer-events: none;
            border-radius: 12px 12px 0 0;
        }

        /* Glass reflection streak on hover */
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 100%
            );
            transform: skewX(-20deg);
            transition: left 0.6s ease;
            z-index: 2;
        }

        .service-card:hover::before {
            left: 150%;
        }

        .service-card:hover {
            transform: translateY(-4px) scale(1.01);
            box-shadow: 
                0 8px 30px rgba(27, 54, 93, 0.18),
                inset 0 1px 1px rgba(255, 255, 255, 0.9);
            background: rgba(255, 255, 255, 0.65);
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .service-icon {
            width: 125px;
            height: 125px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .service-icon lottie-player {
            width: 125px;
            height: 125px;
            background: transparent !important;
        }

        .service-card h3 {
            font-size: 1.2em;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1B365D;
        }

        .service-card p {
            font-size: 0.95rem;
            color: #2A4A7A;
            font-weight: 500;
            margin-bottom: 14px;
            line-height: 1.6;
        }

        .service-card ul {
            text-align: left;
            margin-top: 10px;
            padding-left: 20px;
            color: #555;
        }

        .service-card li {
            color: #666;
            font-size: 0.9em;
            line-height: 1.6;
            margin-bottom: 6px;
        }

        /* Experience Section */
        .experience {
            padding: 80px 0;
            background: linear-gradient(135deg, #F8F9FA 0%, #E8E9EB 100%);
        }

        .experience .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .experience-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 40px;
            padding: 0 20px;
        }

        .experience-card {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(12px);
            padding: 22px 20px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 
                0 4px 20px rgba(27, 54, 93, 0.12),
                inset 0 1px 1px rgba(255, 255, 255, 0.8);
            position: relative;
            overflow: hidden;
        }

        /* Static glass reflection at top */
        .experience-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.4) 0%,
                rgba(255, 255, 255, 0.1) 50%,
                transparent 100%
            );
            pointer-events: none;
            border-radius: 12px 12px 0 0;
        }

        /* Glass reflection streak on hover */
        .experience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 100%
            );
            transform: skewX(-20deg);
            transition: left 0.6s ease;
            z-index: 2;
        }

        .experience-card:hover::before {
            left: 150%;
        }

        .experience-card:hover {
            transform: translateY(-4px) scale(1.01);
            box-shadow: 
                0 8px 30px rgba(27, 54, 93, 0.18),
                inset 0 1px 1px rgba(255, 255, 255, 0.9);
            background: rgba(255, 255, 255, 0.65);
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .experience-logo {
            margin-bottom: 16px;
            height: 135px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            position: relative;
            z-index: 1;
        }

        .logo-img {
            max-height: 125px;
            max-width: 125px;
            object-fit: contain;
            filter: grayscale(20%);
            transition: filter 0.3s ease;
            background: transparent !important;
            border-radius: 8px;
        }

        .experience-card:hover .logo-img {
            filter: grayscale(0%);
        }

        .custom-logo {
            width: 125px;
            height: 125px;
            background: linear-gradient(135deg, #1B365D 0%, #2A4A7A 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 4px 15px rgba(27, 54, 93, 0.3);
        }

        .experience-card h3 {
            font-size: 1.2em;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1B365D;
            position: relative;
            z-index: 1;
        }

        .experience-card h4 {
            font-size: 0.95rem;
            color: #2A4A7A;
            font-weight: 500;
            margin-bottom: 14px;
            position: relative;
            z-index: 1;
        }

        .experience-card p {
            color: #666;
            line-height: 1.6;
            font-size: 0.9em;
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
        }

        /* Contact Form Styles */
        .contact-form {
            text-align: left;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #FFFFFF;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #E8E8E8;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1B365D;
            box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            background: #1B365D;
            color: #FFFFFF;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 4px 12px rgba(27, 54, 93, 0.3);
        }

        .submit-btn:hover {
            background: #0F2A4A;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(27, 54, 93, 0.4);
        }

        /* Footer */
        footer {
            background: #0F2A4A;
            color: #FFFFFF;
            padding: 40px 0 20px;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 1.3em;
            margin-bottom: 15px;
            color: #E8E8E8;
        }

        .footer-section p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 8px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 20px;
            color: rgba(255,255,255,0.6);
        }

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

        /* ============================================
           NexGen FOIA Showcase Section
        ============================================ */
        .nexgen-section {
            padding: 80px 0;
            background: #FFFFFF;
        }

        .nexgen-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .nexgen-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
            align-items: stretch;
        }

        /* Video Panel */
        .nexgen-video-panel {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(12px);
            border-radius: 12px;
            border: 1px solid rgba(27, 54, 93, 0.12);
            box-shadow:
                0 4px 20px rgba(27, 54, 93, 0.12),
                inset 0 1px 1px rgba(255, 255, 255, 0.8);
            overflow: hidden;
            position: relative;
        }

        .nexgen-video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
        }

        .nexgen-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .nexgen-video-label {
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(248, 249, 250, 0.8);
            border-top: 1px solid rgba(27, 54, 93, 0.08);
        }

        .nexgen-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #1B365D, #2A4A7A);
            color: white;
            font-size: 0.75em;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 20px;
            white-space: nowrap;
        }

        .nexgen-video-caption {
            font-size: 0.88em;
            color: #666;
            font-style: italic;
        }

        /* Details Panel */
        .nexgen-details-panel {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 16px;
        }

        /* PDF View Button */
        .nexgen-pdf-btn {
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(27, 54, 93, 0.18);
            border-radius: 12px;
            padding: 16px 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow:
                0 4px 20px rgba(27, 54, 93, 0.12),
                inset 0 1px 1px rgba(255, 255, 255, 0.8);
            position: relative;
            overflow: hidden;
            flex: 1;
        }

        .nexgen-pdf-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 100%
            );
            transform: skewX(-20deg);
            transition: left 0.6s ease;
            z-index: 2;
        }

        .nexgen-pdf-btn:hover::before {
            left: 150%;
        }

        .nexgen-pdf-btn:hover {
            transform: translateY(-3px);
            box-shadow:
                0 8px 30px rgba(27, 54, 93, 0.18),
                inset 0 1px 1px rgba(255, 255, 255, 0.9);
            background: rgba(255, 255, 255, 0.7);
            border-color: rgba(27, 54, 93, 0.28);
        }

        .nexgen-pdf-btn-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #1B365D, #2A4A7A);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .nexgen-pdf-btn-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 3px;
            position: relative;
            z-index: 1;
        }

        .nexgen-pdf-btn-label {
            font-size: 0.95em;
            font-weight: 700;
            color: #1B365D;
        }

        .nexgen-pdf-btn-sub {
            font-size: 0.8em;
            color: #888;
        }

        .nexgen-pdf-btn-arrow {
            font-size: 1.2em;
            color: #1B365D;
            font-weight: 700;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .nexgen-pdf-btn:hover .nexgen-pdf-btn-arrow {
            transform: translate(2px, -2px);
        }

        /* NARA placeholder card */
        .nexgen-nara-card {
            background: linear-gradient(135deg, #1B365D, #2A4A7A);
            border-radius: 12px;
            padding: 20px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex: 1;
        }

        .nexgen-nara-text h4 {
            color: #FFFFFF;
            font-size: 0.95em;
            font-weight: 700;
            margin: 0 0 4px 0;
        }

        .nexgen-nara-text p {
            color: rgba(255,255,255,0.65);
            font-size: 0.82em;
            margin: 0;
            font-style: italic;
        }

        .nexgen-nara-btn-disabled {
            background: rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.45);
            padding: 9px 18px;
            border-radius: 6px;
            font-size: 0.85em;
            font-weight: 600;
            white-space: nowrap;
            border: 1px solid rgba(255,255,255,0.18);
            text-decoration: none;
        }

        /* Meta pills */
        .nexgen-meta-row {
            display: flex;
            gap: 10px;
            margin-top: 6px;
            flex-wrap: wrap;
        }

        .nexgen-meta-pill {
            background: rgba(27,54,93,0.08);
            color: #1B365D;
            font-size: 0.8em;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            border: 1px solid rgba(27,54,93,0.15);
        }

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

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

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .section-title h2 {
                font-size: 1.7em;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .experience-grid {
                grid-template-columns: 1fr;
            }

            .links-grid {
                grid-template-columns: 1fr;
            }

            .link-card {
                flex-direction: column;
                text-align: center;
            }

            .link-icon, .link-icon-large {
                margin: 0 auto 15px;
            }

            .link-content {
                text-align: center;
            }

            .link-button {
                align-self: center;
            }

            .about-connect-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-side {
                text-align: center;
            }

            .profile-photo {
                max-width: 250px;
                margin: 0 auto;
            }

            .contact-side {
                padding: 30px 20px;
            }

            .nexgen-layout {
                grid-template-columns: 1fr;
            }

            .nexgen-nara-card {
                flex-direction: column;
                text-align: center;
            }
        }