
        /* Hero Navigation Header - Positioned in Hero Section */
        .hero-nav-header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, rgba(20, 57, 77, 0.9) 0%, rgba(42, 74, 93, 0.9) 100%);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 50;
        }

        .hero-nav-header .header {
            transition: none;
        }

        /* Remove body padding since navigation is now in hero */
        body {
            padding-top: 0;
        }

        /* Image Stability - Prevent Layout Shift */
        img {
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            object-position: center;
            transition: opacity 0.3s ease;
        }

        /* Ensure images don't cause layout shift */
        img:not([width]):not([height]) {
            aspect-ratio: 16/9;
        }

        /* Hero section images */
        .hero-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Service card images */
        .solution-image {
            aspect-ratio: 4/3;
            min-height: 200px;
        }

        /* Team carousel images */
        .carousel-card img {
            aspect-ratio: 1/1;
            min-height: 250px;
        }

        /* Hero Images - Fixed and Optimized */
        .hero-section {
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 100vh;
            width: 100%;
            position: relative;
            overflow: hidden;
        }
        
        /* Ensure hero background images are always visible */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            background-attachment: inherit;
            background-size: cover;
            background-position: center;
            z-index: 0;
        }
        
        /* Ensure hero content is above background */
        .hero-content {
            position: relative;
            z-index: 10;
        }

        /* Expertise Section */
        .expertise-section {
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
        }
        
        /* Ensure expertise background is always visible */
        .expertise-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            background-attachment: inherit;
            background-size: cover;
            background-position: center;
            z-index: 0;
        }
        
        /* Ensure expertise content is above background */
        .expertise-content {
            position: relative;
            z-index: 10;
        }

        /* Mobile hero section adjustments */
        @media (max-width: 767px) {
            .hero-section,
            .expertise-section {
                min-height: 100vh;
                background-attachment: scroll !important; /* Changed from fixed for mobile performance */
                background-position: center center;
                background-size: cover;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            /* Ensure hero background images resize properly */
            .hero-section,
            .hero-section::before {
                background-size: cover !important;
                background-attachment: scroll !important;
            }
            
            /* Optimize hero sections for mobile performance */
            .hero-section {
                will-change: auto;
                transform: translateZ(0);
                -webkit-transform: translateZ(0);
            }

            /* Adjust hero content for mobile */
            .hero-content {
                padding: 1rem;
                width: 100%;
            }

            /* Hero text sizing for mobile */
            .hero-section h2,
            .hero-section .hero-title {
                font-size: 1.75rem !important;
                line-height: 1.3 !important;
                margin-bottom: 1rem !important;
            }

            .hero-section p,
            .hero-section .hero-description {
                font-size: 1rem !important;
                line-height: 1.5 !important;
                margin-bottom: 1.5rem !important;
            }

            .hero-section .cta-button {
                font-size: 0.875rem !important;
                padding: 0.75rem 1.5rem !important;
            }
        }

        /* Tablet adjustments */
        @media (min-width: 768px) and (max-width: 1023px) {
            .hero-section h2,
            .hero-section .hero-title {
                font-size: 2.5rem !important;
                line-height: 1.2 !important;
            }

            .hero-section p,
            .hero-section .hero-description {
                font-size: 1.25rem !important;
                line-height: 1.6 !important;
            }
            
            /* Ensure images are responsive */
            img {
                max-width: 100%;
                height: auto;
            }
        }
        
        /* Enhanced mobile responsiveness */
        @media (max-width: 640px) {
            /* Ensure all images scale properly */
            img {
                max-width: 100%;
                height: auto;
                display: block;
            }
            
            /* Hero section mobile optimization */
            .hero-section,
            .hero-section::before {
                background-attachment: scroll !important;
                background-size: cover !important;
                background-position: center !important;
            }
            
            /* Ensure hero images don't cause layout issues on mobile */
            .hero-section {
                min-height: 100vh;
                height: auto;
            }
            
            /* Service cards responsive */
            .solution-card {
                max-width: 100%;
            }
            
            .solution-image {
                width: 100%;
                height: auto;
                min-height: 180px;
            }
            
            /* Team carousel mobile */
            .carousel-card {
                min-width: 140px;
                height: 180px;
            }
            
            /* Contact form mobile */
            .contact-form-section {
                padding: 1rem !important;
            }
            
            /* Navigation mobile */
            .mobile-nav {
                width: 280px;
                max-width: 85vw;
            }
        }

        /* Service Images */
        .solution-image,
        .service-overview-image,
        .carousel-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease;
        }

        /* Prevent image loading layout shift */
        .solution-image-container,
        .service-overview-image-container,
        .carousel-card {
            overflow: hidden;
            position: relative;
        }

        /* Loading placeholder for images */
        img[loading="lazy"] {
            background-color: #f3f4f6;
            background-image: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }

        /* Smooth Scrolling for Navigation */
        html {
            scroll-behavior: smooth;
        }

        /* Navigation Link Hover Effects */
        .nav-menu a,
        .mobile-nav-link {
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover,
        .mobile-nav-link:hover {
            transform: translateY(-1px);
        }

        /* Ensure proper z-index for navigation dropdowns */
        .nav-menu .group:hover .absolute {
            z-index: 1000;
        }

        /* Mobile Navigation Dropdown */
        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-dropdown-menu.show {
            max-height: 200px;
        }

        .dropdown-arrow {
            transition: transform 0.3s ease;
        }

        .mobile-dropdown.open .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Mobile Dropdown Active State */
        .mobile-dropdown.active .mobile-dropdown-menu {
            max-height: 200px;
        }

        .mobile-dropdown.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Ensure mobile dropdown menu is visible when active */
        .mobile-dropdown.active .mobile-dropdown-menu.hidden {
            display: block !important;
        }

        /* Mobile Navigation Styles */
        .mobile-nav {
            position: fixed;
            right: -100%;
            top: 0;
            width: 280px;
            max-width: 85vw;
            height: 100vh;
            background: linear-gradient(135deg, #14394d 0%, #2a4a5d 100%);
            z-index: 9999;
            transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            pointer-events: auto;
        }

        .mobile-nav.open {
            right: 0;
            transform: translateX(0);
        }

        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            pointer-events: none;
        }

        .mobile-nav-overlay.show {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            transition: transform 0.3s ease;
            background: none;
            border: none;
            outline: none;
            z-index: 1001;
            position: relative;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        @media (max-width: 767px) {
            .hamburger {
                display: flex !important;
            }
        }

        @media (min-width: 768px) {
            .hamburger {
                display: none !important;
            }
        }

        .hamburger:focus {
            outline: 2px solid rgba(255, 255, 255, 0.5);
            outline-offset: 2px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 2px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile menu body lock */
        body.mobile-menu-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }

        /* Dropdown Menu Styles */
        .nav-menu .group:hover .group-hover\:opacity-100 {
            opacity: 1;
        }

        .nav-menu .group:hover .group-hover\:visible {
            visibility: visible;
        }

        /* Mobile Menu Improvements */
        .mobile-nav {
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior: contain;
        }

        .mobile-nav::-webkit-scrollbar {
            width: 4px;
        }

        .mobile-nav::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-nav::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
        }

        /* Mobile Menu Link Improvements */
        .mobile-nav-link {
            display: block;
            padding: 12px 0;
            text-decoration: none;
            transition: all 0.3s ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .mobile-nav-link:active {
            background-color: rgba(255, 255, 255, 0.1);
            transform: scale(0.98);
        }

        /* Mobile Dropdown Styles */
        .mobile-dropdown-toggle {
            background: none;
            border: none;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .mobile-dropdown-toggle:active {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .dropdown-arrow {
            transition: transform 0.3s ease;
            font-size: 12px;
        }

        .mobile-dropdown.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, opacity 0.3s ease;
            opacity: 0;
        }

        .mobile-dropdown.active .mobile-dropdown-menu {
            max-height: 300px;
            opacity: 1;
        }

        .mobile-dropdown-menu.hidden {
            display: none;
        }

        .mobile-dropdown.active .mobile-dropdown-menu.hidden {
            display: block;
        }

        .mobile-dropdown-menu li {
            border-left: 2px solid rgba(255, 255, 255, 0.2);
            margin-left: 8px;
        }

        /* Prevent body scroll when mobile menu is open */
        body.mobile-menu-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }

        /* Improve touch targets for mobile */
        @media (max-width: 768px) {
            .mobile-nav-link,
            .mobile-dropdown-toggle {
                min-height: 44px;
                display: flex;
                align-items: center;
            }
        }

        /* Fix for iOS Safari viewport issues */
        @supports (-webkit-touch-callout: none) {
            .mobile-nav {
                height: -webkit-fill-available;
            }
        }


        /* Bio Section Styles */
        .person-bio {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            border: 1px solid #e9ecef;
        }

        .bio-text {
            font-size: 16px;
            line-height: 1.6;
            min-height: 100px;
        }

        .bio-tab.active {
            background-color: #d4af37 !important;
            color: white !important;
        }

        /* Mobile Carousel Styles */
        @media (max-width: 768px) {
            .carousel-track {
                scroll-snap-type: x mandatory;
            }
            
            .carousel-card {
                scroll-snap-align: center;
            }
        }

        /* Carousel Styles */
        .carousel-card {
            transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s, filter 0.6s;
            will-change: transform, opacity;
        }

        .expertise-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .checkmark {
            width: 16px;
            height: 16px;
            background-color: #cc9955;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 10px;
            font-weight: bold;
        }

        /* Enhanced Responsive Typography */
        @media (max-width: 374px) {
            .hero-title {
                font-size: 1.5rem !important;
                line-height: 1.3 !important;
            }

            .hero-description {
                font-size: 0.875rem !important;
            }
        }

        @media (min-width: 375px) and (max-width: 639px) {
            .hero-title {
                font-size: 1.75rem !important;
                line-height: 1.4 !important;
            }
        }

        /* Leadership Carousel Responsive */
        .team-carousel {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem 0;
        }

        .carousel-track {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 1rem 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
            -webkit-overflow-scrolling: touch;
        }

        .carousel-track::-webkit-scrollbar {
            display: none;
        }

        .carousel-card {
            min-width: 200px;
            height: 250px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
        }

        .carousel-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .carousel-arrow:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-arrow.left {
            left: -20px;
        }

        .carousel-arrow.right {
            right: -20px;
        }

        .carousel-meta {
            text-align: center;
            margin: 1rem 0;
        }

        .person-name {
            font-size: 1.25rem;
            font-weight: bold;
            color: #14394d;
        }

        .person-role {
            color: #586972;
            margin-top: 0.5rem;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .carousel-dot.active {
            background: #cc9955;
        }

        /* Mobile optimizations */
        @media (max-width: 768px) {
            .carousel-arrow {
                display: none;
            }

            .carousel-card {
                min-width: 150px;
                height: 200px;
            }
        }

        /* Form improvements */
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #cc9955;
            box-shadow: 0 0 0 2px rgba(204, 153, 85, 0.2);
        }

        /* Smooth scroll for anchor links */
        html {
            scroll-behavior: smooth;
        }

        /* Section title styling */
        .section-title {
            font-size: 2rem;
            font-weight: bold;
            color: #14394d;
            text-align: center;
            margin-bottom: 3rem;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 2.5rem;
                margin-bottom: 4rem;
            }
        }