        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
        
        :root {
            --primary-color: #990199;
            --bg-color: #000000;
            --border-color: #e2e8f0;
            --text-color: #1e293b;
            --nav-highlight: #990199;
            --purple-glow:var(--nav-highlight);
            --footer-bg: #0f172a;
        }

        html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            /* Performance: smoother text rendering */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            min-height: 100vh;
            min-height: 100svh;
            min-height: -webkit-fill-available;
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            display: flex;
            flex-direction: column;
            background-color: var(--bg-color);
            overflow-x: hidden;
        }

        /* PERFORMANCE FIX: background rendering optimization */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 105%; /* Slight overlap for mobile UI bar */
            z-index: -1;
            background-color: var(--bg-color);
            background-image: 
                linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.5) 100%),
                url('https://res.cloudinary.com/dhlerngui/image/upload/f_auto,q_auto,w_1500/v1771884373/prisoner-in-handcuffs_b5kujr.jpg');
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            /* Force Hardware Acceleration (GPU) */
            will-change: transform;
            transform: translateZ(0);
            pointer-events: none;
        }

        /* Top Navigation Styling */
        .top-nav {
            background-color: rgba(0,0,0,0.1);
            padding: 0 40px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1000;
            margin-bottom: 40px;
        }

        .nav-logo-link {
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo-image {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: rgb(255, 255, 255);
            font-size: 0.9rem;
            font-weight: 600;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--nav-highlight);
        }

        .nav-links a.active {
            color: var(--nav-highlight);
            border-bottom: 2px solid var(--nav-highlight);
            padding-bottom: 4px;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            color: white;
        }

        /* Header Text Styling */
        .title-header {
            width: 75%;
            max-width: 1400px;
            margin: 100px auto 180px auto; 
            text-align: left;
            position: relative;
            z-index: 10;
        }

        .title-header h1 {
            font-family: 'Lato', sans-serif;
            font-weight: 900;
            font-size: 3.5rem;
            color: #ffffff; 
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1.0px;
            line-height: 1.1;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
        }

        .title-header h2 {
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            margin: 5px 0 0 0;
            text-transform: uppercase;
            letter-spacing: 4px;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
        }

        .title-header p {
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            font-size: 1rem;
            line-height: 1.6;
            color: #dddddd; 
            max-width: 700px;
            margin: 20px 0 0 0;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
        }

        /* Stats Section Styling */
        .stats-section {
            width: 75%;
            max-width: 1400px;
            margin: 0 auto 200px auto;
            position: relative;
            z-index: 10;
        }

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

        /* PERFORMANCE FIX: Using slightly more opaque background to rely less on heavy blur() */
        .stat-card {
            background: rgba(30, 30, 30, 0.07);
            padding: 15px;
            border-left: 2px solid var(--nav-highlight); 
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            text-align: left;
            transition: transform 0.2s ease, background 0.2s ease;
            will-change: transform;
        }

        .stat-number {
            display: block;
            font-size: 3rem;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 0;
            line-height: 1;
            letter-spacing: -1px;
        }

        .stat-label {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
        }
        
        .stat-card:hover {
            transform: translateY(-8px);
            background: rgba(40, 40, 40, 0.3);
            border-color: var(--primary-color);
        }

        .glass-banner {
            background-color: rgba(0, 0, 0, 0.45);
            
            /* Optimized Blur: Reducing from 15px to 8px significantly improves performance */
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            
            color: white;
            padding: 5rem 1rem;
            width: 100%;
            text-align: center;
            
            /* The "Hardware Acceleration" Triple-Threat: */
            will-change: transform, backdrop-filter;
            transform: translateZ(0); /* Forces GPU layer in older rendering engines */
            backface-visibility: hidden;
            perspective: 1000;
            margin-bottom: 200px;
        }


        .glass-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            width:85%;
            text-align:center;
        }

        .glass-banner p {
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            font-size: 1.1rem;
            line-height: 1.6;
            color: #dddddd; 
            margin: 20px 0 0 0;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
        }

        /* Page Navigation Cards Section */
        .pages-section {
            width: 75%;
            max-width: 1400px;
            margin: 0 auto 200px auto;
            position: relative;
            z-index: 10;
            flex-grow: 1;
        }

        .pages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .page-card {
            background: rgba(30, 30, 30, 0.4);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(153, 0, 153, 0.2);
            padding: 40px;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            transition: transform 0.2s ease, border-color 0.2s ease;
            will-change: transform;
        }

        .page-card:hover {
            border-color: var(--nav-highlight);
            background: rgba(40, 40, 40, 0.7);
            transform: translateY(-5px);
        }

        .page-card h3 {
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 15px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .page-card p {
            color: #cbd5e1;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0 0 25px 0;
            flex-grow: 1;
        }

        /* Global CTA Button Styling */
        .page-btn-link {
            display: inline-block;
            padding: 10px 20px;
            background: var(--nav-highlight);
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 6px;
            text-align: center;
            transition: background 0.2s ease;
            align-self: flex-start;
        }

        .page-btn-link:hover {
            background: #b500b5;
        }

        /* Mission Section */
        .wdi-info-section {
            width: 100%;
            position: relative;
            z-index: 10;
            overflow: hidden;
        }

        .wdi-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: stretch;
            gap: 0;
            background-color: #ffffff; 
        }

        .wdi-text {
            padding: 80px 80px 80px 15%; 
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: #ffffff;
        }

        .wdi-text h2 {
            font-weight: 900;
            font-size: 1.8rem;
            text-transform: uppercase;
            letter-spacing: -1px;
            margin: 0 0 8px 0; 
            color: var(--nav-highlight);
        }

        .wdi-text p {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #334155;
            margin-bottom: 30px;
            max-width: 550px;
        }

                /* The glowing word styling */
        .glow-word {
            position: relative;
            font-weight: 600;
            color: #ffffff;
            /* Create the glowing outline effect using text-shadow */
            text-shadow: 
                0 0 5px var(--purple-glow),
                0 0 10px var(--purple-glow),
                0 0 20px var(--purple-glow);
            transition: all 0.3s ease;
            cursor: default;
        }


        .wdi-image-wrapper {
            position: relative;
            height: 100%;
            min-height: 400px;
        }

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

        /* Footer Styling */
        .site-footer {
            background-color: #000;
            border-top: 3px solid var(--nav-highlight);
            color: #fff;
            padding: 80px 40px 40px 40px;
            position: relative;
            z-index: 10;
            margin-top: auto;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }

        .footer-logo-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 900;
            font-size: 1.8rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: -1px;
            display: block;
            margin-bottom: 10px;
        }

        .footer-brand p {
            color: #94a3b8;
            font-size: 0.8rem;
            line-height: 1.6;
            margin-top: 15px;
            max-width: 800px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            color: #94a3b8;
            transition: color 0.2s;
        }

        .footer-social a:hover {
            color: var(--nav-highlight);
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
        }

        .footer-heading {
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--nav-highlight);
        }


        .footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    /* This pushes the first child to the left and the last to the right */
    justify-content: space-between; 
    align-items: center;
    color: #64748b;
    font-size: 0.8rem;
    flex-wrap: wrap; /* Keeps it from breaking on small screens */
}

.footer-links {
    display: flex;
    gap: 5px; /* Adds space between the individual links */
}
        .footer-bottom a {
            color: #64748b;
            font-size: 0.75rem;
        }

        @media screen and (max-width: 1000px) {
            body::before {
                background-image: 
                    linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.9) 100%),
                    url('https://res.cloudinary.com/dhlerngui/image/upload/f_auto,q_auto,w_1000/v1771884373/prisoner-in-handcuffs_b5kujr.jpg');
                height: 115%;
            }

            .top-nav { 
                padding: 0 20px;
                position: sticky;
                background-color: white;
                position: sticky;
                top: 0;
            }

            .page-btn-link {
                margin:auto;
            }
            .mobile-toggle { display: block; color: black; }
            
            .nav-links {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: #ffffff;
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-in-out;
            }
            .nav-links.active { max-height: 450px; border-bottom: 1px solid #eee; }
            .nav-links li { width: 100%; border-top: 1px solid var(--border-color); }
            .nav-links a { 
                display: block; 
                padding: 18px 20px; 
                color: #000;
            }
            .nav-links a.active { border-left: 4px solid var(--nav-highlight); border-bottom: none; padding-bottom: 18px; }
        }
        @media screen and (max-width: 768px) {
            .title-header {
                width: 85%;
                margin: 80px auto 100px auto;
            }
            .title-header h1 { font-size: 2.2rem; }
            .title-header p { font-size: 0.9rem; }

            .stats-section, .pages-section { width: 90%; margin-bottom: 100px; }

            .wdi-container { grid-template-columns: 1fr; background-color: transparent; }

            .wdi-text {
                padding: 40px 30px; 
                order: 2;
                margin: -160px auto 80px auto; 
                background-color: #ffffff;
                width: 80%; 
                border-radius: 8px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
                text-align: center;
                align-items: center;
                z-index: 100;
            }

            .wdi-image-wrapper { order: 1; min-height: 350px; }

            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
        }

        
