        /* ============================================
           LOCAL STYLES - WHY US PAGE
           ============================================ */

        /* Large Split List (Why Businesses Choose Us) */
        .split-list-container {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .split-list-item {
            display: grid;
            grid-template-columns: 100px 1fr 1.2fr;
            gap: 40px;
            align-items: center;
            padding: 40px 0;
            border-bottom: 1px solid var(--border-light);
            transition: transform 0.3s var(--ease-out);
        }
        .split-list-item:last-child { border-bottom: none; }
        
        /* FIX: Using transform instead of padding to prevent text shifting */
        .split-list-item:hover {
            transform: translateX(10px);
        }
        
        .split-list-num {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--border-light);
            line-height: 1;
            transition: color 0.3s ease;
        }
        .split-list-item:hover .split-list-num { color: var(--gold); }
        
        .split-list-title h3 {
            font-size: 1.4rem;
            color: var(--navy);
            margin: 0 0 8px 0;
        }
        .split-list-title p {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }
        .split-list-desc {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
        }

        /* Engagement Models Redesign */
        .engage-card {
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 32px;
            text-align: left;
            transition: var(--transition-base);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        .engage-card:hover {
            transform: translateY(-5px);
            border-color: var(--navy);
            box-shadow: 0 20px 40px -20px rgba(10, 25, 47, 0.2);
        }
        .engage-icon-top {
            width: 56px; height: 56px;
            background: var(--gray-light);
            color: var(--navy);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 24px;
            transition: var(--transition-base);
        }
        .engage-card:hover .engage-icon-top {
            background: var(--navy);
            color: var(--gold);
            transform: rotate(-5deg);
        }
        .engage-card h3 {
            font-size: 1.25rem;
            color: var(--navy);
            margin-bottom: 12px;
        }
        .engage-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Alternating Blocks for Image/Text */
        .alternating-block:nth-child(even) .about-us-grid {
            grid-template-columns: 1.1fr 0.9fr;
        }
        .alternating-block:nth-child(even) .about-us-content {
            order: -1;
        }

        /* FIX: Missing Image Wrapper Styles Added Back */
        .simple-image-wrapper {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            min-height: 350px;
            width: 100%;
            box-shadow: 0 15px 40px -15px rgba(10, 25, 47, 0.15);
        }
        .simple-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s var(--ease-out);
        }
        .simple-image-wrapper:hover img {
            transform: scale(1.03);
        }

        /* Tab Override for Why Us */
        .services-tab-btn { flex: 1; justify-content: center; }

        /* ============================================
           NEW: PARALLAX CTA BANNER
           ============================================ */
        .parallax-cta {
            position: relative;
            padding: 140px 20px;
            text-align: center;
            overflow: hidden;
            background-color: var(--navy);
        }
        .parallax-cta-bg {
            position: absolute;
            inset: 0;
            background: url('.Images/panel.jpg') center center / cover no-repeat fixed;
            opacity: 0.2; /* Subtle background visibility */
            z-index: 1;
        }
        .parallax-cta-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 25, 47, 0.92) 0%, rgba(26, 43, 71, 0.85) 100%);
            z-index: 2;
        }
        .parallax-cta-content {
            position: relative;
            z-index: 3;
            max-width: 800px;
            margin: 0 auto;
        }

        /* ============================================
           RESPONSIVE STYLES
           ============================================ */
        @media (max-width: 1000px) {
            .alternating-block:nth-child(even) .about-us-content {
                order: 0;
            }
            .alternating-block:nth-child(even) .about-us-grid {
                grid-template-columns: 1fr;
            }
            .split-list-item {
                grid-template-columns: 60px 1fr;
                gap: 20px;
            }
            .split-list-desc {
                grid-column: 1 / -1;
                padding-left: 80px;
            }
            .split-list-num {
                font-size: 2.5rem;
            }
            .services-tab-btn {
                flex: 1 0 40%;
            }
            .engage-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            .expect-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            /* Mobile fix for parallax */
            .parallax-cta-bg {
                background-attachment: scroll;
            }
        }

        @media (max-width: 768px) {
            .simple-image-wrapper {
                min-height: 250px; /* Adjusted height for mobile screens */
            }
        }

        @media (max-width: 600px) {
            .split-list-item {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 30px 0;
            }
            .split-list-desc {
                padding-left: 0;
            }
            .engage-grid {
                grid-template-columns: 1fr !important;
            }
            .expect-grid {
                grid-template-columns: 1fr !important;
            }
        }