
        /* --- BRAND COLOR PALETTE & DESIGN VARIABLES --- */
        :root {
            --primary-color: #0a2d5c;      /* Logo Navy Blue */
            --accent-color: #3ba3ec;       /* Logo Electric Blue */
            --accent-hover: #218ad3;
            --text-dark: #223247;          
            --text-muted: #556882;
            --text-light: #ffffff;
            --bg-light: #f4f8fc;           
            --bg-white: #ffffff;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --transition: all 0.3s ease-in-out;
            --max-width: 1200px;
        }

        /* --- GLOBAL RESET & BASE RULES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--bg-white);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        /* --- UTILITY INFRASTRUCTURE --- */
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
        }
        section{padding: 3rem 0;}

        .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--text-light);
            padding: 0.9rem 2.2rem;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(59, 163, 236, 0.2);
        }

        .btn:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(59, 163, 236, 0.35);
        }

        .section-title {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.6rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }

        /* --- TOP UTILITY BAR --- */
        .top-bar {
            background-color: #061c3a;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.85rem;
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .top-bar .container {
            padding: 0;
            display: flex;
            justify-content: flex-end;
            gap: 2rem;
        }

        /* --- FIXED CLEAN NAVIGATION HEADER (FIXES THE BLENDING LOGO ISSUE IN image_a42f34.jpg) --- */
        header {
            background-color: var(--bg-white); /* Solid white base ensures logo contrast is perfect */
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(10, 45, 92, 0.05);
            transition: var(--transition);    box-shadow: 0 4px 25px rgba(10, 45, 92, 0.12);
        }

        /* Optional micro-scrolling aesthetic changes */
        header.scrolled {
            box-shadow: 0 4px 25px rgba(10, 45, 92, 0.12);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.9rem 0;
            transition: var(--transition);
        }

        .logo-block {
            display: flex;
            flex-direction: column;
        }

        .logo-block img{height: 80px;}

        .logo-tagline {
            display: block;
            font-size: 0.75rem;
            font-weight: 500;
            font-style: italic;
            color: var(--text-muted); /* Darker gray for immediate readability on light bg */
            letter-spacing: 0.5px;
            margin-top: -2px;
        }

        @media (max-width: 768px) {
            .logo-block img{height: 60px;}
            .nav-container{padding-bottom: 0;}
        }

       /* ==================================================================
   RESPONSIVE NAVIGATION ARCHITECTURE (DESKTOP & SLIDING MOBILE)
   ================================================================== */

/* ==================================================================
   RESPONSIVE NAVIGATION ARCHITECTURE (DESKTOP HOVER & MOBILE DROP)
   ================================================================== */

.nav-links {
    display: flex;
    gap: 2.2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links > li > a {
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 0;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links > li > a:hover {
    color: var(--accent-color);
}

/* --- DESKTOP DROPDOWN HOVER ARCHITECTURE --- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--primary-color);
    min-width: 340px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
    z-index: 2000;
    border-top: 3px solid var(--accent-color);
    top: 100%;
    left: 0;
    padding: 0.6rem 0;
    margin-top: 0.8rem;
    border-radius: 0 0 4px 4px;
    list-style: none;
}

.dropdown-menu li a {
    color: var(--text-light) !important;
    padding: 0.75rem 1.5rem;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #113b73;
    color: var(--accent-color) !important;
    padding-left: 1.8rem;
}

/* Enable hover executions only on Desktop width dimensions */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Hamburger Base Hidden Layout state on Desktops */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==================================================================
   MOBILE TOP-DOWN COLLAPSIBLE MENU OVERRIDES (<= 768px Screens)
   ================================================================== */
@media (max-width: 768px) {
    
    /* Make Hamburger visible on smaller viewports */
    .menu-toggle {
        display: flex !important;
    }

    /* Transform Hamburger bars into an "X" shape */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* FORCED TOP-DOWN MENUS CONTAINER OVERRIDE */
    ul#navLinks.nav-links {
        display: none !important; /* Kept completely out of flow until active */
        position: absolute !important;
        top: 100% !important; /* Forces layout tracking to align right beneath the main logo header */
        left: 0 !important;
        width: 100% !important;
        background-color: #0a2d5c !important; /* Solid VRHEQ Primary Navy Blue background */
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 1.5rem 2rem !important;
        gap: 0px !important;
        z-index: 99999 !important;
        box-shadow: 0px 10px 20px rgba(10, 45, 92, 0.15) !important;
        box-sizing: border-box !important;
    }

    /* Display block cleanly when active class triggers on menu click */
    ul#navLinks.nav-links.active {
        display: flex !important;
    }

    .nav-links > li {
        width: 100% !important;
    }

    /* Custom Mobile Link Spacing */
    .nav-links > li > a {
        color: #ffffff !important;
        display: block !important;
        width: 100% !important;
        padding: 14px 0 !important;
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    /* Rotate Arrow Indicators inside expanding links */
    .dropdown .arrow {
        display: inline-block !important;
        transition: transform 0.3s ease !important;
        font-size: 0.75rem !important;
        margin-left: 6px !important;
    }
    .dropdown.open .arrow {
        transform: rotate(180deg) !important;
        color: var(--accent-color) !important;
    }

    /* Inline Collapsible Dropdown Block */
    .dropdown-menu {
        position: static !important;
        display: none !important; /* Strictly hidden away until opened */
        background-color: rgba(0, 0, 0, 0.2) !important; /* Darkened inline indent backing */
        box-shadow: none !important;
        border-top: none !important;
        width: 100% !important;
        margin-top: 0 !important;
        padding: 5px 0 !important;
        border-radius: 0px !important;
    }

    /* Displays item sublink tracking lists block elements */
    .dropdown.open .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu li a {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
        color: rgba(255, 255, 255, 0.85) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    }
    
    .dropdown-menu li a:hover {
        background-color: rgba(255, 255, 255, 0.08) !important;
        color: var(--accent-color) !important;
    }
}

        /* --- HERO ROTATING SLIDER BANNER (SITS PERFECTLY ADJACENT BELOW SOLID HEADER) --- */
        .hero-carousel {
            position: relative;
            background-color: var(--primary-color);
            width: 100%;
            height: 350px; /* Locked height as specified */
            overflow: hidden;
        }

        .hero-carousel p {
            font-size: 1.1rem;
            opacity: 0.8;
            font-style: italic;
        }

        .slide-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 1;
        }

        .slide-wrapper.active {
            opacity: 1;
            z-index: 2;
        }

        .slide-img-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .slide-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .slide-img-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 45, 92, 0.70); /* Smooth layout filter */
        }

        .slide-content {
            position: relative;
            z-index: 3;
            width: 90%;
            max-width: 950px;
            margin: 0 auto;
            text-align: center;
            color: var(--text-light);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .slide-content h1 {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 2rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .carousel-indicators {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .bullet {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: var(--transition);
        }

        .bullet.active {
            background-color: var(--accent-color);
            transform: scale(1.25);
        }

        /* --- STRATEGY OVERVIEW FRAMES --- */
        .intro-section {
            background-color: var(--bg-white);
            text-align: center;
        }

        .intro-box {
            max-width: 100%;
            margin: 0 auto; text-align: left;
        }

        .intro-box p {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .intro-box .highlight-statement {
            font-size: 1.4rem;
            color: var(--primary-color);
            font-weight: 700;
            padding: 1.5rem;
            background-color: var(--bg-light);
            border-radius: 4px;
            border-left: 4px solid var(--accent-color);
            margin: 2rem 0; text-align: center;
        }

        /* --- HORIZONTAL CAPABILITIES MULTI-CARD SLIDER --- */
        .solutions-section {
            background-color: var(--bg-light);
            overflow: hidden;
            position: relative;
        }

        .slider-viewport {
            width: 100%;
            overflow: hidden;
            margin-top: 3rem;
        }

        .services-slider-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            width: 300%;
        }

        .service-panel {
            width: 33.3333%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            padding: 0 5px 1.5rem 5px;
        }

        .solution-card {
            background-color: var(--bg-white);
            border-radius: 6px;
            box-shadow: 0 4px 15px rgba(10, 45, 92, 0.03);
            transition: var(--transition);
            border-top: 3px solid transparent;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .solution-card:hover {
            transform: translateY(-5px);
            border-top-color: var(--accent-color);
            box-shadow: 0 12px 30px rgba(10, 45, 92, 0.08);
        }

        .card-img-holder {
            width: 100%;
            height: 180px;
            overflow: hidden;
        }

        .card-img-holder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: var(--transition);
        }

        .solution-card:hover .card-img-holder img {
            transform: scale(1.05);
        }

        .card-body-content {
            padding: 2rem 1.5rem;
            flex-grow: 1;
        }

        .solution-card h3 {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 0.4rem;
        }

        .solution-card .tagline {
            font-style: italic;
            color: var(--accent-color);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .checklist {
            margin-top: 1rem;
            text-align: left;
        }

        .checklist li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.6rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .checklist li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        .services-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 2.5rem;
        }

        .srv-bullet {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #c8d3e0;
            cursor: pointer;
            transition: var(--transition);
        }

        .srv-bullet.active {
            background-color: var(--accent-color);
            transform: scale(1.2);
        }

        /* --- PARTNERSHIP CALL TO ACTION FRAME --- */
        .partnership-cta {
            background: linear-gradient(rgba(10, 45, 92, 0.94), rgba(10, 45, 92, 0.94)),
                        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=2070') center/cover no-repeat;
            color: var(--text-light);
            text-align: center;
        }

        .partnership-content {
            max-width: 850px;
            margin: 0 auto;
        }

        .partnership-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .partnership-content p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        /* --- COMMERCIAL ENGAGEMENT FORMS --- */
        .contact-section {
            background-color: var(--bg-white);
        }

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

        .contact-info h3 {
            color: var(--primary-color);
            font-size: 1.6rem;
            margin-bottom: 1rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            background: var(--bg-light);
            padding: 2.5rem;
            border-radius: 6px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .form-group label {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--primary-color);
        }

        .form-group input, .form-group textarea {
            padding: 0.8rem;
            border: 1px solid #c8d3e0;
            border-radius: 4px;
            font-family: var(--font-main);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 5px rgba(59, 163, 236, 0.3);
        }

        /* --- FOOTER TERMINAL --- */
        footer {
            background-color: var(--primary-color);
            color: rgba(255, 255, 255, 0.7);
            padding: 0;
            border-top: 5px solid var(--accent-color);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            width: 100%;
            box-sizing: border-box;
        }

        /* Constrained width master container bounding the layout grid track */
        footer .footer-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            /* Locks 3 balanced horizontal column grids to clear column drops */
            grid-template-columns: 1.1fr 1fr 0.9fr;
            gap: 3.5rem;
            padding: 2.5rem 0;
            box-sizing: border-box;
            align-items: start;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
        }

        /* Brand Section Formatting Layout */
        .footer-col.footer-brand-block {
            align-items: flex-start;
        }

        .footer-col .footer-logo {
            display: inline-block;
            margin-bottom: 1.25rem;
            background-color: #ffffff; 
            padding: 0.6rem 1rem;
            border-radius: 4px;
        }

        .footer-col .footer-logo img {
            height: auto;
            width: auto;
            max-width: 160px;
            max-height: 50px;
            display: block;
        }

        .footer-col .footer-brand-title {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 0.6rem;
            font-weight: 700;
        }

        .footer-col .footer-brand-desc {
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
            color: rgba(255, 255, 255, 0.75);
        }

        /* Grid Layout Title Headers */
        .footer-col .footer-col-title {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        /* Quick Nav Text Links */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
            transition: all 0.25s ease-in-out;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            transform: translateX(4px); /* Clean micro-interaction hover offset */
        }

        /* Contact Column Elements */
        .footer-contact-details .contact-address {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.2rem;
            color: rgba(255, 255, 255, 0.75);
        }

        .footer-contact-details .contact-meta {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            font-size: 60px; line-height: 60px;
        }

        .footer-contact-details .contact-meta strong {
            color: var(--text-light);
        }

        /* Footer Credits Bar */
        .footer-bottom {
            text-align: center;
            padding: 2rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        /* --- FULL RESPONSIVE CONTEXT RE-ALIGNMENTS --- */
        @media (max-width: 968px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet sizes */
                gap: 2.5rem;
                padding: 4rem 0;
            }
        }

        @media (max-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr; /* Stacks vertically in 1 clean column on mobile devices */
                gap: 2.5rem;
                padding: 3.5rem 0;
            }
        }
        /* --- FULL RESPONSIVE VIEWPORT BREAKPOINTS --- */
        @media (max-width: 968px) {
            .slide-content h1 { font-size: 2.1rem; }
            .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
            .top-bar { display: none; }
        }

        @media (max-width: 768px) {
            .menu-toggle { display: flex; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--bg-white); /* White menu overlay on mobile matching new motif */
                padding: 2rem;
                gap: 1.5rem;
                text-align: center;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            .nav-links.active { display: flex; }
            
            .dropdown-menu {
                position: static;
                display: block; 
                background-color: var(--bg-light);
                box-shadow: none;
                border-top: none;
                min-width: 100%;
                padding: 0;
                margin-top: 0.5rem;
            }
            .dropdown-menu li a { text-align: center; color: #FFF !important; padding: 0.6rem 1rem; font-size: 0.9rem; }
            .dropdown-menu li a:hover { background-color: rgba(59, 163, 236, 0.1); }
            
            .container { padding: 30px 20px; }
            .services-slider-track { transform: none !important; flex-direction: column; width: 100%; }
            .service-panel { width: 100%; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
            .services-indicators { display: none; }
        }

          /* --- INNER PAGE HERO BANNER --- */
        .inner-hero {
            background: linear-gradient(rgba(10, 45, 92, 0.92), rgba(10, 45, 92, 0.92)), 
                        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=2070') center/cover no-repeat;
            color: var(--text-light);
            text-align: center;
            padding: 5rem 0;
        }

        .inner-hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .inner-hero p {
            font-size: 1.1rem;
            opacity: 0.8;
            font-style: italic;
        }

        .text-center {
            text-align: center;
        }
        
        .text-center::after {
            left: 50% !important;
            transform: translateX(-50%);
        }
        
        /* --- WHAT WE BELIEVE SECTION --- */
        .believe-section {
            background-color: var(--bg-white);
        }

        .believe-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .believe-card {
            background-color: var(--bg-light);
            padding: 2.5rem 2rem;
            border-radius: 6px;
            border-left: 4px solid var(--accent-color);
            transition: var(--transition);
        }

        .believe-card:hover {
            transform: translateY(-3px);
            background-color: #ecf3fa;
        }

        .believe-card p {
            font-size: 1.05rem;
            color: var(--text-dark);
            font-weight: 500;
        }

        /* --- VISION & MISSION STRIP --- */
        .vision-mission-section {
            background-color: var(--bg-light);
        }

        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .vm-box {
            background-color: var(--bg-white);
            padding: 3rem;
            border-radius: 6px;
            box-shadow: 0 4px 15px rgba(10, 45, 92, 0.03);
        }

        .vm-box p {
            color: var(--text-muted);
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }

        .mission-list {
            margin: 1.5rem 0;
        }

        .mission-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.6rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        .mission-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        /* --- RATINGS CUSTOMER DASHBOARD --- */
        .ratings-section {
            background-color: var(--bg-white);
            border-bottom: 4px solid var(--primary-color);
        }
       
        .ratings-section h3{padding: 15px 10px; margin-bottom: 0; font-size: 18px;  }
        .ratings-section h2{font-size: 24px !important;}

        .ratings-container {
            max-width: 550px;
            margin: 0 auto;
        }

        .metric-group {
            margin-bottom: 10px;
        }

        .metric-info {
            display: flex;
            justify-content: space-between;
            font-weight: 600;
            font-size: 12px;
            margin-bottom: 2px;
            color: var(--primary-color);
        }

        .metric-bar-bg {
            width: 100%;
            height: 7px;
            background-color: #e2eaf4;
            border-radius: 6px;
            overflow: hidden;
        }

        .metric-bar-fill {
            height: 100%;
            background-color: var(--accent-color);
            border-radius: 6px;
            transition: width 1.5s ease-out;
        }

     /* ==================================================================
           PARENT-MARKED MODERN ACCORDION STYLES (.recruitment-page)
           ================================================================== */
        
        /* Inner Page Hero Banner */
        .recruitment-page .inner-hero {
            background: linear-gradient(rgba(10, 45, 92, 0.94), rgba(10, 45, 92, 0.94)), 
                        url('https://images.unsplash.com/photo-1450133064473-71024230f91b?q=80&w=2070') center/cover no-repeat;
            color: var(--text-light);
            text-align: center;
            padding: 5rem 0;
        }
        .recruitment-page .inner-hero h1 {
            font-size: 2.6rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .recruitment-page .inner-hero p {
            font-size: 1.1rem;
            opacity: 0.85;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Accordion Structure Section */
        .recruitment-page .accordion-section {
            background-color: var(--bg-light);
        }
        .recruitment-page .accordion-container {
            max-width: 950px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        /* Accordion Item Wrapper */
        .recruitment-page .accordion-item {
            background-color: var(--bg-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(10, 45, 92, 0.03);
            border: 1px solid rgba(10, 45, 92, 0.05);
            transition: var(--transition);
        }
        .recruitment-page .accordion-item:hover {
            box-shadow: 0 8px 20px rgba(10, 45, 92, 0.07);
        }

        /* Clickable Header Trigger */
        .recruitment-page .accordion-header {
            width: 100%;
            padding: 1.6rem 2rem;
            background: none;
            border: none;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            outline: none;
            transition: var(--transition);
        }
        .recruitment-page .accordion-header h2 {
            font-size: 1.3rem;
            color: var(--primary-color);
            font-weight: 700;
            transition: var(--transition);
        }
        
        /* Modern Plus/Minus Icon Indicator */
        .recruitment-page .accordion-icon {
            position: relative;
            width: 18px;
            height: 18px;
            transition: var(--transition);
        }
        .recruitment-page .accordion-icon::before,
        .recruitment-page .accordion-icon::after {
            content: '';
            position: absolute;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        /* Horizontal line */
        .recruitment-page .accordion-icon::before {
            top: 8px;
            left: 0;
            width: 18px;
            height: 2px;
        }
        /* Vertical line */
        .recruitment-page .accordion-icon::after {
            top: 0;
            left: 8px;
            width: 2px;
            height: 18px;
        }

        /* Active Open Accordion State styling */
        .recruitment-page .accordion-item.active {
            border-left: 4px solid var(--accent-color);
        }
        .recruitment-page .accordion-item.active .accordion-header h2 {
            color: var(--accent-color);
        }
        .recruitment-page .accordion-item.active .accordion-icon {
            transform: rotate(45deg);
        }
        .recruitment-page .accordion-item.active .accordion-icon::before,
        .recruitment-page .accordion-item.active .accordion-icon::after {
            background-color: var(--accent-color);
        }
        .recruitment-page .accordion-item.active .accordion-icon::after {
            opacity: 1; /* Clear vertical bar to leave a minus sign */
        }

        /* Hidden Content Drawer Container */
        .recruitment-page .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            background-color: var(--bg-white);
        }

        .recruitment-page .accordion-body-inner {
            padding: 0 2rem 2rem 2rem;
            border-top: 1px solid #f0f4f8;
            padding-top: 1.5rem;
        }

        /* Short description style inside body */
        .recruitment-page .short-desc {
            font-size: 1.05rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .recruitment-page .support-title {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        /* Modernized Support Items Layout (Horizontal Capsules) */
        .recruitment-page .horizontal-capsules {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 1.8rem;
        }
        .recruitment-page .horizontal-capsules li {
            background-color: var(--bg-light);
            color: var(--text-dark);
            padding: 0.5rem 1.1rem;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 30px;
            border: 1px solid rgba(10, 45, 92, 0.05);
            display: inline-flex;
            align-items: center;
        }
        .recruitment-page .horizontal-capsules li::before {
            content: "✓";
            margin-right: 8px;
            color: var(--accent-color);
            font-weight: bold;
        }

        /* Tech/Platform Badge Section */
        .recruitment-page .platform-box {
            background-color: #061c3a;
            padding: 1.5rem;
            border-radius: 6px;
            margin-top: 1rem;
        }
        .recruitment-page .platform-box h4 {
            color: var(--text-light);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.8rem;
        }
        .recruitment-page .tech-tags-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .recruitment-page .tech-tag {
            background-color: rgba(255, 255, 255, 0.08);
            color: var(--accent-color);
            padding: 0.35rem 0.9rem;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Bottom Strategic Summary Frame */
        .recruitment-page .summary-section {
            background-color: var(--primary-color);
            color: var(--text-light);
            text-align: center;
        }
        .recruitment-page .summary-content {
            max-width: 900px;
            margin: 0 auto;
        }
        .recruitment-page .summary-content h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }
        .recruitment-page .summary-content p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 1.2rem;
        }

        /* ==================================================================
           PARENT-MARKED SUBPAGE CONTENT STYLES (.logistics-page)
           ================================================================== */
        
        /* Inner Hero Banner Styles */
        .logistics-page .inner-hero {
            background: linear-gradient(rgba(10, 45, 92, 0.92), rgba(10, 45, 92, 0.92)), 
                        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070') center/cover no-repeat;
            color: var(--text-light);
            text-align: center;
            padding: 4.5rem 0;
        }
        .logistics-page .inner-hero h1 {
            font-size: 2.6rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .logistics-page .inner-hero p {
            font-size: 1.1rem;
            opacity: 0.85;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Capabilities Modular Grid Styles */
        .logistics-page .capabilities-section {
            background-color: var(--bg-white);
        }
        .logistics-page .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 2.5rem;
        }
        
        /* Operational Capability Card Component */
        .logistics-page .capability-card {
            background-color: var(--bg-light);
            padding: 2.5rem 2rem;
            border-radius: 6px;
            border-top: 3px solid var(--primary-color);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 12px rgba(10, 45, 92, 0.02);
        }
        .logistics-page .capability-card:hover {
            transform: translateY(-4px);
            border-top-color: var(--accent-color);
            box-shadow: 0 10px 25px rgba(10, 45, 92, 0.06);
        }
        .logistics-page .capability-card h2 {
            font-size: 1.35rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }
        .logistics-page .capability-card .description {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }
        .logistics-page .capability-card h3 {
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        /* Checklists inside Capability Cards */
        .logistics-page .support-list {
            margin-bottom: 0.5rem;
        }
        .logistics-page .support-list li {
            position: relative;
            padding-left: 1.4rem;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            color: var(--text-dark);
        }
        .logistics-page .support-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        /* Value Propositions Framework (Why Choose Us) Styles */
        .logistics-page .value-section {
            background-color: var(--bg-light);
        }
        .logistics-page .value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .logistics-page .value-card {
            background-color: var(--bg-white);
            padding: 2.2rem 1.8rem;
            border-radius: 6px;
            box-shadow: 0 4px 15px rgba(10, 45, 92, 0.02);
            transition: var(--transition);
        }
        .logistics-page .value-card:hover {
            box-shadow: 0 10px 25px rgba(10, 45, 92, 0.07);
        }
        .logistics-page .value-card h3 {
            color: var(--primary-color);
            font-size: 1.25rem;
            margin-bottom: 0.6rem;
            font-weight: 700;
        }
        .logistics-page .value-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Bottom Strategic Approach Section Styles */
        .logistics-page .approach-section {
            background-color: var(--primary-color);
            color: var(--text-light);
            text-align: center;
        }
        .logistics-page .approach-content {
            max-width: 900px;
            margin: 0 auto;
        }
        .logistics-page .approach-content h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }
        .logistics-page .approach-content p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 1.2rem;
        }

        /* Inner Hero Banner Styles */
        .payroll-page .inner-hero {
            background: linear-gradient(rgba(10, 45, 92, 0.92), rgba(10, 45, 92, 0.92)), 
                        url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?q=80&w=2070') center/cover no-repeat;
            color: var(--text-light);
            text-align: center;
            padding: 4.5rem 0;
        }
        .payroll-page .inner-hero h1 {
            font-size: 2.6rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .payroll-page .inner-hero p {
            font-size: 1.1rem;
            opacity: 0.85;
            max-width: 850px;
            margin: 0 auto;
        }

        /* Capabilities Modular Grid Styles */
        .payroll-page .capabilities-section {
            background-color: var(--bg-white);
        }
        .payroll-page .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 2.5rem;
        }
        
        /* Operational Capability Card Component */
        .payroll-page .capability-card {
            background-color: var(--bg-light);
            padding: 2.5rem 2rem;
            border-radius: 6px;
            border-top: 3px solid var(--primary-color);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 12px rgba(10, 45, 92, 0.02);
        }
        .payroll-page .capability-card:hover {
            transform: translateY(-4px);
            border-top-color: var(--accent-color);
            box-shadow: 0 10px 25px rgba(10, 45, 92, 0.06);
        }
        .payroll-page .capability-card h2 {
            font-size: 1.35rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }
        .payroll-page .capability-card .description {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }
        .payroll-page .capability-card h3 {
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        /* Checklists inside Capability Cards */
        .payroll-page .support-list {
            margin-bottom: 1.5rem;
        }
        .payroll-page .support-list li {
            position: relative;
            padding-left: 1.4rem;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            color: var(--text-dark);
        }
        .payroll-page .support-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        /* System Platforms/Tools Integration Tags */
        .payroll-page .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }
        .payroll-page .tech-tag {
            background-color: rgba(59, 163, 236, 0.12);
            color: var(--primary-color);
            padding: 0.3rem 0.8rem;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 4px;
            border: 1px solid rgba(59, 163, 236, 0.15);
        }

        /* Value Propositions Framework (Why Choose Us) Styles */
        .payroll-page .value-section {
            background-color: var(--bg-light);
        }
        .payroll-page .value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .payroll-page .value-card {
            background-color: var(--bg-white);
            padding: 2.2rem 1.8rem;
            border-radius: 6px;
            box-shadow: 0 4px 15px rgba(10, 45, 92, 0.02);
            transition: var(--transition);
        }
        .payroll-page .value-card:hover {
            box-shadow: 0 10px 25px rgba(10, 45, 92, 0.07);
        }
        .payroll-page .value-card h3 {
            color: var(--primary-color);
            font-size: 1.25rem;
            margin-bottom: 0.6rem;
            font-weight: 700;
        }
        .payroll-page .value-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Bottom Strategic Approach Section Styles */
        .payroll-page .approach-section {
            background-color: var(--primary-color);
            color: var(--text-light);
            text-align: center;
        }
        .payroll-page .approach-content {
            max-width: 900px;
            margin: 0 auto;
        }
        .payroll-page .approach-content h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }
        .payroll-page .approach-content p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 1.2rem;
        }

        /* ==================================================================
           PARENT-MARKED SUBPAGE CONTENT STYLES (.contact-page)
           ================================================================== */
        
        /* Inner Page Title Header Underline Override helper */
        .contact-page .section-title {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.6rem;
        }
        .contact-page .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }

        /* Split Section Content Layout Structure */
        .contact-page .contact-split-section {
            background-color: var(--bg-white);
        }
        .contact-page .split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        /* Left Content Column Styling */
        .contact-page .info-column h1 {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }
        .contact-page .info-column p {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }
        .contact-page .office-details {
            margin-top: 3rem;
            border-top: 1px solid #e2eaf4;
            padding-top: 2rem;
        }
        .contact-page .detail-item {
            margin-bottom: 1.5rem;
        }
        .contact-page .detail-item h3 {
            font-size: 1rem;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.3rem;
        }
        .contact-page .detail-item p {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 0;
        }

        /* Right Column Form Component Styling */
        .contact-page .form-column {
            background-color: var(--bg-light);
            padding: 3rem 2.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(10, 45, 92, 0.02);
            border-top: 4px solid var(--primary-color);
        }
        .contact-page .intake-form {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        .contact-page .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }
        .contact-page .form-group label {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--primary-color);
        }
        .contact-page .form-group input, 
        .contact-page .form-group select, 
        .contact-page .form-group textarea {
            padding: 0.85rem;
            border: 1px solid #c8d3e0;
            border-radius: 4px;
            font-family: var(--font-main);
            font-size: 0.95rem;
            background-color: var(--bg-white);
            color: var(--text-dark);
            transition: var(--transition);
        }
        .contact-page .form-group input:focus, 
        .contact-page .form-group select:focus, 
        .contact-page .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 6px rgba(59, 163, 236, 0.25);
        }
        .contact-page .form-submit-btn {
            background-color: var(--accent-color);
            color: var(--text-light);
            padding: 1rem;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(59, 163, 236, 0.2);
            transition: var(--transition);
            margin-top: 0.5rem;
        }
        .contact-page .form-submit-btn:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(59, 163, 236, 0.35);
        }

         @media (max-width: 968px) {
            .inner-hero h1{line-height: 1.3; font-size: 30px; margin-bottom: 25px;}
            .inner-hero p{font-size: 18px;}
            .section-title{text-align: left !important; font-size: 24px; line-height: 1.3;}
            .vm-grid {grid-template-columns: 1fr;}
            .contact-page .form-column { padding: 2rem 1.5rem; }
            .contact-page .split-grid { grid-template-columns: 1fr; gap: 3.5rem; }
            .recruitment-page .accordion-header { padding: 1.2rem 1.5rem; }
            .recruitment-page .accordion-body-inner { padding: 0 1.5rem 1.5rem 1.5rem; }
         }

         /* ==================================================================
           PARENT-MARKED MODERNIZED SINGLE-CARD SLIDER ARCHITECTURE
           ================================================================== */
        .modern-services-section {
            background-color: var(--bg-light);
            position: relative;
        }

        .modern-services-section .title-break{font-size: 18px;}
        .modern-services-section .performance-section-title::after {bottom: -5px;}

        /* Slider viewport locks layout size directly to your template container rules */
        .modern-services-section .slider-viewport {
            width: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(10, 45, 92, 0.08);
        }

        /* Hardware accelerated sliding track layout */
        .modern-services-section .slider-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            width: 700%; /* Spans 7 distinct enterprise capability slides smoothly */
        }

        /* Individual feature showcase canvas */
        .modern-services-section .capability-slide {
            width: 14.2857%; /* Precise footprint configuration (100% / 7 slides) */
            position: relative;
            min-height: 480px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        /* Background image contained safely inside the parent border bounds */
        .modern-services-section .slide-bg-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .modern-services-section .slide-bg-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* Dark premium visual overlay for perfect content contrast readabilities */
        .modern-services-section .slide-bg-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0, 0.7) 30%, rgba(0,0,0, 0.5) 100%);
        }

        /* Content board elements styled cleanly over the HTML background container */
        .modern-services-section .slide-content-overlay {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 4rem 3.5rem;
            color: var(--text-light);
        }

        /* Element Order 1: Title Styling */
        .modern-services-section .slide-content-overlay h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
            letter-spacing: -0.5px;
            color: var(--text-light);
        }

        /* Element Order 2: Subtitle Styling */
        .modern-services-section .slide-content-overlay .subtitle {
            font-size: 1.05rem;
            font-style: italic;
            color: var(--accent-color); /* Matches your exact brand sky blue color accent */
            font-weight: 600;
            margin-bottom: 2.2rem;
        }

        /* Element Order 3: Horizontal Inline Flex List Layout */
        .modern-services-section .horizontal-tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 2.2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        }

        .modern-services-section .horizontal-tags-list li {
            background-color: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 0.5rem 1.2rem;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 30px; /* Modern capsule badge pill look */
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }

        .modern-services-section .horizontal-tags-list li::before {
            content: "✓";
            margin-right: 8px;
            color: var(--accent-color);
            font-weight: bold;
        }

        .modern-services-section .capability-slide:hover .horizontal-tags-list li {
            background-color: rgba(255, 255, 255, 0.12);
            border-color: rgba(59, 163, 236, 0.4);
        }

        /* Element Order 4: Brief Description Paragraph Placement */
        .modern-services-section .short-desc {
            font-size: 1.1rem;
            line-height: 1.7;
            max-width: 850px;
            color: rgba(255, 255, 255, 0.85);
        }

        /* Navigation Controls Base */
        .modern-services-section .controls-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 2rem;
        }

        .modern-services-section .nav-bullet {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #cbd5e1;
            cursor: pointer;
            transition: var(--transition);
        }

        .modern-services-section .nav-bullet.active {
            background-color: var(--accent-color);
            transform: scale(1.3);
        }

        /* ==================================================================
           MOBILE RESPONSIVE SYSTEM OVERRIDES
           ================================================================== */
        @media (max-width: 968px) {
            .modern-services-section .slide-content-overlay {
                padding: 3rem 2rem;
            }
            .modern-services-section .slide-content-overlay h3 {
                font-size: 1.6rem;
            }
            .modern-services-section .capability-slide {
                min-height: auto; /* Allow box height scaling dynamically over text rows */
            }
        }

        @media (max-width: 768px) {
            /* Deactivates complex sliding animations on smaller touch viewports for scannability */
            .modern-services-section .slider-track {
                transform: none !important;
                flex-direction: column;
                width: 100%;
            }
            .modern-services-section .capability-slide {
                width: 100%;
                margin-bottom: 2rem;
                border-radius: 8px;
            }
            .modern-services-section .controls-wrapper {
                display: none; /* Hides floating indicators when layout converts to cards block stacked grid style */
            }
            /* Stack list elements natively inside tight screens if horizontal breaks line lengths */
            .modern-services-section .horizontal-tags-list {
                flex-direction: column;
                align-items: start;
                gap: 8px;
                border-bottom: none;
                margin-bottom: 1.5rem;
                padding-bottom: 0;
            }
            .modern-services-section .horizontal-tags-list li {
                width: 100%; /* Span full internal row sizing */
                border-radius: 6px;
            }
        }

        /* Inner Page Title Header */
        .about-story-page .inner-hero {
            background: linear-gradient(rgba(10, 45, 92, 0.92), rgba(10, 45, 92, 0.92)), 
                        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1200') center/cover no-repeat;
            color: var(--text-light);
            text-align: center;
            padding: 4.5rem 0;
        }
        .about-story-page .inner-hero h1 {
            font-size: 2.6rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        /* Section 1: Intro Story & Narrative */
        .about-story-page .narrative-section {
            background-color: var(--bg-white);
        }
        .about-story-page .narrative-grid {
            display: grid;
            grid-template-columns: 1.12fr 0.88fr;
            gap: 4rem;
            align-items: center;
        }
        .about-story-page .story-text h2 {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        .about-story-page .story-text p {
            font-size: 1.25rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            font-weight: 400;
        }
        .about-story-page .story-text .observation-p {
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--primary-color);
            line-height: 1.4;
            border-left: 4px solid var(--accent-color);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }

        /* Modern 3D Image Composition Frame */
        .about-story-page .image-frame-3d {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(10, 45, 92, 0.15);
            transform: perspective(800px) rotateY(-8deg);
            transition: var(--transition);
        }
        .about-story-page .image-frame-3d:hover {
            transform: perspective(800px) rotateY(0deg) translateY(-5px);
        }

        /* Section 2: Weight Matrix Grid Block */
        .about-story-page .matrix-section {
            background-color: var(--bg-light);
        }
        .about-story-page .weight-matrix-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem; margin-top: 40px;
        }
        .about-story-page .matrix-card {
            background-color: var(--bg-light);
            padding: 2.5rem 1.5rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(10, 45, 92, 0.02);
            transition: var(--transition);
        }
        .about-story-page .matrix-card.highlight-card {
            background-color: var(--primary-color);
            color: var(--text-light);
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(10, 45, 92, 0.15);
        }
        .about-story-page .matrix-card .label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }
        .about-story-page .matrix-card.highlight-card .label {
            color: var(--accent-color);
        }
        .about-story-page .matrix-card .action {
            font-size: 1.35rem;
            font-weight: 700;
        }

        /* Section 3: THE POSTER VISUAL VISIBILITY BLOCK (INTEGRATES Purpose_2.jpg) */
        .about-story-page .poster-section {
            background-color: var(--bg-white);
        }
        .about-story-page .poster-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 5rem;
            align-items: center;
        }
        .about-story-page .poster-display {
            background-color: var(--bg-light);
            padding: 1rem;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(10, 45, 92, 0.08);
            border: 1px solid #e2e8f0;
        }
        .about-story-page .poster-display img {
            border-radius: 8px;
            width: 100%;
        }
        .about-story-page .poster-details h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        .about-story-page .poster-details p {
            font-size: 1.15rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }
        .about-story-page .foundation-bullets {
            margin: 2rem 0;
        }
        .about-story-page .foundation-bullets li {
            font-size: 1rem;
            color: var(--text-muted);
            margin-bottom: 0.6rem;
            position: relative;
            padding-left: 1.5rem;
            font-weight: 500;
        }
        .about-story-page .foundation-bullets li::before {
            content: "✕";
            position: absolute;
            left: 0;
            color: #ef4444;
            font-weight: bold;
        }
        .about-story-page .tri-pill-flex {
            display: flex;
            gap: 10px;
            margin-top: 2rem;
        }
        .about-story-page .tri-pill {
            background-color: var(--bg-light);
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            font-weight: 700;
            border-radius: 4px;
            color: var(--primary-color);
            flex: 1;
            text-align: center;
            border: 1px solid rgba(10, 45, 92, 0.06);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .about-story-page .tri-pill.core {
            background-color: var(--primary-color);
            color: var(--text-light);
        }

        /* Section 4: Operational Friction Split Grid */
        .about-story-page .friction-section {
            background-color: var(--bg-light);
        }
        .about-story-page .friction-grid {
            display: grid;
            grid-template-columns: 1.12fr 0.88fr;
            gap: 4rem;
            align-items: center;
        }
         .about-story-page .friction-text{margin-top: 40px;}
        .about-story-page .friction-text p {
            font-size: 1.25rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }
        .about-story-page .friction-text ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 1.5rem;
        }
        .about-story-page .friction-text li {
            background-color: var(--bg-white);
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            color: var(--primary-color);
            border-left: 4px solid var(--accent-color);
            box-shadow: 0 4px 10px rgba(0,0,0,0.01);
        }
        .about-story-page .image-frame-3d-left {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            xbox-shadow: 0 15px 35px rgba(10, 45, 92, 0.15);
            transform: perspective(800px) rotateY(8deg);
            transition: var(--transition);
        }
        .about-story-page .image-frame-3d-left  img{width: 400px;}
        .about-story-page .image-frame-3d-left:hover {
            transform: perspective(800px) rotateY(0deg) translateY(-5px);
        }

        /* Section 5: Execution Core Frame Block */
        .about-story-page .execution-section {
            background-color: #061c3a;
            color: var(--text-light);
            text-align: center;
        }
        .about-story-page .execution-box {
            max-width: 850px;
            margin: 0 auto;
        }
        .about-story-page .execution-box h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: var(--text-light);
        }
        .about-story-page .execution-box .highlight-p {
            font-size: 1.5rem;
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 2rem;
        }
        .about-story-page .execution-box .role-statement {
            font-size: 1.2rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            padding: 2rem;
            background-color: rgba(255, 255, 255, 0.04);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        /* Section 6: Growth Summary Callout */
        .about-story-page .growth-summary {
            background-color: var(--bg-white);
            text-align: center;
            padding: 2rem 0;
        }
        .about-story-page .growth-summary p {
            font-size: 1.4rem;
            color: var(--text-muted);
            margin-bottom: 0.3rem;
        }
        .about-story-page .growth-summary h2 {
            font-size: 2.4rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Section 7: Leadership Connection Card */
        .about-story-page .leadership-section {
            background-color: var(--bg-light);
            border-top: 1px solid #e2e8f0;
        }
        .about-story-page .leadership-card {
            max-width: 650px;
            margin: 0 auto;
            background-color: var(--bg-white);
            padding: 3rem;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(10, 45, 92, 0.04);
            text-align: center;
            border-bottom: 4px solid var(--primary-color);
        }
        .about-story-page .leadership-card h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 0.2rem;
        }
        .about-story-page .leadership-card .title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
        }
        .about-story-page .linkedin-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #0077b5;
            color: var(--text-light);
            padding: 0.7rem 1.8rem;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        .about-story-page .linkedin-btn:hover {
            background-color: #005988;
            transform: translateY(-2px);
        }

        /* ==================================================================
   PARENT-MARKED SINGLE COLUMN HOME MODULE (.performance-overview-section)
   ================================================================== */

.performance-overview-section {
  background-color: #ffffff;
  color: #223247;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
}

.performance-overview-section .performance-container {
  width: 90%;
  max-width: 950px; /* Constrained to an optimal reading width for elegant single-column text flow */
  margin: 0 auto;
  padding: 5rem 0;
}

/* Section Main Title matching main site identity */
.performance-section-title {
  font-size: 2.2rem;
  color: #0a2d5c;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.6rem;
  line-height: 1.25;
}

.performance-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #3ba3ec;
}

.title-break {
  display: block;
  font-weight: 400;
  color: #223247;
}

/* Strategic Text Copy Core Styling */
.performance-overview-section .performance-narrative {
  margin-bottom: 3.5rem;
}

.performance-overview-section .performance-narrative p {
  font-size: 1.15rem;
  color: #556882;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.performance-overview-section .performance-narrative .lead-paragraph {
  font-size: 1.25rem;
  color: #223247;
  font-weight: 500;
}

/* Barriers & Overcomes Container */
.performance-overview-section .barriers-wrapper {
  margin-bottom: 4rem;
}

.performance-overview-section .content-subheading {
  font-size: 1.3rem;
  color: #0a2d5c;
  margin-bottom: 1.8rem;
  font-weight: 700;
}

/* Custom Minimalist Bullet Points */
.performance-overview-section .performance-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.performance-overview-section .performance-checklist li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #556882;
  line-height: 1.5;
}

.performance-overview-section .performance-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #3ba3ec;
  font-weight: bold;
  font-size: 1.1rem;
}

/* HIGH-LEVEL HIGHLIGHT 1: Structural Capability Callout Container */
 .capability-highlight-box {
  background-color: #f4f8fc;
  padding: 3rem;
  border-radius: 4px;
  border-left: 5px solid #0a2d5c; /* Thick navy anchor left line */
  margin-bottom: 3.5rem;
}

.highlight-statement-title {
  font-size: 1.5rem;
  color: #0a2d5c;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1.2rem;
}

.highlight-statement-body {
  font-size: 1.1rem;
  color: #556882;
  line-height: 1.65;
  margin: 0;
}

/* HIGH-LEVEL HIGHLIGHT 2: Philosophy Structural Footprint */
.performance-overview-section .philosophy-footer-container {
  border-top: 1px solid #c8d3e0;
  padding-top: 3rem;
}

.performance-overview-section .philosophy-motto-heading {
  font-size: 1.5rem;
  color: #0a2d5c;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.2px;
}

.performance-overview-section .philosophy-body-text {
  font-size: 1.05rem;
  color: #556882;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.performance-overview-section .philosophy-core-trust {
  font-size: 1.1rem;
  color: #0a2d5c;
  font-weight: 600;
  font-style: italic;
  margin: 0;
}

/* ==================================================================
   MOBILE RE-ALIGNMENT SYSTEM BREAKPOINTS
   ================================================================== */
@media (max-width: 768px) {
  .performance-overview-section .performance-section-title {
    font-size: 1.8rem;
  }
 .capability-highlight-box {
    padding: 2rem 1.5rem;
  }
 .highlight-statement-title {
    font-size: 1.3rem;
  }
  .philosophy-motto-heading {
    font-size: 1.3rem;
  }
}
/* ==================================================================
   PARENT-MARKED CONTENT HOOK ARCHITECTURE (.perfect-for-section)
   ================================================================== */

.perfect-for-section {
  background-color: #ffffff;
  color: #1e293b;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
}

.perfect-for-section .pf-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Master Section Typography Line Identities */
.pf-section-title {
  font-size: 2rem;
  color: #0a2d5c;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.6rem;
  line-height: 1.3;
  font-weight: 700;
}

.pf-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #3ba3ec;
}

.pf-section-title.text-center {
  text-align: center;
}
.pf-section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Row 1: Split Dynamic Narrative Hero Track */
.perfect-for-section .pf-intro-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.perfect-for-section .pf-headline-tag {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #3ba3ec;
  margin-bottom: 0.5rem;
  font-weight: 700;
  display: block;
}

.perfect-for-section .pf-reveal-statement {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0a2d5c;
  line-height: 1.4;
  border-left: 4px solid #3ba3ec;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.perfect-for-section .pf-lead-desc {
  font-size: 1.15rem;
  color: #64748b;
  margin-bottom: 1.2rem;
}

.perfect-for-section .pf-body-desc {
  font-size: 1.1rem;
  color: #1e293b;
}

/* Modern Asymmetrical 3D Photo Render Canvas */
 .pf-image-frame-3d {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(10, 45, 92, 0.12);
  xtransform: perspective(800px) rotateY(-6deg);
  transition: all 0.4s ease-in-out;
}

/* .perfect-for-section .pf-image-frame-3d:hover {
  transform: perspective(800px) rotateY(0deg) translateY(-5px);
  box-shadow: 0 20px 40px rgba(10, 45, 92, 0.18);
} */

.pf-image-frame-3d img {
  width: 100%;
  display: block;
}

.recruitment-page .pf-image-frame-3d {margin-bottom: 30px;}

/* Row 2: Criteria Targeted Dual List Track */
.perfect-for-section .pf-criteria-wrapper {
  background-color: #f8fafc;
  padding: 4rem 3rem;
  border-radius: 8px;
  margin-bottom: 5rem;
  border: 1px solid #e2e8f0;
}

.perfect-for-section .pf-criteria-lead {
  font-size: 1.15rem;
  color: #1e293b;
  margin-bottom: 2.5rem;
  max-width: 900px;
}

.perfect-for-section .pf-criteria-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.perfect-for-section .pf-criteria-checklist li {
  position: relative;
  font-size: 1.05rem;
  color: #1e293b;
  background-color: #ffffff;
  padding: 1.2rem 1.2rem 1.2rem 2.8rem;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(10, 45, 92, 0.01);
  border-left: 3px solid transparent;
  transition: all 0.3s ease-in-out;
}

.perfect-for-section .pf-criteria-checklist li:hover {
  border-left-color: #3ba3ec;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(10, 45, 92, 0.04);
}

.perfect-for-section .pf-criteria-checklist li::before {
  content: "✓";
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  color: #3ba3ec;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Row 3: Capabilities Value Cards Grid */
.perfect-for-section .pf-achieve-wrapper {
  margin-bottom: 5rem;
}

.perfect-for-section .pf-achieve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.perfect-for-section .pf-achieve-card {
  background-color: #f8fafc;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border-top: 3px solid #0a2d5c;
  transition: all 0.3s ease-in-out;
}

.perfect-for-section .pf-achieve-card:hover {
  border-top-color: #3ba3ec;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(10, 45, 92, 0.05);
}

.perfect-for-section .pf-achieve-card h3 {
  color: #0a2d5c;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.perfect-for-section .pf-achieve-card p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

/* Row 4: Industry Segments Flexible Pill Capsules */
.perfect-for-section .pf-segments-wrapper {
  margin-bottom: 5rem;
}

.perfect-for-section .pf-capsule-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 3rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.perfect-for-section .pf-industry-capsule {
  background-color: #f8fafc;
  color: #0a2d5c;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  border: 1px solid rgba(10, 45, 92, 0.06);
  box-shadow: 0 4px 12px rgba(10, 45, 92, 0.01);
  transition: all 0.3s ease-in-out;
}

.perfect-for-section .pf-industry-capsule:hover {
  background-color: #0a2d5c;
  color: #ffffff;
  border-color: #0a2d5c;
  transform: translateY(-2px);
}

/* Row 5: Strategic Executive Bottom Callout Banner */
.perfect-for-section .pf-conclusion-banner {
  background: linear-gradient(135deg, #061c3a 0%, #0a2d5c 100%);
  color: #ffffff;
  text-align: center;
  padding: 4.5rem 3.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(6, 28, 58, 0.1);
}

.perfect-for-section .pf-conclusion-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.perfect-for-section .pf-conclusion-banner p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.perfect-for-section .pf-conclusion-banner p:last-child {
  margin-bottom: 0;
}

/* ==================================================================
   RESPONSIVE COMPONENT SYSTEM VIEWPORT QUERY DECK
   ================================================================== */
@media (max-width: 968px) {
  .perfect-for-section .pf-intro-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .perfect-for-section .pf-image-frame-3d {
    transform: none !important;
    max-width: 500px;
    margin: 0 auto;
  }
  .perfect-for-section .pf-criteria-checklist {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .perfect-for-section .pf-criteria-wrapper {
    padding: 3rem 1.75rem;
  }
}

@media (max-width: 768px) {
  .perfect-for-section .pf-container {
    padding: 2.5rem 0;
  }
  .perfect-for-section .pf-section-title {
    font-size: 1.7rem;
  }
  .perfect-for-section .pf-reveal-statement {
    font-size: 1.3rem;
  }
  .perfect-for-section .pf-conclusion-banner {
    padding: 3rem 1.5rem;
  }
  .perfect-for-section .pf-conclusion-banner h2 {
    font-size: 1.6rem;
  }
}

.img-responsive{max-width: 100%; display: inline-block;}

.stage {
                    background: #08121F;
                    padding: 5.5rem 4.5rem 6rem;
                    border-radius: 12px;
                    position: relative;
                    overflow: hidden;
                    font-family: 'Cormorant Garamond', Georgia, serif;  margin-bottom: 40px;
                }
                .stage .grid-bg {
                    position: absolute; inset: 0;
                    background-image:
                    linear-gradient(rgba(196,155,42,0.09) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(196,155,42,0.09) 1px, transparent 1px);
                    background-size: 60px 60px;
                    pointer-events: none;
                }
                .stage .vignette {
                    position: absolute; inset: 0;
                    background: radial-gradient(ellipse 90% 90% at 42% 48%, transparent 20%, #08121F 72%);
                    pointer-events: none;
                }
                .stage .inner { position: relative; z-index: 2; }
                .stage .eyebrow {
                    font-family: 'Space Mono', monospace;
                    font-size: 0.52rem;
                    letter-spacing: 0.34em;
                    color: #C49B2A;
                    text-transform: uppercase;
                    display: flex;
                    align-items: center;
                    gap: 0.875rem;
                    margin-bottom: 2.5rem;
                }
                .stage .eyebrow::before {
                    content: '';
                    width: 2.25rem; height: 1px;
                    background: currentColor;
                    opacity: 0.4;
                }
                .stage .l1 {
                    display: block;
                    font-size: clamp(2rem, 4.5vw, 3.875rem);
                    font-weight: 300;
                    color: rgba(255,255,255,0.92);
                    line-height: 1.08;
                    letter-spacing: -0.01em;
                }
                .stage .l2 {
                    display: block;
                    font-size: clamp(2rem, 4.5vw, 3.875rem);
                    font-style: italic;
                    font-weight: 300;
                    color: #C49B2A;
                    line-height: 1.08;
                    letter-spacing: -0.01em;
                    margin-top: 0.1em;
                }
                .stage .rule {
                    margin-top: 3rem;
                    display: flex;
                    align-items: center;
                    gap: 1.25rem;
                }
                .stage .rule-line { width: 2.5rem; height: 1px; background: rgba(196,155,42,0.22); flex-shrink:0; }
                .stage .rule-text {
                    font-family: 'Space Mono', monospace;
                    font-size: 0.48rem;
                    letter-spacing: 0.28em;
                    color: #3E566E;
                    text-transform: uppercase;
                }

                /* ===========================
   ABOUT HEADER
=========================== */

.about-header {
    position: relative;
    background: #08162c;
    overflow: hidden;
    padding: 80px 40px;
}

/* subtle grid background */
.about-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 54px 54px;
    pointer-events: none;
}

/* gold border */
.about-header__inner {
    position: relative;
    z-index: 2;
    min-height: 360px;
    border: 1px solid rgba(193,146,58,.9);
    padding: 42px 28px;
    display: flex;
    flex-direction: column;
}

/* small heading */
.about-header__label {
    color: #b7832d;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 50px;
    font-family: Arial, sans-serif;
}

/* main heading */
.about-header__title {
    margin: 0;
    max-width: 650px;
    line-height: 1.15;
    font-weight: 300;
    font-family: Georgia, "Times New Roman", serif;
}

.about-header__title span {
    display: block;
    color: #e8d8d6;
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 300;
}

.about-header__title strong {
    display: block;
    margin-top: 8px;
    color: #c79742;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 500;
}

/* gold line */
.about-header__line {
    width: 36px;
    height: 2px;
    background: #b7832d;
    margin-top: 55px;
}

/* tagline */
.about-header__tagline {
    margin-top: 35px;
    color: rgba(230,230,230,.45);
    font-size: 20px;
    font-style: italic;
    font-family: Georgia, serif;
}

/* bottom right logo */
.about-header__brand {
    position: absolute;
    right: 22px;
    bottom: 12px;
    color: rgba(54,84,133,.7);
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 992px) {

    .about-header {
        padding: 50px 25px;
    }

    .about-header__inner {
        min-height: auto;
        padding: 35px 25px 60px;
    }

    .about-header__label {
        margin-bottom: 35px;
    }

    .about-header__line {
        margin-top: 40px;
    }

    .about-header__tagline {
        margin-top: 25px;
        font-size: 18px;
    }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 576px) {

    .about-header {
        padding: 20px;
    }

    .about-header__inner {
        padding: 25px 20px 55px;
    }

    .about-header__label {
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 25px;
    }

    .about-header__title span {
        font-size: 34px;
    }

    .about-header__title strong {
        font-size: 38px;
    }

    .about-header__line {
        margin-top: 30px;
        width: 30px;
    }

    .about-header__tagline {
        font-size: 16px;
    }

    .about-header__brand {
        right: 16px;
        bottom: 10px;
        font-size: 9px;
        letter-spacing: 3px;
    }
}
/* ====================================
   PF HEADER
==================================== */

.pfheader {
    position: relative;
    background: #08162c;
    overflow: hidden;
    padding: 90px 60px;
}

/* Grid Background */

.pfheader::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.pfheader__container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

/* Top Label */

.pfheader__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 45px;
}

.pfheader__line {
    width: 40px;
    height: 1px;
    background: #c89b43;
}

.pfheader__label {
    color: #c89b43;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 11px;
    font-family: Arial, sans-serif;
}

/* Heading */

.pfheader__title {
    margin: 0;
    color: #e9e7ea;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 300;
    line-height: 1.15;
    max-width: 1100px;
}

.pfheader__title span {
    display: block;
    margin-top: 18px;
    color: #c89b43;
    font-style: italic;
    font-weight: 300; font-size: 36px;
}

/* Footer */

.pfheader__footer {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.pfheader__footer-line {
    width: 40px;
    height: 1px;
    background: #c89b43;
}

.pfheader__footer p {
    margin: 0;
    color: rgba(79, 116, 175, .8);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
}

.pfheader__footer p span {
    margin: 0 14px;
}

/* ==========================
   Tablet
========================== */

@media (max-width:992px){

    .pfheader{
        padding:70px 35px;
    }

    .pfheader__title{
        font-size:36px;
    }

    .pfheader__footer{
        margin-top:45px;
    }

}

/* ==========================
   Mobile
========================== */

@media (max-width:768px){

    .pfheader{
        padding:50px 20px;
    }

    .pfheader__top{
        margin-bottom:30px;
    }

    .pfheader__title{
        font-size:24rem;
        line-height:1.2;
    }

    .pfheader__title span{
        margin-top:12px;
    }

    .pfheader__footer{
        margin-top:35px;
        align-items:flex-start;
        gap:12px;
    }

    .pfheader__footer p{
        font-size:9px;
        line-height:1.7;
        letter-spacing:2px;
    }

}

/* ==========================
   Small Mobile
========================== */

@media (max-width:480px){

    .pfheader{
        padding:40px 18px;
    }

    .pfheader__title{
        font-size:1.8rem;
    }

    .pfheader__label{
        font-size:10px;
        letter-spacing:3px;
    }

    .pfheader__line,
    .pfheader__footer-line{
        width:30px;
    }

}
/* ==================================================================
   DEDICATED MOBILE ACCORDION THEME ARCHITECTURE (.mobile-adv-accordion)
   ================================================================== */
   
   #services-mobile{display: none;}

   @media (max-width:768px){
 #services-mobile{display: block;}
 #services{display: none;}
   }

.mobile-adv-accordion {
    background-color: #ffffff;
    width: 100%;
}

.mobile-adv-accordion .ma-container {
    width: 90%;
    margin: 0 auto;
    padding: 3.5rem 0;
}

.mobile-adv-accordion .ma-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.mobile-adv-accordion .ma-item {
    border: 1px solid rgba(10, 45, 92, 0.08);
    border-radius: 8px;
    background-color: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Header Trigger Layout */
.mobile-adv-accordion .ma-header {
    width: 100%;
    padding: 1.35rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.mobile-adv-accordion .ma-header h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #0a2d5c;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Symmetrical Dynamic Icon Setup (+ / X mechanics) */
.mobile-adv-accordion .ma-toggle-icon {
    position: relative;
    width: 14px;
    height: 14px;
    transform: rotate(0deg);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-adv-accordion .ma-toggle-icon::before,
.mobile-adv-accordion .ma-toggle-icon::after {
    content: '';
    position: absolute;
    background-color: #0a2d5c;
    transition: all 0.3s ease-in-out;
}

/* Horizontal line component of plus */
.mobile-adv-accordion .ma-toggle-icon::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
}

/* Vertical line component of plus */
.mobile-adv-accordion .ma-toggle-icon::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
}

/* Sliding Drawer Panel Container */
.mobile-adv-accordion .ma-panel-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Inner Layout Elements Replicating Desktop Slide Content Overlay */
.mobile-adv-accordion .ma-panel-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mobile-adv-accordion .ma-img-wrapper {
    margin-bottom: 1.5rem;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(10, 45, 92, 0.05);
}

.mobile-adv-accordion .ma-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-adv-accordion .ma-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
    color: #0a2d5c;
    margin-bottom: 1.25rem;
}

/* Capsule Badges Grid Layout */
.mobile-adv-accordion .ma-tags-flex {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mobile-adv-accordion .ma-tags-flex li {
    background-color: #f4f8fc;
    color: #223247;
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid rgba(10, 45, 92, 0.05);
    display: inline-block;
}

.mobile-adv-accordion .ma-short-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #556882;
    margin: 0;
}

/* ==================================================================
   STATE CHANGES WHEN ACTIVE CLASS IS ENGAGED
   ================================================================== */
.mobile-adv-accordion .ma-item.active {
    border-left: 4px solid var(--accent-color);
}

.mobile-adv-accordion .ma-item.active .ma-header h3 {
    color: var(--accent-color);
}

/* Turns the Plus sign into a clean diagonal Close Cross on active slide link */
.mobile-adv-accordion .ma-item.active .ma-toggle-icon {
    transform: rotate(45deg);
}

.mobile-adv-accordion .ma-item.active .ma-toggle-icon::before {
    background-color: var(--accent-color);
}

.mobile-adv-accordion .ma-item.active .ma-toggle-icon::after { background-color: var(--accent-color);
    opacity: 1; /* Drops vertical line segment completely creating the flawless 45deg cross */
}

/* ==================================================================
           PARENT-MARKED CONTACT US MASTER ARCHITECTURE (.contact-us-page)
           ================================================================== */
        
        /* Premium Hero Header Component */
        .contact-us-page .cu-hero-section {
            background: linear-gradient(135deg, rgba(6, 28, 58, 0.95) 0%, rgba(10, 45, 92, 0.9) 100%), 
                        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1200') center/cover no-repeat;
            color: var(--text-light);
            padding: 5.5rem 0;
            position: relative;
            overflow: hidden;
            border-bottom: 4px solid var(--accent-color);
        }

        /* Abstract Line Shape Graphic Overlays */
        .contact-us-page .cu-hero-section::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -5%;
            width: 300px;
            height: 600px;
            border-right: 2px solid rgba(255, 255, 255, 0.05);
            transform: rotate(25deg);
            pointer-events: none;
        }

        .contact-us-page .cu-hero-content h1 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            letter-spacing: -0.5px;
        }

        .contact-us-page .cu-hero-content p {
            font-size: 1.25rem;
            opacity: 0.9;
            font-weight: 400;
            margin-bottom: 1.5rem;
        }

        .contact-us-page .cu-hero-bar {
            width: 50px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }

        /* Master Grid Layout Split Core */
        .contact-us-page .cu-main-grid-section {
            background-color: #ffffff;
            padding: 5.5rem 0;
        }

        .contact-us-page .cu-grid-wrapper {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4.5rem;
            align-items: start;
        }

        /* LEFT COLUMN: Informational Copy & Features */
        .contact-us-page .cu-info-block .cu-tagline {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            font-weight: 700;
            margin-bottom: 0.75rem;
            display: block;
        }

        .contact-us-page .cu-info-block h2 {
            font-size: 2.1rem;
            color: var(--primary-color);
            line-height: 1.3;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .contact-us-page .cu-info-block .cu-body-text {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin-bottom: 2.5rem;
        }

        /* 4-Column Micro Feature Pillars Row Layout */
        .contact-us-page .cu-features-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-bottom: 3.5rem;
        }

        .contact-us-page .cu-feature-card {
            text-align: center;
            background: #ffffff;
        }

        .contact-us-page .cu-feature-card .cu-icon-box {
            width: 44px;
            height: 44px;
            margin: 0 auto 0.8rem auto;
            color: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-us-page .cu-feature-card h4 {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.3rem;
        }

        .contact-us-page .cu-feature-card p {
            font-size: 0.75rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* Response Time Alert Callout Frame */
        .contact-us-page .cu-response-alert {
            background-color: #f1f5f9;
            border-radius: 8px;
            padding: 1.5rem 1.8rem;
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }

        .contact-us-page .cu-response-alert .cu-alert-icon {
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .contact-us-page .cu-response-alert h5 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.15rem;
        }

        .contact-us-page .cu-response-alert p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* RIGHT COLUMN: Scoped Form Container Block Card */
        .contact-us-page .cu-form-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
        }

        .contact-us-page .cu-form-group-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .contact-us-page .cu-input-row {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
        }

        .contact-us-page .cu-input-icon-box {
            width: 44px;
            height: 44px;
            background-color: #f1f5f9;
            border-radius: 6px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1.5rem; /* Layout alignment matching input labels */
        }

        .contact-us-page .cu-field-container {
            flex-grow: 1;
        }

        .contact-us-page .cu-field-container label {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.45rem;
        }

        .contact-us-page .cu-field-container input,
        .contact-us-page .cu-field-container select,
        .contact-us-page .cu-field-container textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 6px;
            font-size: 0.95rem;
            font-family: var(--font-main);
            color: var(--text-dark);
            background-color: #ffffff;
            outline: none;
            transition: var(--transition);
        }

        .contact-us-page .cu-field-container input::placeholder,
        .contact-us-page .cu-field-container textarea::placeholder {
            color: #94a3b8;
            font-size: 0.9rem;
        }

        .contact-us-page .cu-field-container input:focus,
        .contact-us-page .cu-field-container select:focus,
        .contact-us-page .cu-field-container textarea:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(59, 163, 236, 0.15);
        }

        .contact-us-page .cu-field-container textarea {
            resize: vertical;
            min-height: 100px;
        }

        /* Form Submission CTA Button Placement Rules */
        .contact-us-page .cu-submit-btn {
            width: 100%;
            background-color: var(--primary-color);
            color: var(--text-light);
            border: none;
            border-radius: 6px;
            padding: 1rem;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1.25rem;
        }

        .contact-us-page .cu-submit-btn:hover {
            background-color: #0d3872;
            box-shadow: 0 5px 15px rgba(10, 45, 92, 0.2);
        }

        .contact-us-page .cu-submit-btn svg {
            transition: transform 0.3s ease;
        }
        .contact-us-page .cu-submit-btn:hover svg {
            transform: translateX(4px);
        }

        /* Privacy Disclaimer Footer Note inside card layout */
        .contact-us-page .cu-privacy-note {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            justify-content: center;
            max-width: 320px;
            margin: 0 auto;
        }

        .contact-us-page .cu-privacy-note svg {
            color: var(--primary-color);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .contact-us-page .cu-privacy-note p {
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* BOTTOM SECTION: Global Trust Alignment Branding Bar */
        .contact-us-page .cu-trust-alignment-strip {
            background-color: var(--bg-light);
            padding: 3rem 0;
            border-top: 1px solid #e2e8f0;
            text-align: center;
        }

        .contact-us-page .cu-trust-alignment-strip h3 {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            font-weight: 700;
            margin-bottom: 2.2rem;
            position: relative;
            display: inline-block;
        }

        .contact-us-page .cu-trust-alignment-strip h3::before,
        .contact-us-page .cu-trust-alignment-strip h3::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 80px;
            height: 1px;
            background-color: #cbd5e1;
        }
        .contact-us-page .cu-trust-alignment-strip h3::before { left: -95px; }
        .contact-us-page .cu-trust-alignment-strip h3::after { right: -95px; }

        .contact-us-page .cu-badge-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-us-page .cu-badge-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            text-align: left;
        }

        .contact-us-page .cu-badge-item svg {
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .contact-us-page .cu-badge-item .cu-badge-text h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1.2;
        }

        .contact-us-page .cu-badge-item .cu-badge-text p {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* --- RESPONSIVE BREAKPOINT QUERY SYSTEM --- */
        @media (max-width: 968px) {
            .contact-us-page .cu-grid-wrapper {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            .contact-us-page .cu-trust-alignment-strip h3::before,
            .contact-us-page .cu-trust-alignment-strip h3::after {
                display: none;
            }
            .contact-us-page .cu-badge-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem 1.5rem;
            }
        }

        @media (max-width: 640px) {
            .contact-us-page .cu-hero-section { padding: 4rem 0; }
            .contact-us-page .cu-hero-content h1 { font-size: 2.4rem; }
            .contact-us-page .cu-main-grid-section { padding: 3.5rem 0; }
            .contact-us-page .cu-info-block h2 { font-size: 1.7rem; }
            .contact-us-page .cu-features-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
            .contact-us-page .cu-form-card { padding: 1.75rem 1.25rem; }
            .contact-us-page .cu-input-icon-box { display: none; } /* Drops left square icons on small phones to maximize field spaces */
            .contact-us-page .cu-badge-grid { grid-template-columns: 1fr; gap: 2rem; }
            .contact-us-page .cu-badge-item { justify-content: flex-start; max-width: 260px; margin: 0 auto; }
        }

        @media (min-width: 992px) {
            /* Forces the row to behave as a flex container */
            .leadership-equal-row {
                display: flex !important;
                flex-wrap: wrap;
                align-items: stretch; /* Stretches both columns to the maximum height */
            }

            /* Instructs columns to adapt flex parameters */
            .leadership-equal-row > [class*='col-'] {
                display: flex;
                flex-direction: column;
            }

            /* Expands the left card block completely to match the column height bounds */
            .leadership-equal-row .leadership-card {
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: center; /* Vertically centers text content within the balanced card space */
                height: 100%;
                margin-bottom: 0; /* Clear baseline spaces */
            }
        }

        /* Base card interior body handling alignment safety */
        .leadership-card-body {
            width: 100%;
            padding: 1rem; /* Adjust padding to look identical to your current template layout */
        }

        /* Ensure the right image stretches nicely across its container block */
        .leadership-equal-row .ratings-section,
        .leadership-equal-row .rating-img,
        .leadership-equal-row .rating-img img {
            height: 100%;
            width: 100%;
            object-fit: cover; /* Keeps image proportions clean */
        }

         .success-popup {
                position: fixed;
                bottom: 80px;
                right: 20px;
                background: #4CAF50;
                color: #fff;
                padding: 15px 25px;
                border-radius: 5px;
                font-family: Arial, sans-serif;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
                display: none;
                z-index: 9999;
            }

            .error-popup {
                position: fixed;
                bottom: 80px;
                right: 20px;
                background: #cc0505;
                color: #fff;
                padding: 15px 25px;
                border-radius: 5px;
                font-family: Arial, sans-serif;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
                display: none;
                z-index: 9999;
            }