
        /* ============================================
           ECLIPSE SOLUTIONS - PREMIUM DESIGN SYSTEM
           ============================================ */
        :root {
            /* Primary Colors */
            --color-navy: #000C33;
            --color-blue: #013F8E;
            --color-blue-light: #EAF6FA;
            
            /* Text Colors */
            --color-text: #2C3E50;
            --color-text-light: #64748B;
            --color-white: #FFFFFF;
            --color-bg: #FAFBFC;
            
            /* Shadows */
            --shadow-sm: 0 2px 8px rgba(0, 12, 51, 0.06);
            --shadow-md: 0 4px 20px rgba(0, 12, 51, 0.08);
            --shadow-lg: 0 8px 30px rgba(0, 12, 51, 0.12);
            --shadow-xl: 0 12px 40px rgba(0, 12, 51, 0.15);
            
            /* Timing */
            --timing-fast: 0.2s;
            --timing-base: 0.3s;
            --timing-slow: 0.5s;
            --easing-smooth: cubic-bezier(0.4, 0, 0.2, 1);
            --easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        /* Dark Mode Color System */
        body.dark-mode {
            --color-navy: #E8F0F7;
            --color-blue: #5B9FD8;
            --color-blue-light: #0F1D2E;
            --color-text: #E8F0F7;
            --color-text-light: #A0B3C5;
            --color-white: #0F1D2E;
            --color-bg: #0A1628;
        }

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

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

        body {
            font-family: 'Gothic A1', sans-serif;
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
            position: relative;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            transition: background 0.4s var(--easing-smooth), color 0.4s var(--easing-smooth);
        }

        /* Add padding to main content instead of body */
        #mainContent {
            padding-top: 70px;
        }

        /* Decorative Background Elements */
        .bg-decoration {
            position: fixed;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            color: #FAFBFC;
            transition: color 0s;
        }

        body.dark-mode .bg-decoration {
            color: #0F1D2E;
        }

        /* Eclipse Shapes - More visible and better positioned */
        /* Background Stars */
        .bg-stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.3;
            transition: opacity 0.6s var(--easing-smooth);
        }

        .bg-stars::before,
        .bg-stars::after {
            content: '✦';
            position: absolute;
            color: var(--color-blue);
            opacity: 0.4;
            animation: starTwinkle 3s ease-in-out infinite;
        }

        .bg-stars::before {
            top: 15%;
            left: 20%;
            font-size: 12px;
        }

        .bg-stars::after {
            bottom: 25%;
            right: 15%;
            font-size: 10px;
            animation-delay: 1s;
        }

        body.dark-mode .bg-stars {
            opacity: 0.5;
        }

        body.dark-mode .bg-stars::before,
        body.dark-mode .bg-stars::after {
            color: white;
        }

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

        /* Ensure content stays above decorations */
        header, nav, .page, footer {
            position: relative;
            z-index: 1;
        }

        /* Navigation */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            background: var(--color-blue-light);
            box-shadow: var(--shadow-sm);
            padding: 0.5rem 0;
            transition: all var(--timing-base) var(--easing-smooth);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            gap: 2rem;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: transform var(--timing-base) var(--easing-smooth);
            position: relative;
            text-decoration: none;
        }

        .logo-section:hover {
            transform: scale(1.02);
        }

        /* Additional smaller stars on logo-section */
        .logo-section::before,
        .logo-section::after {
            content: '✦';
            position: absolute;
            font-size: 7px;
            color: var(--color-blue);
            opacity: 0;
            transition: opacity 0.4s var(--easing-smooth);
            top: -8px;
        }

        .logo-section::before {
            left: 70px;
        }

        .logo-section::after {
            right: 15px;
            font-size: 6px;
            top: -15px;
        }

        .logo-section:hover::before,
        .logo-section:hover::after {
            opacity: 0.6;
            animation: twinkle 2.2s ease-in-out 0.3s infinite;
        }

        /* Mobile: stars appear when active class is added */
        .logo-section.stars-active::before,
        .logo-section.stars-active::after {
            opacity: 0.6;
            animation: twinkle 2.2s ease-in-out 0.3s infinite;
        }

        /* On desktop, disable mobile click behavior */
        @media (min-width: 769px) {
            .logo-section.stars-active::before,
            .logo-section.stars-active::after {
                opacity: 0;
                animation: none;
            }
        }

        body.dark-mode .logo-section::before,
        body.dark-mode .logo-section::after {
            color: white;
        }

        .company-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-navy);
            white-space: nowrap;
            letter-spacing: 0.3px;
            position: relative;
        }

        /* Main stars above company name - only on hover */
        .company-name::before,
        .company-name::after {
            content: '✦';
            position: absolute;
            top: -12px;
            font-size: 10px;
            color: var(--color-blue);
            opacity: 0;
            transition: opacity 0.4s var(--easing-smooth);
        }

        .company-name::before {
            left: 20%;
            top: -14px;
        }

        .company-name::after {
            right: 25%;
            font-size: 8px;
            top: -10px;
        }

        .logo-section:hover .company-name::before,
        .logo-section:hover .company-name::after {
            opacity: 0.7;
            animation: twinkle 2s ease-in-out infinite;
        }

        /* Mobile: stars appear when active class is added */
        .logo-section.stars-active .company-name::before,
        .logo-section.stars-active .company-name::after {
            opacity: 0.7;
            animation: twinkle 2s ease-in-out infinite;
        }

        /* On desktop, disable mobile click behavior */
        @media (min-width: 769px) {
            .logo-section.stars-active .company-name::before,
            .logo-section.stars-active .company-name::after {
                opacity: 0;
                animation: none;
            }
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 0.8; }
        }

        body.dark-mode .company-name::before,
        body.dark-mode .company-name::after {
            color: white;
        }

        .logo-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: transform 0.3s var(--easing-smooth);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            background: rgba(234, 243, 248, 0.9);
            padding: 0.3rem 1rem;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            backdrop-filter: blur(10px);
        }

        .nav-links a {
            text-decoration: none;
            color: var(--color-text);
            font-weight: 600;
            transition: all var(--timing-base) var(--easing-smooth);
            font-size: 1rem;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            position: relative;
            letter-spacing: 0.3px;
        }

        .nav-links a:hover {
            color: var(--color-blue);
            animation: gentleBounce 0.4s var(--easing-bounce);
        }

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

        /* Straight line under full word on hover - ALL nav items */
        .nav-links > li > a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #013F8E;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .nav-links > li > a:hover {
            color: #013F8E;
        }

        .nav-links > li > a:hover::after {
            transform: scaleX(1);
        }

        /* Kill the underline on dropdown items completely */
        .nav-dropdown a::after {
            display: none !important;
            content: none !important;
            background: none !important;
            height: 0 !important;
            width: 0 !important;
        }

        .nav-dropdown a:hover::after {
            display: none !important;
            transform: none !important;
        }

        /* Prevent Insights underline when hovering over the dropdown menu */
        .has-dropdown:hover .nav-dropdown:hover ~ a::after,
        .has-dropdown .nav-dropdown:hover ~ a::after {
            transform: scaleX(0) !important;
        }

        /* Dropdown Navigation - Matches Nav Dock Style */
        .nav-links li {
            position: relative;
        }

        /* Non-clickable nav item (Insights) */
        .nav-links a.non-clickable {
            cursor: default;
        }

        .nav-dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: rgba(234, 243, 248, 0.9);
            min-width: auto;
            width: max-content;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            margin-top: 0.5rem;
            padding: 0.8rem 1.5rem;
            list-style: none;
        }

        .nav-links li:hover .nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .nav-dropdown li {
            margin: 0;
        }

        .nav-dropdown a {
            padding: 0.5rem 1rem !important;
            border-radius: 8px !important;
            font-size: 1rem !important;
            font-weight: 700 !important;
            display: block;
            color: #333 !important;
            transition: all 0.3s;
            position: relative;
        }

        /* Match main nav hover effect - straight line with fade */
        .nav-dropdown a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, transparent 0%, #013F8E 20%, #013F8E 80%, transparent 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .nav-dropdown a:hover {
            color: #013F8E !important;
        }

        .nav-dropdown a:hover::after {
            transform: scaleX(1);
        }

        /* Add underline to Insights using ::before (so no conflict) */
        .has-dropdown > a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, transparent 0%, #013F8E 20%, #013F8E 80%, transparent 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .has-dropdown > a:hover::before {
            transform: scaleX(1);
        }

        /* Keep dropdown open when hovering - no arrow needed */
        .has-dropdown:hover .nav-dropdown {
            display: block;
        }

        /* Smaller Desktop / Large Tablet (1025px - 1280px) */
        @media (max-width: 1280px) and (min-width: 1025px) {
            /* Reduce nav gap to fit Contact Us button */
            .nav-links {
                gap: 1.2rem;
            }

            .nav-links a {
                padding: 0.5rem 0.7rem;
                font-size: 0.95rem;
            }

            /* Ensure Contact Us button stays visible */
            .nav-btn-getstarted {
                padding: 0.7rem 1.5rem;
                font-size: 0.95rem;
                white-space: nowrap;
            }

            /* Slightly thicker underlines for better visibility */
            .nav-links > li:not(.has-dropdown) > a::after {
                height: 3px;
            }
        }

        /* Tablet/Medium Screen styles (769px - 1024px) */
        @media (max-width: 1024px) and (min-width: 769px) {
            /* Make nav underlines more visible on tablet */
            .nav-links > li:not(.has-dropdown) > a::after {
                height: 3px;
                background: linear-gradient(to right, transparent 0%, #013F8E 10%, #013F8E 90%, transparent 100%);
            }

            /* Ensure Contact Us button is always visible and positioned better */
            .nav-btn-getstarted {
                display: inline-block !important;
                padding: 0.7rem 1.5rem;
                font-size: 0.95rem;
                margin-left: -1.5rem;
            }

            /* Adjust nav spacing for medium screens */
            .nav-links {
                gap: 1rem;
            }
        }

        /* Make background stars more subtle on mobile */
        @media (max-width: 768px) {
            .bg-stars-container div {
                font-size: 5px !important;
                opacity: 0.15 !important;
            }
        }

        /* Mobile dropdown styles */
        @media (max-width: 768px) {
            /* Ensure parent li has proper stacking context */
            .nav-links li.has-dropdown {
                position: relative;
                z-index: 10;
            }

            .nav-dropdown {
                display: none;
                position: relative;
                width: 100%;
                padding: 0 !important;
                margin: 0 !important;
                background: transparent !important;
                z-index: 999;
                border: none !important;
                box-shadow: none !important;
            }

            /* Show dropdown when parent has mobile-open class */
            .has-dropdown.mobile-open .nav-dropdown {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                padding-top: 0rem !important;
            }
            
            /* Dropdown li items - match parent nav style */
            .nav-dropdown li {
                padding: 0 !important;
                margin: 0 !important;
                border-bottom: 1px solid #ddd !important;
                list-style: none !important;
                background: transparent !important;
            }

            .nav-dropdown li:last-child {
                border-bottom: none !important;
            }

            /* Dropdown links - clean like other nav items */
            .nav-dropdown li a {
                font-size: 1rem !important;
                padding: 0.8rem 2rem 0.8rem 3rem !important;
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                background: transparent !important;
                border-radius: 0 !important;
                margin: 0 !important;
                border-left: none !important;
                color: #333 !important;
                font-weight: 700 !important;
                border-bottom: none !important;
                position: static !important;
            }

            /* Remove the stupid underline animation - COMPLETELY */
            .nav-dropdown li a::after,
            .nav-dropdown a::after,
            ul.nav-dropdown li a::after,
            ul.nav-dropdown a::after {
                display: none !important;
                content: none !important;
                background: none !important;
                height: 0 !important;
                width: 0 !important;
                transform: none !important;
            }

            .nav-dropdown li a:hover::after,
            .nav-dropdown a:hover::after,
            ul.nav-dropdown li a:hover::after,
            ul.nav-dropdown a:hover::after {
                display: none !important;
                transform: none !important;
                background: none !important;
            }

            /* No arrow on mobile either */
            .has-dropdown > a::after {
                display: none;
            }


            /* Remove visual feedback - keep it clean */
            .has-dropdown.mobile-open > a {
                color: #333 !important;
                font-weight: 700 !important;
            }
        }

        .nav-btn-getstarted {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, rgba(0, 12, 51, 0.92) 0%, rgba(1, 63, 142, 0.92) 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            white-space: nowrap;
            backdrop-filter: blur(10px);
        }

        .nav-btn-getstarted:hover {
            background: linear-gradient(135deg, rgba(0, 12, 51, 0.98) 0%, rgba(1, 63, 142, 0.98) 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(1, 63, 142, 0.6);
        }

        /* Dark Mode Toggle - Sleek and Subtle */
        .dark-mode-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            margin: 0 0.5rem;
            opacity: 0.7;
        }

        .dark-mode-toggle:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .dark-mode-toggle svg {
            position: absolute;
            transition: all 0.4s ease;
            color: #013F8E;
        }

        .dark-mode-toggle .moon-icon {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        .dark-mode-toggle .sun-icon {
            opacity: 0;
            transform: rotate(180deg) scale(0.5);
        }

        body.dark-mode .dark-mode-toggle svg {
            color: white;
        }

        body.dark-mode .dark-mode-toggle .moon-icon {
            opacity: 0;
            transform: rotate(-180deg) scale(0.5);
        }

        body.dark-mode .dark-mode-toggle .sun-icon {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        /* Dark Mode Styles - Refined warmer background */
        body.dark-mode {
            background: #0F1D2E;
            color: rgba(232, 240, 247, 0.9);
        }

        /* Navigation in dark mode */
        body.dark-mode nav {
            background: rgba(13, 25, 41, 0.95);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.dark-mode .nav-links {
            background: rgba(13, 25, 41, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.dark-mode .nav-links a {
            color: rgba(252, 249, 239, 0.9);
        }

        body.dark-mode .nav-links a:hover {
            color: white;
        }

        body.dark-mode .nav-links > li > a::after {
            background: white;
        }

        body.dark-mode .company-name {
            color: white;
        }

        /* Dropdown in dark mode */
        body.dark-mode .nav-dropdown {
            background: rgba(13, 25, 41, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        body.dark-mode .nav-dropdown a {
            color: white !important;
        }

        body.dark-mode .nav-dropdown a:hover {
            color: rgba(252, 249, 239, 0.8) !important;
        }

        body.dark-mode .nav-dropdown a::after {
            background: white;
        }

        /* All cards turn blue with white text - MORE SUBTLE */
        body.dark-mode .floating-card {
            background: rgba(1, 63, 142, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        body.dark-mode .floating-card:hover {
            background: rgba(1, 63, 142, 0.15);
            border-color: rgba(255, 255, 255, 0.15);
        }

        body.dark-mode .card-title,
        body.dark-mode .section-title {
            color: white;
        }

        body.dark-mode .card-text,
        body.dark-mode .card-description {
            color: white;
        }

        body.dark-mode .service-item {
            background: rgba(1, 63, 142, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        body.dark-mode .service-item h3 {
            color: white;
        }

        body.dark-mode .service-item p,
        body.dark-mode .service-item li {
            color: rgba(252, 249, 239, 0.9);
        }

        body.dark-mode .founder-card {
            background: rgba(1, 63, 142, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        body.dark-mode .founder-name {
            color: white;
        }

        body.dark-mode .founder-title {
            background: none;
            -webkit-text-fill-color: white;
            color: white;
        }

        body.dark-mode .founder-specialty {
            color: rgba(232, 240, 247, 0.8);
        }

        body.dark-mode .founder-bio {
            color: rgba(232, 240, 247, 0.9);
        }

        body.dark-mode .mission-content {
            background: transparent;
            border: none;
        }

        body.dark-mode .mission-content p {
            color: rgba(252, 249, 239, 0.9);
        }

        body.dark-mode .faq-item {
            background: rgba(1, 63, 142, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        body.dark-mode .faq-item:hover {
            background: rgba(1, 63, 142, 0.12);
        }

        body.dark-mode .faq-question {
            color: white;
        }

        body.dark-mode .faq-answer {
            color: rgba(252, 249, 239, 0.9);
        }

        body.dark-mode .blog-post {
            background: rgba(1, 63, 142, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        body.dark-mode .blog-post:hover {
            background: rgba(1, 63, 142, 0.12);
        }

        body.dark-mode .blog-title {
            color: white;
        }

        body.dark-mode .blog-meta,
        body.dark-mode .blog-post p,
        body.dark-mode .blog-post li,
        body.dark-mode .blog-post h3 {
            color: rgba(252, 249, 239, 0.9);
        }

        /* Differentiator card in dark mode */
        body.dark-mode .differentiator-card {
            background: rgba(1, 63, 142, 0.12);
            border-left-color: rgba(119, 229, 237, 0.4);
        }

        body.dark-mode .differentiator-card h2 {
            color: white;
        }

        body.dark-mode .differentiator-card p {
            color: rgba(232, 240, 247, 0.9);
        }

        body.dark-mode .differentiator-card strong {
            color: rgba(119, 229, 237, 0.8);
        }

        body.dark-mode .contact-form,
        body.dark-mode .careers-form {
            background: rgba(1, 63, 142, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        body.dark-mode .form-group label {
            color: white;
        }

        body.dark-mode .form-group input,
        body.dark-mode .form-group textarea,
        body.dark-mode .form-group select {
            background: rgba(13, 25, 41, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
        }

        body.dark-mode .form-group input::placeholder,
        body.dark-mode .form-group textarea::placeholder {
            color: rgba(252, 249, 239, 0.5);
        }

        /* Radio buttons and checkboxes text */
        body.dark-mode .form-group input[type="radio"] + label,
        body.dark-mode .form-group input[type="checkbox"] + label {
            color: white;
        }

        body.dark-mode .form-group label {
            color: white !important;
        }

        body.dark-mode #meetingScheduler {
            background: rgba(1, 63, 142, 0.3) !important;
        }

        body.dark-mode #meetingScheduler p {
            color: rgba(252, 249, 239, 0.9) !important;
        }

        body.dark-mode .approach-step {
            background: transparent;
            border-left: 4px solid white;
        }

        body.dark-mode .approach-step h3 {
            color: white;
        }

        body.dark-mode .approach-step p,
        body.dark-mode .approach-step li {
            color: rgba(252, 249, 239, 0.9);
        }

        /* Assessment banner (get assessment card) */
        body.dark-mode .assessment-banner {
            background: rgba(1, 63, 142, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        body.dark-mode .assessment-banner h2 {
            color: white;
        }

        body.dark-mode .assessment-banner p {
            color: rgba(232, 240, 247, 0.9);
        }

        body.dark-mode .assessment-cta {
            color: white;
        }

        /* Certificates section in dark mode */
        body.dark-mode .certificates-section {
            background: rgba(1, 63, 142, 0.15);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.dark-mode .certificates-title {
            color: white;
        }

        body.dark-mode .certificate-name {
            color: white;
        }

        body.dark-mode .certificate-issuer {
            color: rgba(232, 240, 247, 0.7);
        }

        body.dark-mode .certificate-code {
            color: rgba(232, 240, 247, 0.8) !important;
        }

        /* Better button colors in dark mode */
        body.dark-mode .btn,
        body.dark-mode .cta-button,
        body.dark-mode .nav-btn-getstarted,
        body.dark-mode button[type="submit"] {
            background: linear-gradient(135deg, #1E5A9E 0%, #2A7BC5 100%) !important;
            color: white !important;
        }

        body.dark-mode .btn:hover,
        body.dark-mode .cta-button:hover,
        body.dark-mode .nav-btn-getstarted:hover,
        body.dark-mode button[type="submit"]:hover {
            background: linear-gradient(135deg, #2A7BC5 0%, #3A8FD8 100%) !important;
        }

        body.dark-mode .assessment-banner-link:hover .assessment-cta {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Override inline color styles in dark mode */
        body.dark-mode h3[style*="color: #000C33"],
        body.dark-mode h4[style*="color: #000C33"],
        body.dark-mode h4[style*="color: #013F8E"],
        body.dark-mode label[style*="color: #000C33"],
        body.dark-mode span[style*="color: #013F8E"] {
            color: white !important;
        }

        body.dark-mode .mobile-menu-toggle span {
            background: white;
        }

        /* SVG icons to white */
        body.dark-mode .card-icon svg path,
        body.dark-mode .card-icon svg circle,
        body.dark-mode .card-icon svg rect,
        body.dark-mode .card-icon svg line {
            stroke: white;
        }

        body.dark-mode .service-icon svg path,
        body.dark-mode .service-icon svg circle {
            fill: white;
        }

        /* Invert background crescents */
        /* Stars turn white in dark mode */
        body.dark-mode .bg-stars-container div {
            color: white !important;
            opacity: 0.5 !important;
        }

        /* Mobile Menu */
        .mobile-controls {
            display: none;
            align-items: center;
            gap: 0.8rem;
        }

        .dark-mode-toggle-mobile {
            display: none;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #000C33;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #000C33 0%, #013F8E 100%);
            color: white;
            padding: 2.5rem 2rem;
            text-align: center;
        }

        /* Floating Cards Section */
        .floating-cards-section {
            margin-top: 2rem;
            padding: 0 2rem 4rem;
            position: relative;
            z-index: 10;
            margin-bottom: 3rem;
            border-bottom: 2px solid #e0e0e0;
        }

        .floating-cards-container {
            max-width: 1200px;
            margin: 2rem auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .floating-card {
            background: linear-gradient(145deg, var(--color-white) 0%, var(--color-blue-light) 100%);
            padding: 2.5rem 2rem;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            transition: all 1s var(--easing-smooth);
            border: 1px solid rgba(1, 63, 142, 0.08);
            opacity: 0;
            transform: translateY(30px);
            animation: floatUp 0.6s ease forwards;
            cursor: pointer;
            position: relative;
            text-align: center;
        }

        .floating-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-xl);
            background: linear-gradient(145deg, #F5FAFD 0%, #E8F4F8 100%);
            border-color: rgba(1, 63, 142, 0.15);
        }

        .floating-card:active {
            transform: translateY(-8px) scale(1.01);
        }

        .floating-card:nth-child(1) {
            animation: slideInLeft 0.7s var(--easing-smooth) forwards;
            animation-delay: 0.1s;
        }

        .floating-card:nth-child(2) {
            animation: floatUp 0.7s var(--easing-smooth) forwards;
            animation-delay: 0.2s;
        }

        .floating-card:nth-child(3) {
            animation: slideInRight 0.7s var(--easing-smooth) forwards;
            animation-delay: 0.3s;
        }

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

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

        @keyframes floatUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .floating-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(0, 12, 51, 0.1);
        }

        .floating-card:active {
            transform: translateY(-5px);
        }

        .card-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 1.5rem;
            background: transparent;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            transition: all 0.3s ease;
            padding: 0;
        }

        .card-icon svg {
            width: 100%;
            height: 100%;
        }

        /* Door Opening Animation with Shadow */
        .handshake-left {
            transition: transform 0.5s ease;
        }

        .floating-card:hover .handshake-left,
        .floating-card.mobile-active .handshake-left {
            transform: perspective(600px) rotateY(-90deg);
        }

        .door-shadow {
            transition: opacity 0.5s ease;
        }

        .floating-card:hover .door-shadow,
        .floating-card.mobile-active .door-shadow {
            opacity: 0.2;
        }

        /* Target Arrow Animation - simple straight line from left to center */
        .target-circles {
            /* Target stays completely still */
        }

        .arrow-target {
            opacity: 0;
            transform: translate(-60px, 0);
            transition: all 0.5s ease;
        }

        .floating-card:hover .arrow-target,
        .floating-card.mobile-active .arrow-target {
            opacity: 1;
            transform: translate(-8px, 0);
        }

        /* Light Bulb Animation */
        .bulb-light {
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .floating-card:hover .bulb-light,
        .floating-card.mobile-active .bulb-light {
            opacity: 1;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-navy);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .card-description {
            font-size: 1rem;
            color: var(--color-text-light);
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
            animation: heroFadeScale 1s var(--easing-smooth) forwards;
            opacity: 0;
        }

        @keyframes heroFadeScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Make ALL headings white in hero sections */
        .hero h2 {
            color: white;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: white;
            animation: fadeIn 1s var(--easing-smooth) 0.3s forwards;
            opacity: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        /* Section Titles */
        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--color-navy);
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            text-align: center;
            margin-bottom: 3rem;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 100%);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            transition: all var(--timing-base) var(--easing-bounce);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::after {
            width: 300px;
            height: 300px;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn:active {
            transform: translateY(0) scale(0.98);
            box-shadow: var(--shadow-sm);
        }

        .mission-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .mission-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #555;
        }

        .cta-section {
            text-align: center;
            padding: 3rem 0;
        }

        /* Services Tabs */
        .service-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .service-tab {
            padding: 0.8rem 1.5rem;
            background: rgba(119, 229, 237, 0.08);
            border: 2px solid rgba(119, 229, 237, 0.3);
            color: rgba(255, 255, 255, 0.95);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            backdrop-filter: blur(8px);
        }

        .service-tab:hover {
            background: rgba(119, 229, 237, 0.18);
            color: #FFFFFF;
            border: 2px solid rgba(119, 229, 237, 0.5);
            box-shadow: 0 4px 15px rgba(119, 229, 237, 0.2);
            transform: translateY(-1px);
        }

        /* Service Items */
        .service-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
            padding: 2rem;
            background: rgba(234, 243, 248, 0.75);
            border-radius: 10px;
            align-items: center;
            transition: all 0.3s ease;
        }

        .service-item:hover {
            background: rgba(234, 243, 248, 0.95);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(1, 63, 142, 0.2);
        }

        .service-item:nth-child(even) {
            direction: rtl;
        }

        .service-item:nth-child(even) > * {
            direction: ltr;
        }

        .service-image {
            width: 100%;
            height: 300px;
            border-radius: 10px;
            object-fit: cover;
        }
        
        .service-image-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #013F8E 0%, #000C33 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .service-content h3 {
            font-size: 1.8rem;
            color: #000C33;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .service-content p {
            font-size: 1rem;
            color: #555;
            line-height: 1.8;
        }

        /* About Founders */
        .founders-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .founder-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
            cursor: pointer;
        }

        .founder-card {
            background: rgba(234, 243, 248, 0.75);
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 12, 51, 0.06);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 12, 51, 0.02);
        }

        .founder-card-link:hover .founder-card {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0, 12, 51, 0.1);
        }

        .founder-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            object-fit: cover;
            padding: 4px;
            background: linear-gradient(135deg, #000C33 0%, #013F8E 100%);
        }

        .founder-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: #000C33;
            margin-bottom: 0.5rem;
        }

        .founder-title {
            font-size: 1.1rem;
            background: linear-gradient(135deg, #000C33 0%, #013F8E 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .founder-specialty {
            font-size: 0.9rem;
            color: #013F8E;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .founder-bio {
            font-size: 1rem;
            color: #555;
            line-height: 1.8;
            text-align: left;
            margin-bottom: 1rem; /* Add space between paragraphs */
        }

        /* Blog Styles */
        .blog-post {
            background: rgba(234, 243, 248, 0.75);
            padding: 3rem;
            margin-bottom: 3rem;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .blog-post:hover {
            background: rgba(234, 243, 248, 0.95);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(1, 63, 142, 0.2);
        }

        .blog-title {
            font-size: 2rem;
            color: #000C33;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .blog-meta {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .blog-post h3 {
            color: #013F8E;
            font-size: 1.4rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .blog-post p {
            line-height: 1.8;
            color: #333;
            margin-bottom: 1rem;
        }

        /* Differentiator Card - Special highlight card */
        .differentiator-card {
            background: linear-gradient(145deg, var(--color-white) 0%, var(--color-blue-light) 100%);
            padding: 2.5rem;
            margin-bottom: 3rem;
            border-radius: 16px;
            border-left: 4px solid var(--color-blue);
            box-shadow: var(--shadow-md);
            transition: all 0.3s var(--easing-smooth);
        }

        .differentiator-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .differentiator-card h2 {
            font-size: 2rem;
            color: var(--color-navy);
            margin-bottom: 1.5rem;
        }

        .differentiator-card p {
            line-height: 1.8;
            color: var(--color-text);
            margin-bottom: 1.5rem;
        }

        .differentiator-card strong {
            color: var(--color-blue);
            font-size: 1.1rem;
        }

        /* FAQ Styles */
        .faq-section {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(234, 243, 248, 0.75);
            padding: 2rem;
            margin-bottom: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: rgba(234, 243, 248, 0.95);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(1, 63, 142, 0.2);
        }

        .faq-question {
            color: #000C33;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .faq-answer {
            color: #555;
            line-height: 1.8;
            font-size: 1rem;
        }

        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(234, 243, 248, 0.75);
            padding: 3rem;
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #000C33;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-family: 'Gothic A1', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #013F8E;
        }

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

        /* Certificates Banner */
        .certificates-section {
            background: rgba(234, 243, 248, 0.75);
            padding: 1.5rem 0;
            margin: 2rem 0;
            border-top: 1px solid rgba(1, 63, 142, 0.1);
            border-bottom: 1px solid rgba(1, 63, 142, 0.1);
            overflow: hidden;
        }

        .certificates-title {
            text-align: center;
            font-size: 1.4rem;
            color: #013F8E;
            margin-bottom: 1.2rem;
            font-weight: 600;
        }

        .certificates-scroll {
            overflow: hidden;
            position: relative;
            width: 100%;
            padding: 0.5rem 0;
        }

        .certificates-track {
            display: flex;
            gap: 4rem;
            animation: scroll 60s linear infinite;
            width: fit-content;
            will-change: transform;
        }

        .certificate-item {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 1.2rem;
            opacity: 0.85;
            transition: opacity 0.3s ease;
            filter: grayscale(20%);
            padding: 0.5rem 1rem;
            cursor: pointer;
        }

        .certificate-item:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        .certificate-logo {
            height: 55px;
            width: auto;
            object-fit: contain;
        }

        .certificate-details {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
        }

        .certificate-name {
            font-size: 1.05rem;
            font-weight: 600;
            color: #000C33;
            line-height: 1.2;
        }

        .certificate-code {
            font-size: 0.9rem;
            color: #013F8E;
            font-weight: 500;
        }

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

        /* Mobile: Faster scroll */
        @media (max-width: 768px) {
            .certificates-track {
                animation: scroll 40s linear infinite;
                gap: 3rem;
            }
            
            .certificate-logo {
                height: 45px;
            }
            
            .certificate-name {
                font-size: 0.95rem;
            }
            
            .certificate-code {
                font-size: 0.8rem;
            }
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #000C33 0%, #013F8E 100%);
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .social-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.4);
        }

        .social-button:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
        }

        .social-button svg {
            width: 28px;
            height: 28px;
        }

        /* Success/Error Messages */
        .alert {
            max-width: 600px;
            margin: 0 auto 2rem;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            display: none;
        }

        .alert.show {
            display: block;
            animation: slideDown 0.3s ease-out;
        }

        .alert-success {
            background: #d4edda;
            color: #155724;
            border: 2px solid #c3e6cb;
        }

        .alert-error {
            background: #f8d7da;
            color: #721c24;
            border: 2px solid #f5c6cb;
        }

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

        /* Responsive */
        @media (max-width: 768px) {
            .floating-cards-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .floating-cards-section {
                margin-top: 2rem;
                padding: 0 1rem 3rem;
            }

            .company-name {
                font-size: 1.2rem;
                white-space: nowrap;
            }

            /* Optimize background decorations for mobile */
            .bg-decoration {
                will-change: auto;
                -webkit-transform: translateZ(0);
                transform: translateZ(0);
                -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
            }

            .nav-right {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #EAF3F8;
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                gap: 1rem;
                align-items: stretch;
            }

            .nav-right.active {
                display: flex;
            }

            .nav-links {
                flex-direction: column;
                gap: 0;
                width: 100%;
                border-radius: 0;
                box-shadow: none;
                background: transparent;
                border: none;
                padding: 0;
            }

            .nav-links li {
                padding: 0.8rem 2rem;
                border-bottom: 1px solid #ddd;
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .nav-links a {
                border-bottom: none;
            }

            .nav-btn-getstarted {
                margin: 0 2rem 1rem 2rem;
                text-align: center;
            }

            .mobile-controls {
                display: flex;
            }

            .dark-mode-toggle-mobile {
                display: inline-flex;
            }

            #darkModeToggle {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
                margin-right: 0.5rem;
            }

            .nav-container {
                padding: 0 1rem;
            }

            /* Mobile nav in dark mode */
            body.dark-mode .nav-right {
                background: rgba(13, 25, 41, 0.98);
            }

            .hero h1 {
                font-size: 2rem;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1.1rem;
                line-height: 1.6;
            }

            .hero {
                padding: 2rem 1.25rem;
            }

            .hero h1 {
                word-wrap: break-word;
                overflow-wrap: break-word;
            }

            .container {
                padding: 2rem 1.25rem;
                width: 100%;
                max-width: 100%;
                overflow-x: hidden;
            }

            .service-item,
            .founders-section {
                grid-template-columns: 1fr;
                width: 100%;
                max-width: 100%;
            }

            .service-item:nth-child(even) {
                direction: ltr;
            }

            .section-title {
                font-size: 1.75rem;
                word-wrap: break-word;
            }

            /* Ensure all cards don't overflow */
            .floating-card,
            .service-item,
            .blog-post,
            .faq-item,
            .differentiator-card {
                max-width: 100%;
                overflow-x: hidden;
            }
        }

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

        /* Scroll Animations - Elegant Fade In */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

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

        /* Stagger animations for multiple elements */
        .fade-in-up:nth-child(1) { transition-delay: 0.1s; }
        .fade-in-up:nth-child(2) { transition-delay: 0.2s; }
        .fade-in-up:nth-child(3) { transition-delay: 0.3s; }
        .fade-in-up:nth-child(4) { transition-delay: 0.4s; }

        /* Make dark blue buttons slightly transparent */
        .cta-button,
        .nav-btn-getstarted,
        button[type="submit"] {
            background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 100%) !important;
            box-shadow: var(--shadow-md);
            transition: all var(--timing-base) var(--easing-smooth);
            position: relative;
        }

        /* Remove ripple effect from submit buttons */
        button[type="submit"]::after {
            display: none !important;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-navy) 100%) !important;
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        button[type="submit"]:hover {
            background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-navy) 100%) !important;
        }

        .nav-btn-getstarted:hover {
            background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-navy) 100%) !important;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        }

        /* Free IT Assessment CTA Styles */
        .assessment-cta {
            display: inline-block;
            color: var(--color-blue);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all var(--timing-base) var(--easing-smooth);
        }

        .assessment-banner-link:hover .assessment-cta {
            color: var(--color-navy);
        }

        .assessment-banner-link {
            display: block;
            text-decoration: none;
            transition: all var(--timing-base) var(--easing-smooth);
        }

        .assessment-banner {
            background: rgba(234, 243, 248, 0.75);
            padding: 3rem 2rem;
            margin: 4rem auto;
            border-radius: 16px;
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
            max-width: 900px;
            cursor: pointer;
            transition: all var(--timing-base) var(--easing-smooth);
        }

        .assessment-banner-link:hover .assessment-banner {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .assessment-banner h2 {
            color: #000C33;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .assessment-banner p {
            color: #333;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .assessment-cta {
            display: inline-block;
        }

        /* Terms & Privacy bullet spacing */
        .mission-content ul li {
            padding-left: 1rem;
        }
    


        /* Tawk.to widget customization */
        /* Make chat widget stay on same page and look cleaner */
        
        /* Desktop - smaller and cleaner */
        #tawk-bubble {
            width: 55px !important;
            height: 55px !important;
            bottom: 20px !important;
            right: 20px !important;
            box-shadow: 0 4px 12px rgba(0, 12, 51, 0.25) !important;
        }
        
        /* Mobile - smaller and less intrusive */
        /* Tablet service card adjustments */
        @media (max-width: 1024px) and (min-width: 769px) {
            .service-item {
                gap: 2rem;
                padding: 1.5rem;
            }

            .service-image {
                height: 250px;
            }

            .service-content h3 {
                font-size: 1.4rem;
            }

            .service-content p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 768px) {
            #tawk-bubble {
                width: 50px !important;
                height: 50px !important;
                bottom: 80px !important;
                right: 15px !important;
            }
            
            /* Keep chat window on same page */
            .tawk-min-container {
                width: 90% !important;
                max-width: 360px !important;
                height: 500px !important;
                max-height: 70vh !important;
            }
            
            /* Force inline display, not new page */
            .tawk-mobile-chat {
                position: fixed !important;
                z-index: 999999 !important;
            }
        }
        
        /* Hide notification badge */
        .tawk-badge {
            display: none !important;
        }
        
        /* Make widget less bouncy/annoying */
        #tawk-bubble.animated {
            animation: none !important;
        }
    