/* Gabriel Advisors - Main Stylesheet */
/* Fintech Professional Style - Inspired by Stripe, Plaid, Square */

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

:root {
    --primary: #0A2540;
    --primary-light: #1E3A5F;
    --secondary: #2563EB;
    --logo-blue: #3970b8;
    --accent: #DC2626;
    --warning: #F59E0B;
    --success: #2563EB;
    --gray-900: #0C1825;
    --gray-800: #1A2B3D;
    --gray-700: #2A3B4D;
    --gray-600: #556B7D;
    --gray-500: #7B8794;
    --gray-400: #9BA3AC;
    --gray-300: #C4CBD2;
    --gray-200: #E3E8ED;
    --gray-100: #F6F9FC;
    --white: #FFFFFF;
    --border: #E3E8ED;
    --shadow: 0 1px 3px rgba(18, 22, 25, 0.08);
    --shadow-lg: 0 8px 16px rgba(18, 22, 25, 0.12);
    --shadow-xl: 0 20px 40px rgba(18, 22, 25, 0.15);
}

/* Accessibility Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1002;
    box-shadow: var(--shadow);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    overflow: visible;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    position: relative;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.nav-menu a:hover {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.08);
}

.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hide mobile overlay on desktop (shown only in mobile breakpoint) */
.mobile-menu-overlay {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    padding: 12px;
    position: relative;
    border: none;
    background: none;
    z-index: 10000;
    overflow: visible !important;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--primary);
    margin: 2px 0;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

/* Hero - Financial Services Style (Index page specific) */
.hero.hero-image {
    background-image: url('../images/infrastructure/tower-vista.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 60px;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    margin: 0 40px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.hero.hero-image h1 {
    font-size: 52px;
    color: var(--white);
}

.hero .highlight {
    color: #B8E6FF;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.hero.hero-image .hero-subtitle {
    line-height: 1.5;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: center;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #B8E6FF;
    display: block;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    min-height: 44px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--gray-100);
}

/* Cards */
.service-card, .sector-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before, .sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before, .sector-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover, .sector-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-300);
}

.service-icon, .sector-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.service-card h3, .sector-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.service-card p, .sector-card p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features, .sector-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li, .sector-features li {
    color: var(--gray-600);
    font-size: 15px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li::before, .sector-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    font-size: 16px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

/* Sectors Section */
.sectors {
    padding: 100px 0;
    background: var(--white);
}

.services-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.services-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.services-header p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Metrics Section */
.metrics {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.metrics h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--white);
}

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

.metric {
    padding: 20px;
}

.metric-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    display: block;
}

.metric-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
}

/* Grids */
.services-grid, .sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* About Page Specific Styles */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    background: var(--gray-100);
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    border: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-300);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    color: var(--gray-600);
    font-size: 16px;
    font-weight: 500;
}

/* Values Section */
/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background: var(--white);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 60px;
}

.case-study {
    background: var(--gray-50);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.case-study-logo h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.case-study p {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

.values {
    padding: 100px 0;
    background: var(--gray-100);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.value-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-300);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 8px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

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

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
    padding: 0 20px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contact Page Specific Styles */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info p {
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-methods {
    list-style: none;
}

.contact-methods li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-methods li:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.contact-details p {
    color: var(--gray-600);
    font-size: 15px;
    margin: 0;
}

/* Form */
.contact-form {
    background: var(--gray-100);
    padding: 40px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-900);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

/* Team Page Specific Styles */
.leadership {
    padding: 100px 0;
    background: var(--white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.leader-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-300);
}

.leader-photo {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.leader-title {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 15px;
}

.leader-bio {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 15px;
}

.team {
    padding: 100px 0;
    background: var(--gray-100);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}


.team-photo {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.team-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.team-title {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 14px;
}

.team-bio {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 14px;
}

/* Experience Section */
.experience {
    padding: 80px 0;
    background: var(--gray-50);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.experience-category h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.company-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.company-list span {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Mobile footer styles */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-section p {
        font-size: 14px;
        line-height: 1.5;
    }

    .footer {
        padding: 40px 0 24px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-section p {
    color: var(--white);
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-700);
    color: var(--gray-400);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-right: 4px;
    }

        /* ========== MOBILE MENU - BEST PRACTICE IMPLEMENTATION ========== */
    /* Uses portal pattern (direct child of body), proper ARIA, focus management,
       keyboard navigation, and iOS scroll locking */

    /* Hide desktop menu on mobile */
    .nav-menu {
        display: none !important;
    }

    /* Mobile Menu Overlay - Shows only on mobile */
    .mobile-menu-overlay {
        display: flex; /* Override desktop display: none */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Close button inside overlay - X button fixed at top right, matching hamburger position */
    .mobile-menu-close {
        position: fixed;
        top: 16px;
        right: 24px;
        width: 48px;
        height: 48px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
    }

    .mobile-menu-close span {
        position: absolute;
        width: 24px;
        height: 2px;
        background: var(--primary);
        transition: all 0.3s ease;
    }

    .mobile-menu-close span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-menu-close span:nth-child(2) {
        transform: rotate(-45deg);
    }

    .mobile-menu-close:hover span {
        background: var(--accent);
    }

    .mobile-menu-container {
        width: 100%;
        max-width: 400px;
        padding: 0 32px;
    }

    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-list li {
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu-overlay.active .mobile-menu-list li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for menu items */
    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(1) { transition-delay: 0.05s; }
    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(2) { transition-delay: 0.1s; }
    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(3) { transition-delay: 0.15s; }
    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(4) { transition-delay: 0.2s; }
    .mobile-menu-overlay.active .mobile-menu-list li:nth-child(5) { transition-delay: 0.25s; }

    .mobile-menu-list a {
        display: block;
        padding: 20px 24px;
        font-size: 20px;
        font-weight: 500;
        color: var(--gray-900);
        text-decoration: none;
        text-align: center;
        border-radius: 12px;
        transition: all 0.2s ease;
        margin-bottom: 8px;
    }

    .mobile-menu-list a:hover {
        background: rgba(37, 99, 235, 0.1);
        color: var(--primary);
        transform: translateX(4px);
    }

    /* Active page highlight in mobile menu */
    .mobile-menu-list a.active {
        background: var(--primary) !important;
        color: white !important;
        font-weight: 600;
        transform: none !important;
    }

    /* Don't show hover state on active items */
    .mobile-menu-list a.active:hover {
        background: var(--primary) !important;
        transform: none !important;
    }

    /* Ensure mobile menu toggle is large enough */
    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 30px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .hero-content {
        margin: 0;
        padding: 60px 24px;
        backdrop-filter: blur(15px);
        background: rgba(0, 0, 0, 0.5);
        border-radius: 0;
        max-width: none;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .metric {
        text-align: center;
        padding: 24px;
    }

    .metrics {
        text-align: center;
        padding: 60px 0;
    }

    .metrics h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .metric-number {
        font-size: 36px !important;
    }

    .metric-label {
        font-size: 14px !important;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: stretch;
    }

    .stat {
        padding: 24px;
        min-height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: stretch;
    }

    .value-card {
        padding: 24px;
        min-height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .service-card, .sector-card {
        padding: 24px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-form {
        padding: 24px;
    }
}
/* Clients Section */
.clients {
    padding: 100px 0;
    background: var(--gray-100);
    text-align: center;
}

.clients h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.clients-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.removed {
    display: none;
} 

.clients-category {
    margin-bottom: 60px;
}

.clients-category:last-child {
    margin-bottom: 0;
}

.clients-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 32px;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

/* Board Services: 5-6-5-6-5-6-5 layout (38 logos) */
.clients-grid-board {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* All logos span 2 columns */
.clients-grid-board .client-logo {
    grid-column: span 2;
}

/* Row 1: 5 logos centered, starting at columns 2, 4, 6, 8, 10 */
.clients-grid-board .client-logo:nth-child(1) { grid-column: 2 / span 2; }
.clients-grid-board .client-logo:nth-child(2) { grid-column: 4 / span 2; }
.clients-grid-board .client-logo:nth-child(3) { grid-column: 6 / span 2; }
.clients-grid-board .client-logo:nth-child(4) { grid-column: 8 / span 2; }
.clients-grid-board .client-logo:nth-child(5) { grid-column: 10 / span 2; }

/* Row 2: 6 logos full width, starting at columns 1, 3, 5, 7, 9, 11 */
.clients-grid-board .client-logo:nth-child(6) { grid-column: 1 / span 2; }
.clients-grid-board .client-logo:nth-child(7) { grid-column: 3 / span 2; }
.clients-grid-board .client-logo:nth-child(8) { grid-column: 5 / span 2; }
.clients-grid-board .client-logo:nth-child(9) { grid-column: 7 / span 2; }
.clients-grid-board .client-logo:nth-child(10) { grid-column: 9 / span 2; }
.clients-grid-board .client-logo:nth-child(11) { grid-column: 11 / span 2; }

/* Row 3: 5 logos centered, starting at columns 2, 4, 6, 8, 10 */
.clients-grid-board .client-logo:nth-child(12) { grid-column: 2 / span 2; }
.clients-grid-board .client-logo:nth-child(13) { grid-column: 4 / span 2; }
.clients-grid-board .client-logo:nth-child(14) { grid-column: 6 / span 2; }
.clients-grid-board .client-logo:nth-child(15) { grid-column: 8 / span 2; }
.clients-grid-board .client-logo:nth-child(16) { grid-column: 10 / span 2; }

/* Row 4: 6 logos full width, starting at columns 1, 3, 5, 7, 9, 11 */
.clients-grid-board .client-logo:nth-child(17) { grid-column: 1 / span 2; }
.clients-grid-board .client-logo:nth-child(18) { grid-column: 3 / span 2; }
.clients-grid-board .client-logo:nth-child(19) { grid-column: 5 / span 2; }
.clients-grid-board .client-logo:nth-child(20) { grid-column: 7 / span 2; }
.clients-grid-board .client-logo:nth-child(21) { grid-column: 9 / span 2; }
.clients-grid-board .client-logo:nth-child(22) { grid-column: 11 / span 2; }

/* Row 5: 5 logos centered, starting at columns 2, 4, 6, 8, 10 */
.clients-grid-board .client-logo:nth-child(23) { grid-column: 2 / span 2; }
.clients-grid-board .client-logo:nth-child(24) { grid-column: 4 / span 2; }
.clients-grid-board .client-logo:nth-child(25) { grid-column: 6 / span 2; }
.clients-grid-board .client-logo:nth-child(26) { grid-column: 8 / span 2; }
.clients-grid-board .client-logo:nth-child(27) { grid-column: 10 / span 2; }

/* Row 6: 6 logos full width, starting at columns 1, 3, 5, 7, 9, 11 */
.clients-grid-board .client-logo:nth-child(28) { grid-column: 1 / span 2; }
.clients-grid-board .client-logo:nth-child(29) { grid-column: 3 / span 2; }
.clients-grid-board .client-logo:nth-child(30) { grid-column: 5 / span 2; }
.clients-grid-board .client-logo:nth-child(31) { grid-column: 7 / span 2; }
.clients-grid-board .client-logo:nth-child(32) { grid-column: 9 / span 2; }
.clients-grid-board .client-logo:nth-child(33) { grid-column: 11 / span 2; }

/* Row 7: 5 logos centered, starting at columns 2, 4, 6, 8, 10 */
.clients-grid-board .client-logo:nth-child(34) { grid-column: 2 / span 2; }
.clients-grid-board .client-logo:nth-child(35) { grid-column: 4 / span 2; }
.clients-grid-board .client-logo:nth-child(36) { grid-column: 6 / span 2; }
.clients-grid-board .client-logo:nth-child(37) { grid-column: 8 / span 2; }
.clients-grid-board .client-logo:nth-child(38) { grid-column: 10 / span 2; }

/* Investment Activity: target ~6 per row on desktop */
.clients-grid-investment .client-logo {
    flex: 0 0 180px;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: visible;
}

.client-logo:hover {
    z-index: 10;
}

.client-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    text-align: center;
    margin-top: 6px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.2;
    max-width: 100%;
}

.client-logo:hover .client-name {
    opacity: 1;
}

.client-logo:hover img {
    transform: scale(0.85);
    margin-bottom: 4px;
}

.client-logo img {
    max-width: 100%;
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Make C Spire and V-SPAN logos larger */
.client-logo img[src*="cspire"],
.client-logo img[src*="vspan"] {
    max-height: 100px;
    max-width: 150%;
}

/* Medium screens: reduce gap to prevent excessive spacing */
@media (max-width: 1024px) and (min-width: 769px) {
    .clients-grid-board {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .clients {
        padding: 60px 0;
    }

    .clients h2 {
        font-size: 2rem;
    }

    .clients-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .clients-grid {
        gap: 24px;
    }

    /* Investment Activity: ~4 per row on tablet */
    .clients-grid-investment .client-logo {
        flex: 0 0 140px;
    }

    .client-logo {
        height: 80px;
        padding: 8px;
    }

    /* Disable hover effects on tablet/mobile - touch doesn't work well with hover */
    .client-logo:hover {
        transform: none;
    }

    .client-logo:hover img {
        max-height: 60px;
        margin-bottom: 0;
    }

    .clients-grid {
        padding-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .clients-grid {
        gap: 16px;
        padding-bottom: 20px;
    }

    /* Board Services: Uniform 3s pattern on mobile (38 logos) */
    .clients-grid-board {
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 16px;
        padding-left: 0;
        padding-right: 0;
    }

    /* Make logos larger on mobile */
    .clients-grid-board .client-logo img {
        height: 80px !important;
    }

    /* Rows 1-12: 3 logos each at columns 1, 3, 5 */
    .clients-grid-board .client-logo:nth-child(1) { grid-column: 1 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(2) { grid-column: 3 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(3) { grid-column: 5 / span 2 !important; }

    .clients-grid-board .client-logo:nth-child(4) { grid-column: 1 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(5) { grid-column: 3 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(6) { grid-column: 5 / span 2 !important; }

    .clients-grid-board .client-logo:nth-child(7) { grid-column: 1 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(8) { grid-column: 3 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(9) { grid-column: 5 / span 2 !important; }

    .clients-grid-board .client-logo:nth-child(10) { grid-column: 1 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(11) { grid-column: 3 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(12) { grid-column: 5 / span 2 !important; }

    .clients-grid-board .client-logo:nth-child(13) { grid-column: 1 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(14) { grid-column: 3 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(15) { grid-column: 5 / span 2 !important; }

    .clients-grid-board .client-logo:nth-child(16) { grid-column: 1 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(17) { grid-column: 3 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(18) { grid-column: 5 / span 2 !important; }

    .clients-grid-board .client-logo:nth-child(19) { grid-column: 1 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(20) { grid-column: 3 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(21) { grid-column: 5 / span 2 !important; }

    .clients-grid-board .client-logo:nth-child(22) { grid-column: 1 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(23) { grid-column: 3 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(24) { grid-column: 5 / span 2 !important; }

    .clients-grid-board .client-logo:nth-child(25) { grid-column: 1 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(26) { grid-column: 3 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(27) { grid-column: 5 / span 2 !important; }

    .clients-grid-board .client-logo:nth-child(28) { grid-column: 1 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(29) { grid-column: 3 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(30) { grid-column: 5 / span 2 !important; }

    .clients-grid-board .client-logo:nth-child(31) { grid-column: 1 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(32) { grid-column: 3 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(33) { grid-column: 5 / span 2 !important; }

    .clients-grid-board .client-logo:nth-child(34) { grid-column: 1 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(35) { grid-column: 3 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(36) { grid-column: 5 / span 2 !important; }

    /* Row 13: 2 logos centered at columns 2, 4 */
    .clients-grid-board .client-logo:nth-child(37) { grid-column: 2 / span 2 !important; }
    .clients-grid-board .client-logo:nth-child(38) { grid-column: 4 / span 2 !important; }

    /* Scroll-active state - same as hover effect with variable opacity */
    .clients-grid-board .client-logo {
        --scroll-opacity: 0;
    }

    .clients-grid-board .client-logo.scroll-active {
        transform: scale(1.15);
        z-index: 10;
    }

    .clients-grid-board .client-logo.scroll-active .client-name {
        opacity: var(--scroll-opacity);
        display: block;
    }

    .clients-grid-board .client-logo.scroll-active img {
        max-height: calc(60px - (20px * var(--scroll-opacity)));
        margin-bottom: calc(4px * var(--scroll-opacity));
    }

    /* Investment Activity: ~3-4 per row on mobile */
    .clients-grid-investment .client-logo {
        flex: 0 0 85px;
    }
}

/* ========================================
   JLA-Inspired Design Styles
   ======================================== */

/* Overlay Navbar with Glass Effect */
.navbar-overlay {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    padding: 30px 0 !important;
    z-index: 1003;
    transform: translateY(0);
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar when scrolled - slides down with background */
.navbar-overlay.scrolled {
    position: fixed !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    padding: 16px 0 !important;
    transform: translateY(0);
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide down animation */
@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-overlay .logo img {
    filter: brightness(0) invert(1); /* White logo on transparent navbar */
    transition: filter 0.3s ease;
    height: 48px; /* Increased from 36px - makes logo 33% larger */
}

/* Blue logo when navbar is scrolled (white background) */
.navbar-overlay.scrolled .logo img {
    filter: none; /* Show original blue logo */
}

.navbar-overlay .nav-menu {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 32px;
}

.navbar-overlay .nav-menu a {
    color: rgba(255,255,255,0.8) !important;
    transition: color 0.3s ease;
}

.navbar-overlay .nav-menu a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.25) !important;
}

/* Dark nav links when navbar is scrolled (white background) */
.navbar-overlay.scrolled .nav-menu {
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar-overlay.scrolled .nav-menu a {
    color: var(--gray-700) !important;
}

.navbar-overlay.scrolled .nav-menu a:hover {
    color: var(--primary) !important;
    background: var(--gray-200) !important;
}

/* Regular navbar mobile menu toggle */
.navbar .mobile-menu-toggle {
    z-index: 10000;
    position: relative;
    overflow: visible !important;
}

.navbar .mobile-menu-toggle span {
    background: var(--primary);
    transition: background 0.3s ease;
}

/* Navbar overlay mobile menu toggle */
.navbar-overlay .mobile-menu-toggle {
    z-index: 10000;
    position: relative;
    overflow: visible !important;
}

.navbar-overlay .mobile-menu-toggle span {
    background: #fff;
    transition: background 0.3s ease;
}

/* Dark hamburger when navbar is scrolled (white background) */
.navbar-overlay.scrolled .mobile-menu-toggle span {
    background: var(--primary);
}

/* Hero Contact Full Width */
.hero-contact-full {
    background: linear-gradient(135deg, #0A2540 0%, #1e3a5f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 40px 80px;
}

.hero-contact-full .hero-curve-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.4;
    pointer-events: none;
    top: 0;
    left: 0;
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.contact-hero-header {
    text-align: left;
    margin-bottom: 60px;
}

.contact-hero-tagline {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
}

.contact-hero-header h1 {
    font-size: 64px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -1px;
}

.contact-hero-form {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.form-row-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group-inline {
    width: 100%;
}

.form-group-inline input,
.form-group-inline select,
.form-group-inline textarea {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group-inline input::placeholder,
.form-group-inline textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group-inline input:focus,
.form-group-inline select:focus,
.form-group-inline textarea:focus {
    outline: none;
    border-bottom-color: #3b82f6;
}

.form-group-inline select {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.form-group-inline select option {
    background: #1e3a5f;
    color: #ffffff;
}

.form-group-inline textarea {
    resize: vertical;
    min-height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px;
    padding: 16px !important;
    background: rgba(255, 255, 255, 0.05);
}

.form-group-inline textarea:focus {
    border-color: #3b82f6 !important;
    background: rgba(255, 255, 255, 0.08);
}

/* Hide honeypot spam protection field */
.hidden {
    display: none;
}

/* Form Success Message */
.form-success-message {
    text-align: center;
    padding: 80px 40px;
    animation: fadeInUp 0.6s ease;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    font-weight: bold;
    animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-success-message h3 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.form-success-message p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto;
}

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

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

.btn-contact-submit {
    background: #ffffff;
    color: #0A2540;
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 32px;
}

.btn-contact-submit:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* Hero Section for Sectors Page */
.hero-sectors {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(26, 38, 66, 0.9) 100%),
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&q=80') center/cover;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: 140px 40px 60px;
}

.hero-curve-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.4;
    pointer-events: none;
}

.hero-curve-bg svg {
    position: absolute;
    width: 150%;
    height: 150%;
    left: -25%;
    top: -25%;
}

.curve-path {
    fill: none;
    stroke: rgba(59, 130, 246, 0.5);
    stroke-width: 1.5;
    animation: flowCurve 20s ease-in-out infinite;
}

.curve-path:nth-child(2) {
    animation-delay: -5s;
    stroke: rgba(96, 165, 250, 0.4);
}

.curve-path:nth-child(3) {
    animation-delay: -10s;
    stroke: rgba(147, 197, 253, 0.3);
}

@keyframes flowCurve {
    0%, 100% {
        stroke-dasharray: 2000;
        stroke-dashoffset: 2000;
    }
    50% {
        stroke-dashoffset: 0;
    }
}

@keyframes subtleGlow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(57, 112, 184, 0.3), 0 0 8px rgba(57, 112, 184, 0.2);
    }
    50% {
        text-shadow: 0 0 25px rgba(57, 112, 184, 0.5), 0 0 12px rgba(57, 112, 184, 0.4);
    }
}

.hero-subtitle-glow {
    animation: subtleGlow 3s ease-in-out infinite;
}

.hero-sectors .hero-content {
    max-width: 100%;
    z-index: 1;
    position: relative;
}

.hero-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-sectors h1 {
    font-size: 52px;
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    max-width: 1400px;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.hero-sectors .hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    max-width: 1200px;
    line-height: 1.6;
    margin-top: 20px;
}

/* Expertise Section */
.sectors-expertise {
    padding: 60px 40px;
    background: #ffffff;
}

.sectors-expertise + .sectors-expertise {
    padding-top: 40px;
}

/* Sectors page - 50/50 split for content and images */
.sectors-expertise .service-tab-panels {
    flex: 0 0 50%;
}

.sectors-expertise .service-tab-images {
    flex: 0 0 50%;
}

.section-header-center {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.section-header-center h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 24px;
    color: #0a1128;
    letter-spacing: -1px;
}

.section-header-center p {
    font-size: 19px;
    color: #666;
    line-height: 1.7;
}

.expertise-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-cards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
}

/* Services Simple Grid */
.services-simple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-simple-card {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-simple-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 28px;
    color: #fff;
}

.service-simple-card h3 {
    font-size: 28px;
    font-weight: 400;
    color: #0a1128;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.service-simple-card .service-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.service-features-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 600;
}

/* Tabbed Services Interface */
.services-tabbed-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    border-bottom: 2px solid #e2e8f0;
    justify-content: center;
}

.service-tab {
    background: none;
    border: none;
    padding: 20px 32px;
    font-size: 18px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.service-tab i {
    font-size: 24px;
    transition: all 0.3s ease;
}

.service-tab:hover {
    color: #3b82f6;
}

.service-tab:hover i {
    transform: scale(1.1);
}

.service-tab.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}

.service-tab.active i {
    color: #3b82f6;
}

/* Tab Content Wrapper - Split Layout */
.service-tab-content-wrapper {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    min-height: 600px;
    position: relative;
}

.service-tab-panels {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 60%;
    border-right: 1px solid #e2e8f0;
}

.service-tab-panel {
    display: none;
    opacity: 0;
    animation: fadeInTab 0.4s ease-out forwards;
    flex: 1;
}

.service-tab-panel.active {
    display: flex;
    flex-direction: column;
}

.tab-panel-content {
    background: transparent;
    border-radius: 0;
    padding: 48px;
    box-shadow: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Tab Images */
.service-tab-images {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    flex: 0 0 40%;
}

.service-tab-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.service-tab-image.active {
    opacity: 1;
}

.service-tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
}

/* Market Preparation image - show bottom */
.service-tab-images #service-2 img {
    object-position: center bottom;
}

/* Valuation image - show rightmost part */
.service-tab-images #service-4 img {
    object-position: right center;
}

/* Board Services logos grid */
.service-board-logos {
    background: #0A2540;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Desktop board logos grid - only large screens */
@media (min-width: 1025px) {
    .board-logos-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        width: 100%;
        max-width: 100%;
    }
}

.board-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: transparent;
}

.board-logo-item img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Grayscale for square logos */
.board-logo-item.square-logo img {
    filter: grayscale(100%) brightness(1.2);
}

/* Tablet responsiveness for board logos */
@media (max-width: 1024px) and (min-width: 769px) {
    .board-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .board-logos-grid {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 16px !important;
    }

    /* Default: each item spans 2 columns */
    .board-logo-item {
        grid-column: span 2;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Explicitly place items by row - 3-2-3-2 pattern */
    /* Row 1: Items 1,2,3 */
    .board-logo-item:nth-child(1),
    .board-logo-item:nth-child(2),
    .board-logo-item:nth-child(3) { grid-row: 1; }

    /* Row 2: Items 4,5 (centered) */
    .board-logo-item:nth-child(4) { grid-row: 2; grid-column: 2 / span 2; }
    .board-logo-item:nth-child(5) { grid-row: 2; grid-column: 4 / span 2; }

    /* Row 3: Items 6,7,8 */
    .board-logo-item:nth-child(6),
    .board-logo-item:nth-child(7),
    .board-logo-item:nth-child(8) { grid-row: 3; }

    /* Row 4: Items 9,10 (centered) */
    .board-logo-item:nth-child(9) { grid-row: 4; grid-column: 2 / span 2; }
    .board-logo-item:nth-child(10) { grid-row: 4; grid-column: 4 / span 2; }

    /* Row 5: Items 11,12,13 */
    .board-logo-item:nth-child(11),
    .board-logo-item:nth-child(12),
    .board-logo-item:nth-child(13) { grid-row: 5; }

    /* Row 6: Items 14,15 (centered) */
    .board-logo-item:nth-child(14) { grid-row: 6; grid-column: 2 / span 2; }
    .board-logo-item:nth-child(15) { grid-row: 6; grid-column: 4 / span 2; }

    /* Row 7: Items 16,17,18 */
    .board-logo-item:nth-child(16),
    .board-logo-item:nth-child(17),
    .board-logo-item:nth-child(18) { grid-row: 7; }

    /* Row 8: Items 19,20 (centered) */
    .board-logo-item:nth-child(19) { grid-row: 8; grid-column: 2 / span 2; }
    .board-logo-item:nth-child(20) { grid-row: 8; grid-column: 4 / span 2; }

    /* Row 9: Items 21,22,23 */
    .board-logo-item:nth-child(21),
    .board-logo-item:nth-child(22),
    .board-logo-item:nth-child(23) { grid-row: 9; }

    /* Row 10: Items 24,25 (centered) */
    .board-logo-item:nth-child(24) { grid-row: 10; grid-column: 2 / span 2; }
    .board-logo-item:nth-child(25) { grid-row: 10; grid-column: 4 / span 2; }

    /* Row 11: Items 26,27,28+ */
    .board-logo-item:nth-child(26),
    .board-logo-item:nth-child(27),
    .board-logo-item:nth-child(28) { grid-row: 11; }

    .board-logo-name {
        font-size: 11px;
        font-weight: 500;
        color: #ffffff;
        text-align: center;
        margin-top: 6px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .board-logo-item img {
        max-height: 55px;
        transition: all 0.3s ease;
    }

    /* Show name on scroll-active for mobile - same as hover */
    .board-logo-item.scroll-active .board-logo-name {
        opacity: 1;
    }

    .board-logo-item.scroll-active img {
        max-height: 40px;
        margin-bottom: 4px;
    }

    .service-board-logos {
        padding: 24px;
    }
}

/* Desktop hover effect */
@media (min-width: 769px) {
    .board-logo-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .board-logo-name {
        font-size: 11px;
        font-weight: 500;
        color: #ffffff;
        text-align: center;
        margin-top: 6px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .board-logo-item img {
        transition: all 0.3s ease;
    }

    .board-logo-item:hover .board-logo-name {
        opacity: 1;
    }

    .board-logo-item:hover img {
        max-height: 50px;
        margin-bottom: 4px;
    }
}

/* Sectors page image positioning - match homepage positioning */
/* Wireless sector - palm-tree-tower.jpg */
.service-tab-images #sector-2 img {
    object-position: center top;
}

/* Data Centers sector - cell-tower-2.jpg */
.service-tab-images #sector-3 img {
    object-position: center bottom;
}

.tab-panel-header {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f1f5f9;
    flex-shrink: 0;
}

.tab-panel-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.tab-panel-header h3 {
    font-size: 32px;
    font-weight: 600;
    color: #0a1128;
    margin: 0 0 8px 0;
}

.tab-panel-subtitle {
    font-size: 15px;
    color: #3b82f6;
    font-weight: 500;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-panel-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.tab-panel-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-content: start;
    flex: 1;
}

.tab-panel-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.tab-panel-features li i {
    color: #3b82f6;
    font-size: 20px;
    margin-top: 2px;
}

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

.expertise-hover-card {
    position: relative;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: block;
    text-decoration: none;
    color: inherit;
}

.expertise-hover-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* Default */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom positioning for each specific image */
.card-bg-image[src*="cell-tower-1.jpg"] {
    object-position: left center; /* Tower on left with sunset */
}

.card-bg-image[src*="cell-tower-2.jpg"] {
    object-position: right bottom; /* Cable equipment on right, bottom focused */
}

.service-tab-image[src*="cell-tower-2.jpg"] {
    object-position: right bottom; /* Cable equipment on right, bottom focused */
}

.help-image[src*="cell-tower-2.jpg"] {
    object-position: center bottom; /* Show bottom of image for Market Preparation */
}

.help-image[src*="cell-tower-5.jpg"] {
    object-position: right center; /* Show rightmost part of image for Valuation */
}

.card-bg-image[src*="cell-tower-3.jpg"] {
    object-position: center top; /* Tower installation with cranes, top down view */
}

.card-bg-image[src*="cell-tower-4.jpg"] {
    object-position: center top; /* Utility pole equipment, top down view */
}

.card-bg-image[src*="tower-vista.jpg"] {
    object-position: right top; /* Tower structure, right and top focused */
}

.card-bg-image[src*="wireless-rooftop.jpg"] {
    object-position: center 45%; /* Rooftop wireless equipment */
}

.card-bg-image[src*="fintech/hero.jpg"] {
    object-position: center center; /* NYC skyline - well balanced */
}

.expertise-hover-card:hover .card-bg-image {
    transform: scale(1.08);
}

.card-overlay-default {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    transition: opacity 0.3s;
}

.expertise-hover-card:hover .card-overlay-default {
    opacity: 0;
}

.card-overlay-default h3,
.card-overlay-hover h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.card-overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 17, 40, 0.96);
    padding: 50px;
    padding-bottom: 80px;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-hover-card:hover .card-overlay-hover {
    opacity: 1;
}

.card-overlay-hover h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.card-overlay-hover p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    line-height: 1.7;
}

.card-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
}

.expertise-hover-card:hover .card-arrow {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Why Section - Board Case Studies */
.why-section-alt {
    padding: 120px 40px;
    background: linear-gradient(135deg, #0a1128 0%, #1a2642 100%);
    position: relative;
    overflow: hidden;
}

.why-section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(ellipse at 30% 40%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.why-section-alt .container {
    position: relative;
    z-index: 1;
}

.why-section-alt .section-header-center h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 300;
}

.why-section-alt .section-header-center p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-feature-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px 20px 0 0;
}

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

.why-feature-card:hover {
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    transform: translateY(-12px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin: 0 auto 24px auto;
}

.why-feature-card h3 {
    font-size: 28px;
    font-weight: 500;
    color: #0a1128;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.why-feature-card p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
}

/* Case Study Card Elements */
.case-study-logo {
    max-height: 60px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto 32px;
    display: block;
    transition: transform 0.3s ease;
}

.why-feature-card:hover .case-study-logo {
    transform: scale(1.05);
}

/* Medium section - between light and dark */
.section-medium {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    padding: 120px 40px;
    color: #0a1128;
    position: relative;
    overflow: hidden;
}

.section-medium .section-header-center h2 {
    color: #0a1128;
    font-size: 38px;
    font-weight: 300;
}

.section-medium .section-header-center p {
    color: rgba(10, 17, 40, 0.8);
    font-size: 18px;
}

/* Approach Dark Section - Our Values */
.approach-dark-section {
    background: linear-gradient(135deg, #0A2540 0%, #1e3a5f 100%);
    padding: 120px 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.approach-dark-section .section-header-center h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 300;
}

.approach-dark-section .section-header-center p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
}

/* Light version for Our Values section */
.values-light-section {
    background: #ffffff;
    padding: 120px 40px;
    color: #0a1128;
    position: relative;
    overflow: hidden;
}

.values-light-section .section-header-center h2 {
    color: #0a1128;
    font-size: 38px;
    font-weight: 300;
}

.values-light-section .section-header-center p {
    color: #475569;
    font-size: 18px;
}

.values-light-section .value-modern-card h3 {
    color: #0a1128;
}

.values-light-section .value-modern-card p {
    color: #475569;
}

.values-light-section .diamond-center-text-small,
.values-light-section .diamond-center-text-large {
    fill: #0a1128;
}

.approach-two-col {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    position: relative;
    z-index: 1;
}

.approach-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.approach-col-left h2 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: #ffffff;
}

.approach-col-left p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

.approach-col-right {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.approach-service-item {
    padding-bottom: 50px;
    padding-left: 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s;
    position: relative;
}

.approach-service-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    width: 2px;
    height: 0;
    background: #ffffff;
    transition: all 0.4s ease;
    transform: translateY(-50%);
}

.approach-service-item:hover {
    transform: translateX(20px);
}

.approach-service-item:hover::before {
    height: 100%;
}

.approach-service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.approach-service-item h4 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.approach-service-item p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

/* How We Help Section - Light Version */
.how-we-help-section {
    background: #ffffff;
    padding: 120px 40px;
    position: relative;
}

.how-we-help-section .container {
    max-width: 1400px;
}

.how-we-help-header {
    max-width: 100%;
    margin-bottom: 60px;
}

.how-we-help-section .approach-eyebrow {
    color: #3b82f6;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.how-we-help-section h2 {
    color: #0a1128;
    font-size: 52px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.how-we-help-header p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

.how-we-help-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    padding-left: 40px;
    padding-right: 40px;
}

.how-we-help-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.how-we-help-intro {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 48px 0;
    font-weight: 450;
}

.how-we-help-section .approach-service-item {
    border-bottom: 1px solid #e2e8f0;
    text-decoration: none;
    display: block;
    cursor: pointer;
    padding-bottom: 40px;
    padding-top: 40px;
    padding-left: 0;
    position: relative;
    transition: all 0.3s;
}

.how-we-help-section .approach-service-item:first-of-type {
    padding-top: 0;
}

.how-we-help-section .approach-service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.how-we-help-section .approach-service-item:first-of-type::after {
    bottom: 15px;
}

.how-we-help-section .approach-service-item:last-child::after {
    bottom: -20px;
}

.how-we-help-section .approach-service-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    width: 2px;
    height: 0;
    background: #3b82f6;
    transition: all 0.4s ease;
    transform: translateY(-50%);
}

.how-we-help-section .approach-service-item:hover {
    transform: translateX(20px);
}

.how-we-help-section .approach-service-item:hover::before {
    height: 100%;
}

.how-we-help-section .approach-service-item h4 {
    color: #0a1128;
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.how-we-help-section .approach-service-item p {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.how-we-help-section .approach-service-item::after {
    content: '\2192';
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 18px;
    color: #1e40af;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.how-we-help-section .approach-service-item:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

.how-we-help-image-panel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 600px;
}

.help-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.help-image.active {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-sectors h1 {
        font-size: 52px;
    }

    .approach-two-col {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .how-we-help-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-we-help-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-we-help-header {
        max-width: 100%;
    }

    .how-we-help-section h2 {
        font-size: 42px;
    }

    .how-we-help-section .approach-service-item {
        padding-left: 20px;
    }

    .how-we-help-section .approach-service-item:hover {
        transform: translateX(10px);
    }

    .how-we-help-image-panel {
        display: none;
    }

    .how-we-help-grid {
        grid-template-columns: 1fr;
        padding-left: 0;
        padding-right: 0;
    }

    .section-header-center h2,
    .approach-col-left h2 {
        font-size: 42px;
    }

    .expertise-cards-grid,
    .expertise-cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .why-cards-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Add more padding to sections on mobile */
    section {
        padding: 60px 0;
    }

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    /* Increase padding by 20% for colored backdrop sections */
    .why-section-alt,
    .approach-dark-section,
    .section-medium,
    .values-light-section,
    .sectors-expertise {
        padding: 72px 0;
    }

    /* Add more padding to colored sections with cards on mobile */
    .why-section-alt .container,
    .approach-dark-section .container,
    .section-medium .container,
    .values-light-section .container,
    .sectors-expertise .container {
        padding-left: 32px;
        padding-right: 32px;
    }

    .why-feature-card {
        padding: 40px 24px;
    }

    .value-proof-card {
        padding: 32px 20px;
    }

    .expertise-hover-card {
        padding: 32px 20px;
    }

    .approach-service-item {
        padding: 24px 20px;
    }

    /* About page mobile adjustments */
    /* Hide image from What Sets Us Apart section */
    .about-story-visual {
        display: none;
    }

    /* Make story text full width on mobile */
    .about-story-grid {
        grid-template-columns: 1fr;
    }

    /* Center stats on mobile */
    .stats-row {
        justify-content: center;
        gap: 48px 32px;
        flex-wrap: wrap;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-item-modern {
        flex: 0 0 auto;
        width: 45%;
        max-width: 200px;
    }

    /* Stack values vertically on mobile for better readability */
    .values-proof-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    /* Services page mobile adjustments */
    /* Shorter underline for section headers on mobile */
    .sectors-expertise .section-header-center h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: #3b82f6;
        margin: 16px auto 0;
    }

    /* Hide icons in panel content on mobile, but keep them in tabs */
    .tab-panel-icon {
        display: none;
    }

    /* Hide service images on mobile */
    .service-tab-images {
        display: none;
    }

    /* Make service tabs smaller and in one row on mobile - icons only */
    .service-tabs {
        flex-direction: row !important;
        gap: 12px;
        border-bottom: 1px solid #e2e8f0;
        justify-content: center;
    }

    .service-tab {
        border-bottom: 2px solid transparent !important;
        border-left: none !important;
        padding: 12px;
        font-size: 20px;
        background: transparent !important;
        min-width: auto;
    }

    /* Hide tab text on mobile, show only icons */
    .service-tab span {
        display: none;
    }

    .service-tab i {
        margin: 0;
    }

    .service-tab.active {
        border-bottom-color: #3b82f6 !important;
        border-left-color: transparent !important;
        color: #3b82f6;
    }

    /* Make tab panels full width on mobile */
    .service-tab-panels {
        flex: 1;
        border-right: none;
    }

    /* Remove extra spacing from service panels */
    .service-tab-content-wrapper {
        min-height: auto !important;
    }

    .service-tab-panel {
        padding-bottom: 0;
    }

    .tab-panel-content {
        padding-bottom: 24px;
    }

    .tab-panel-header {
        margin-bottom: 16px;
    }

    .services-simple-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Service Tabs Responsive */
    .service-tabs {
        flex-direction: column;
        gap: 12px;
        border-bottom: none;
    }

    .service-tab {
        border-bottom: none;
        border-left: 3px solid transparent;
        padding: 16px 24px;
        justify-content: flex-start;
    }

    .service-tab.active {
        border-left-color: #3b82f6;
        border-bottom-color: transparent;
        background: #f8fafc;
    }

    .service-tab-content-wrapper {
        flex-direction: column;
    }

    .service-tab-panels {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .service-tab-images {
        min-height: 400px;
        order: -1;
    }

    .tab-panel-content {
        padding: 32px 24px;
    }

    .tab-panel-header {
        flex-direction: column;
        text-align: center;
    }

    .tab-panel-icon {
        margin: 0 auto;
    }

    .tab-panel-features {
        grid-template-columns: 1fr;
    }

    .leadership-modern-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px;
    }

    .team-modern-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px;
    }

    .experience-modern-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .values-modern-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .values-visual-panel {
        min-height: 400px;
    }
}

/* Removed duplicate 870px breakpoint - old mobile menu code */

@media (max-width: 1214px) {
    /* Scale down logo as screen gets narrower to make room for desktop menu */
    .navbar-overlay .logo img {
        height: clamp(36px, 3.5vw, 48px);
    }
}

@media (max-width: 1097px) {
    /* Shrink menu font and spacing to make room */
    .nav-menu {
        gap: clamp(16px, 2vw, 32px);
    }

    .nav-menu a {
        font-size: clamp(13px, 1.3vw, 15px);
        padding: 8px clamp(8px, 1.2vw, 16px);
    }
}

@media (max-width: 900px) {
    /* Mobile menu appears - reset logo to standard mobile size */
    .navbar-overlay .logo img {
        height: 40px;
    }

    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
    }

    .mobile-menu-toggle span {
        width: 20px;
    }

    .hero-contact-full {
        min-height: auto;
        padding: 120px 20px 60px;
    }

    .contact-hero-tagline {
        font-size: 16px;
    }

    .contact-hero-header h1 {
        font-size: 36px;
    }

    .contact-hero-form {
        padding: 32px 24px;
    }

    .form-row-inline {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .hero-sectors {
        padding: 120px 20px 50px;
        min-height: 75vh;
        background-attachment: scroll;
    }

    .hero-sectors h1 {
        font-size: 48px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-sectors h2 {
        font-size: 1rem !important;
    }

    .hero-label {
        font-size: 11px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-sectors .hero-content {
        max-width: 100%;
        padding: 40px 24px;
    }

    /* Fix background image positioning on mobile */
    .hero.hero-image {
        background-attachment: scroll;
        min-height: 70vh;
        height: auto;
    }

    .hero.hero-image .hero-content {
        max-width: 100%;
        margin: 0;
        padding: 40px 24px;
    }

    .sectors-expertise,
    .why-section-alt,
    .section-medium,
    .approach-dark-section {
        padding: 30px 20px;
    }

    .section-header-center h2 {
        font-size: 42px;
    }

    .section-header-center p {
        font-size: 16px;
    }

    /* Mobile expertise cards - clean, simple card design */
    .expertise-hover-card {
        height: auto;
        min-height: auto;
        box-shadow: 0 2px 10px rgba(0,0,0,0.06);
        background: #fff;
        padding: 0;
        display: flex;
        flex-direction: column;
        border: 1px solid var(--border);
        border-radius: 16px;
        overflow: visible;
        position: relative;
    }

    .expertise-hover-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    /* Hide the background image on mobile */
    .expertise-hover-card .card-bg-image {
        display: none;
    }

    /* Hide the default overlay (just title) */
    .card-overlay-default {
        display: none;
    }

    /* Show hover content as main content with clean styling */
    .card-overlay-hover {
        opacity: 1;
        position: relative;
        background: #fff;
        padding: 32px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .card-overlay-hover h3 {
        font-size: 20px;
        font-weight: 600;
        color: var(--gray-900);
        margin-bottom: 12px;
        margin-top: 0;
    }

    .card-overlay-hover p {
        font-size: 15px;
        line-height: 1.6;
        color: var(--gray-600);
        margin: 0;
        flex-grow: 1;
    }

    /* Icon at the top of each card */
    .card-overlay-hover::before {
        content: '';
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        border-radius: 10px;
        margin-bottom: 20px;
        display: block;
        flex-shrink: 0;
    }

    /* Style the arrow as a simple indicator */
    .card-overlay-hover .card-arrow {
        position: static;
        margin-top: 16px;
        width: auto;
        height: auto;
        background: none;
        color: #3b82f6;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        font-weight: 600;
    }

    /* Sectors page - keep dark overlay look on mobile */
    .sectors-expertise .expertise-hover-card {
        height: 300px;
        min-height: 300px;
        overflow: hidden;
        background: transparent;
        border: none;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .sectors-expertise .expertise-hover-card .card-bg-image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .sectors-expertise .card-overlay-default {
        display: none;
    }

    .sectors-expertise .card-overlay-hover {
        position: absolute;
        background: rgba(10, 17, 40, 0.96);
        opacity: 1;
        padding: 32px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .sectors-expertise .card-overlay-hover::before {
        display: none;
    }

    .sectors-expertise .card-overlay-hover h3 {
        color: #fff;
        font-size: 22px;
        font-weight: 400;
        margin-bottom: 16px;
    }

    .sectors-expertise .card-overlay-hover p {
        color: rgba(255,255,255,0.9);
        font-size: 15px;
        line-height: 1.6;
    }

    /* Contact cards stacked */
    .contact-info-modern {
        gap: 20px;
    }

    .contact-method-card {
        padding: 24px;
    }

    .contact-form-modern {
        padding: 32px 24px;
    }

    /* Hero stats stacked on small screens */
    .hero-stats-inline {
        gap: 30px;
    }

    /* Team avatars smaller on mobile */
    .leader-avatar {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }

    .team-avatar-small {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    /* Smaller padding for cards */
    .why-feature-card,
    .value-modern-card,
    .leader-modern-card,
    .team-modern-card {
        padding: 24px;
    }

    /* Adjust case study logo for mobile */
    .case-study-logo {
        max-height: 45px;
        max-width: 160px;
        margin-bottom: 24px;
    }
}

/* ========================================
   Additional JLA-Inspired Components
   ======================================== */

/* Hero Stats Inline */
.hero-stats-inline {
    display: flex;
    gap: 80px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-num {
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -1px;
}

.stat-lbl {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Features List (for hover cards with dark backgrounds) */
.card-overlay-hover .service-features-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.card-overlay-hover .service-features-list li {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.card-overlay-hover .service-features-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
}

/* About Story Grid */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.about-story-text h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #0a1128;
}

.about-story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.story-link {
    color: #0a1128;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.story-link:hover {
    color: #3b82f6;
}

.about-story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-story-visual {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
}

.tower-svg {
    width: 100%;
    height: 100%;
}

.tower-line {
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.5));
}

.tower-center-line {
    stroke-width: 2;
}

.tower-beam {
    stroke-width: 2;
    fill: none;
    opacity: 1;
}

.tower-brace {
    stroke-width: 2;
    fill: none;
    opacity: 0.7;
}

.tower-top-point {
    filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.9));
}

.main-point {
    fill: #4a90e2;
}

.left-point {
    fill: #50c9ce;
    filter: drop-shadow(0 0 15px rgba(80, 201, 206, 0.9));
}

.right-point {
    fill: #7db9e8;
    filter: drop-shadow(0 0 15px rgba(125, 185, 232, 0.9));
}

/* Stroke drawing animation */
.draw-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out forwards;
    animation-play-state: paused;
}

/* Main tower draws first */
.main-tower .draw-line {
    animation-delay: 0.2s;
}

/* Side towers draw after main tower */
.side-draw {
    animation-delay: 1.2s;
}

/* Top points appear after lines are drawn */
.main-point {
    opacity: 0;
    animation: fadeIn 0.5s ease-out 1.4s forwards;
    animation-play-state: paused;
}

.side-point {
    opacity: 0;
    animation: fadeIn 0.5s ease-out 2.0s forwards;
    animation-play-state: paused;
}

/* Signal arcs animate after towers are complete */
.signal-arc {
    fill: none;
    stroke-width: 2.5;
    opacity: 0;
}

/* Main tower signals */
.main-arc-1 {
    stroke: #4a90e2;
    animation: signal-pulse-svg 1.5s infinite ease-out;
    animation-delay: 0s;
    animation-play-state: paused;
}

.main-arc-2 {
    stroke: #4a90e2;
    animation: signal-pulse-svg 1.5s infinite ease-out;
    animation-delay: 0.5s;
    animation-play-state: paused;
}

.main-arc-3 {
    stroke: #4a90e2;
    animation: signal-pulse-svg 1.5s infinite ease-out;
    animation-delay: 1s;
    animation-play-state: paused;
}

/* Left tower signals */
.left-arc-1 {
    stroke: #50c9ce;
    animation: signal-pulse-svg 1.5s infinite ease-out;
    animation-delay: 0.2s;
    animation-play-state: paused;
}

.left-arc-2 {
    stroke: #50c9ce;
    animation: signal-pulse-svg 1.5s infinite ease-out;
    animation-delay: 0.7s;
    animation-play-state: paused;
}

.left-arc-3 {
    stroke: #50c9ce;
    animation: signal-pulse-svg 1.5s infinite ease-out;
    animation-delay: 1.2s;
    animation-play-state: paused;
}

/* Right tower signals */
.right-arc-1 {
    stroke: #7db9e8;
    animation: signal-pulse-svg 1.5s infinite ease-out;
    animation-delay: 0.3s;
    animation-play-state: paused;
}

.right-arc-2 {
    stroke: #7db9e8;
    animation: signal-pulse-svg 1.5s infinite ease-out;
    animation-delay: 0.8s;
    animation-play-state: paused;
}

.right-arc-3 {
    stroke: #7db9e8;
    animation: signal-pulse-svg 1.5s infinite ease-out;
    animation-delay: 1.3s;
    animation-play-state: paused;
}

/* Play animations when tower is visible */
.tower-animate .draw-line,
.tower-animate .main-point,
.tower-animate .side-point,
.tower-animate .main-arc-1,
.tower-animate .main-arc-2,
.tower-animate .main-arc-3,
.tower-animate .left-arc-1,
.tower-animate .left-arc-2,
.tower-animate .left-arc-3,
.tower-animate .right-arc-1,
.tower-animate .right-arc-2,
.tower-animate .right-arc-3 {
    animation-play-state: running;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes signal-pulse-svg {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
    }
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 0;
    border-top: 1px solid #e3e8ed;
}

.stat-item-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number-modern {
    font-size: 56px;
    font-weight: 300;
    color: #0a1128;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.stat-label-modern {
    font-size: 15px;
    color: #666;
}

/* Values Split Panel Grid */
.values-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

/* Left panel - Visual element */
.values-visual-panel {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #0A2540 0%, #1e3a5f 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Diamond SVG */
.values-diamond-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Diamond lines with draw animation */
.diamond-line {
    stroke-linecap: round;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawDiamondLine 1.5s ease-out forwards;
    animation-play-state: paused;
}

.diamond-line-1 {
    animation-delay: 0s;
}

.diamond-line-2 {
    animation-delay: 0.3s;
}

.diamond-line-3 {
    animation-delay: 0.6s;
}

.diamond-line-4 {
    animation-delay: 0.9s;
}

/* Diamond icons with fade-in animation */
.diamond-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #ffffff;
    font-size: 48px;
    transition: all 0.3s ease;
}

.diamond-icon-group {
    opacity: 0;
    animation: fadeInIcon 0.6s ease-out forwards;
    animation-play-state: paused;
}

.diamond-icon-animate-1 {
    animation-delay: 1.2s;
}

.diamond-icon-animate-2 {
    animation-delay: 1.5s;
}

.diamond-icon-animate-3 {
    animation-delay: 1.8s;
}

.diamond-icon-animate-4 {
    animation-delay: 2.1s;
}

.diamond-icon-group:hover .diamond-icon {
    transform: scale(1.15);
    color: #60a5fa;
}

/* Center text with fade-in animation */
.diamond-center-text-small {
    font-size: 24px;
    font-weight: 300;
    fill: #94a3b8;
    letter-spacing: 2px;
}

.diamond-center-text-large {
    font-size: 42px;
    font-weight: 600;
    fill: #ffffff;
    letter-spacing: -1px;
}

.diamond-text-animate {
    opacity: 0;
    animation: fadeInIcon 0.6s ease-out 2.4s forwards;
    animation-play-state: paused;
}

/* Play animations when diamond is visible */
.values-diamond-svg.diamond-animate .diamond-line,
.values-diamond-svg.diamond-animate .diamond-icon-group,
.values-diamond-svg.diamond-animate .diamond-text-animate {
    animation-play-state: running;
}

/* Keyframe animations */
@keyframes drawDiamondLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInIcon {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Right panel - Stacked values */
.values-content-panel {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-modern-card {
    background: transparent;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 24px;
}

.value-modern-card:hover {
    border-left-color: #3b82f6;
    padding-left: 32px;
}

.value-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.value-modern-card .feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.value-modern-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #0a1128;
    letter-spacing: -0.5px;
}

.value-modern-card p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Values Proof Grid - New Layout */
.values-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-proof-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-proof-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
    transform: translateY(-4px);
}

.value-proof-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.value-proof-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0a1128;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.value-proof-card .value-description {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.value-proof-point {
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}


/* Leadership Modern Grid */
@media (min-width: 1025px) {
    .leadership-modern-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
        margin-bottom: 80px;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Leadership Accordion */
.leader-accordion-item {
    background: transparent;
    transition: all 0.3s;
}

.leader-accordion-header {
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
}

.leader-accordion-header:hover {
    transform: translateY(-2px);
}

.title-bio-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.read-bio-toggle {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s;
}

.leader-accordion-header:hover .read-bio-toggle {
    color: #2563eb;
    transform: translateX(4px);
}

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

.leader-accordion-item.active .leader-accordion-content {
    padding-top: 20px;
}

.leader-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
}

.leader-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    object-fit: cover;
    margin-bottom: 20px;
    transition: transform 0.3s;
    display: block;
}

.leader-accordion-header:hover .leader-photo {
    transform: scale(1.02);
}

.leader-accordion-header h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #0a1128;
}

.leader-role {
    font-size: 15px;
    color: #3b82f6;
    font-weight: 500;
}

.accordion-bio {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    padding: 20px 0;
}

/* Team Modern Grid */
.team-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
}

/* Team Accordion */
.team-accordion-item {
    background: transparent;
    transition: all 0.3s;
}

.team-accordion-header {
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
}

.team-accordion-header:hover {
    transform: translateY(-2px);
}

.team-accordion-header:hover .read-bio-toggle {
    color: #2563eb;
    transform: translateX(4px);
}

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

.team-accordion-item.active .team-accordion-content {
    padding-top: 20px;
}

/* Team Card with Offset Overlay */
.team-card {
    cursor: pointer;
    position: relative;
    padding-bottom: 60px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-card-image {
    position: relative;
    aspect-ratio: 3 / 4;
    width: 100%;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card-overlay {
    position: absolute;
    bottom: -40px;
    right: -20px;
    left: 15%;
    background: #0A2540;
    padding: 16px 20px;
    transition: background 0.3s ease;
    z-index: 10;
}

.team-card:hover .team-card-overlay {
    background: #3b82f6;
}

.team-card-overlay i {
    display: none;
}

.team-card-overlay h3 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-card-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    margin: 0;
    line-height: 1.3;
    text-align: left;
}

/* ==================== TEAM IMAGE QUALITY FIX ==================== */
/* TODO: Remove this class when high-quality images are available */
/* Scales down image containers by 20% on each side (80% total width) */
.temp-image-scale {
    max-width: 70% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Team Modal */
.team-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.team-modal-content {
    background-color: #ffffff;
    margin: auto;
    width: 70vw;
    height: 70vh;
    position: relative;
    animation: modalFadeIn 0.3s ease;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.team-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: none;
}

.team-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

.team-modal-body {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 60px;
    padding: 60px;
    height: 100%;
    overflow: hidden;
}

.team-modal-image-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

.team-modal-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.team-modal-overlay {
    position: relative;
    background: #0A2540;
    padding: 20px 24px;
    z-index: 10;
    text-align: center;
}

.team-modal-overlay h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.team-modal-overlay p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    margin: 0;
    line-height: 1.3;
}

.team-modal-info {
    padding-right: 40px;
    overflow-y: auto;
    max-height: 100%;
    position: relative;
}

.team-modal-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 3px;
    background: var(--logo-blue);
}

.modal-bio {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    padding-top: 30px;
}

.modal-bio p {
    margin-bottom: 16px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .team-modal-content {
        width: 90vw;
        height: 80vh;
        margin: auto;
        top: 50%;
        transform: translateY(-50%);
        overflow: hidden;
    }

    .team-modal-body {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        gap: 24px;
        padding: 60px 32px 40px 32px;
        height: 100%;
        align-items: start;
        overflow-y: auto;
    }

    .team-modal-image-container {
        max-width: 300px;
        margin: 0 auto;
        order: -1;
    }

    .team-modal-overlay {
        padding: 16px 20px;
    }

    .team-modal-info::before {
        width: 80px;
    }

    .team-modal-overlay h3 {
        font-size: 16px;
    }

    .team-modal-overlay p {
        font-size: 12px;
    }

    .team-modal-info {
        padding-right: 0;
        overflow-y: visible;
        max-height: none;
    }

    .team-modal-close {
        right: 15px;
        top: 15px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    /* Adjust team card overlay on mobile */
    .team-card {
        padding-bottom: 50px;
    }

    .team-card-overlay {
        bottom: -30px;
        right: -10px;
        left: 15%;
        padding: 16px 20px;
    }

    .team-card-overlay h3 {
        font-size: 13px;
    }

    .team-card-overlay p {
        font-size: 11px;
    }
}

.team-avatar-small {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.team-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    object-fit: cover;
    margin: 0 0 16px 0;
    display: block;
    transition: transform 0.3s;
}

.team-accordion-header:hover .team-photo {
    transform: scale(1.02);
}

.team-accordion-header h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #0a1128;
}

.team-role-small {
    font-size: 14px;
    color: #3b82f6;
    font-weight: 500;
}

/* Experience Modern Grid */
.experience-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.experience-modern-cat h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #ffffff;
    text-align: center;
}

.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.company-tags span {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
}

.company-tags span:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Contact Modern Grid */
.contact-modern-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method-card {
    background: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.contact-method-card:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-method-card h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #0a1128;
}

.contact-method-card p {
    font-size: 15px;
    color: #666;
}

/* Contact Form Modern */
.contact-form-modern {
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-modern label {
    font-size: 14px;
    font-weight: 500;
    color: #0a1128;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    padding: 14px 16px;
    border: 1px solid #e3e8ed;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    min-height: 48px;
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.btn-modern-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    min-height: 52px;
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .about-story-grid,
    .contact-modern-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats-inline {
        gap: 40px;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .stat-num {
        font-size: 36px;
    }

    .stat-number-modern {
        font-size: 42px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .experience-modern-grid,
    .values-modern-grid,
    .expertise-cards-grid,
    .expertise-cards-grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Center experience section content on mobile */
    .experience-modern-cat {
        text-align: center;
    }

    .experience-modern-cat h3 {
        text-align: center;
    }

    .company-tags {
        justify-content: center;
    }

    /* Keep team grid at 2 columns on mobile */
    .team-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .values-modern-grid {
        gap: 40px;
    }

    .values-visual-panel {
        min-height: 300px;
    }

    .values-proof-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .value-proof-card {
        padding: 32px 24px;
    }

    .values-content-panel {
        gap: 24px;
    }

    .value-modern-card h3 {
        font-size: 20px;
    }

    .service-simple-card {
        padding: 32px;
    }

    .service-simple-card h3 {
        font-size: 22px;
    }

    .team-modern-card,
    .leader-modern-card,
    .value-modern-card {
        padding: 32px;
    }
}

/* Extra small screens */
@media (max-width: 560px) {
    /* Reduce overall page padding */
    .container {
        padding: 0 16px;
    }

    /* Hero sections */
    .hero-sectors {
        padding: 100px 16px 40px;
        min-height: 70vh;
    }

    .hero-sectors h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
    }

    .hero-content {
        padding: 40px 20px;
    }

    /* Section padding - reduce on small screens */
    .sectors-expertise,
    .why-section-alt,
    .section-medium,
    .approach-dark-section,
    .services,
    .about,
    .leadership,
    .team {
        padding: 20px 0;
    }

    /* Section headers */
    .section-header-center {
        margin-bottom: 40px;
    }

    .section-header-center h2 {
        font-size: 42px;
        margin-bottom: 16px;
    }

    .section-header-center p {
        font-size: 15px;
    }

    .stat-number-modern {
        font-size: 32px;
    }

    /* How We Help section heading */
    .how-we-help-section h2 {
        font-size: 32px;
    }

    /* Buttons */
    .btn-modern-primary {
        padding: 14px 32px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    /* Forms and contact */
    .contact-form-modern,
    .contact-method-card {
        padding: 20px;
    }

    /* Cards - keep clean design on very small screens */
    .expertise-hover-card {
        min-height: auto;
        padding: 0;
    }

    .card-overlay-hover {
        padding: 24px;
    }

    .card-overlay-hover::before {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .card-overlay-hover h3 {
        font-size: 18px;
    }

    .card-overlay-hover p {
        font-size: 14px;
    }

    .why-feature-card,
    .service-simple-card,
    .leader-modern-card,
    .team-modern-card {
        padding: 24px;
    }

    /* Adjust case study logo for small screens */
    .case-study-logo {
        max-height: 50px;
        max-width: 180px;
    }

    /* Lists */
    .service-features-list {
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 32px 0 20px;
    }

    /* Hero label */
    .hero-label {
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    /* Ensure all images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Fix card overflow issues */
    .why-feature-card h3,
    .service-simple-card h3,
    .leader-modern-card h3,
    .team-modern-card h3,
    .value-modern-card h3 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Fix approach section on mobile */
    .approach-col-left h2,
    .approach-service-item h4 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Make client logos stack nicely */
    .client-logo {
        width: 100%;
    }

    /* Ensure proper spacing for form elements */
    .form-row {
        gap: 16px;
    }

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

/* ========================================
   LEVEL 3 PREMIUM ANIMATIONS
   ======================================== */

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-active {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframe animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(37, 99, 235, 0.5);
    }
}

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

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

/* Enhanced card hover effects */
.service-simple-card,
.expertise-hover-card,
.why-feature-card,
.value-modern-card {
    transform-style: preserve-3d;
    will-change: transform;
}

/* Smooth transitions for all interactive elements */
.service-simple-card,
.expertise-hover-card,
.why-feature-card,
.team-modern-card,
.leader-modern-card,
.value-modern-card,
.client-logo {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Progressive image loading effect */
img {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.image-loaded {
    animation: scaleIn 0.6s ease;
}

/* Button transitions */
.btn,
button[type="submit"] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.btn:hover,
button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

/* Hero content animation */
.hero-content {
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-content .hero-label {
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-content h1 {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-content .hero-subtitle {
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-content .hero-stats-inline {
    animation: fadeInUp 1s ease 0.6s both;
}

/* Stat animation */
.hero-stat-item,
.stat-item-modern {
    transition: transform 0.3s ease;
}

.hero-stat-item:hover,
.stat-item-modern:hover {
    transform: scale(1.05);
}

/* Section headers animation */
.section-header-center {
    animation: fadeInUp 1s ease 0.3s both;
}

/* Staggered grid animations */
.services-simple-grid > *,
.expertise-cards-grid > *,
.team-modern-grid > *,
.why-cards-grid > * {
    animation: fadeInUp 0.8s ease both;
}

/* Icon animations */
.service-icon,
.feature-icon {
    transition: transform 0.3s ease;
}

.service-simple-card:hover .service-icon,
.why-feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Parallax sections - DISABLED (was causing scroll glitch) */
/* .hero-sectors {
    position: relative;
    will-change: transform;
} */

/* Animated background gradients */
.why-section-alt {
    animation: gradientShift 15s ease infinite;
}

/* Enhanced nav link transitions */
.nav-menu a {
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
    left: 0;
}

/* Card shadow depth on scroll */
@media (prefers-reduced-motion: no-preference) {
    .service-simple-card,
    .expertise-hover-card,
    .why-feature-card {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: box-shadow 0.4s ease, transform 0.4s ease;
    }

    .service-simple-card:hover,
    .expertise-hover-card:hover,
    .why-feature-card:hover {
        box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* Loading shimmer effect */
.shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Floating animation for icons */
.floating {
    animation: floatAnimation 3s ease-in-out infinite;
}

/* Pulse animation for CTAs */
.pulse {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Enhanced focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.5);
    outline-offset: 2px;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Selection styling */
::selection {
    background: rgba(37, 99, 235, 0.2);
    color: inherit;
}

::-moz-selection {
    background: rgba(37, 99, 235, 0.2);
    color: inherit;
}

/* Accordion cursor */
.leader-accordion-header,
.team-accordion-header {
    cursor: pointer;
}
