
    :root {
        /* --- User Provided Variables --- */


        /* --- Internal Mapping --- */
        --primary: var(--primary-color);
        --secondary: var(--secondary-color);
        --bg-dark: var(--bg-light);
        --bg-panel: var(--white);
        --text-main: var(--text-dark);
        --text-muted: var(--text-light);
        --border: #e5e7eb;
        --glass: rgba(255, 255, 255, 0.8);
    }




    .container98 {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    /* --- AdSense Styles --- */
    .ad-container {
        width: 100%;
        margin: 40px auto;
        text-align: center;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100px;
    }

    .ad-label {
        display: block;
        font-size: 0.7rem;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    /* =========================================
       HERO SECTION (RESPONSIVE UPDATE)
       ========================================= */
    .cyber-hero {
        position: relative;
        min-height: 85vh; /* Reduced slightly to fit better on mobile */
        display: flex;
        align-items: center;
        overflow: hidden;
        padding: 60px 0; /* Adjusted padding */
        background: var(--white);
    }

    .cyber-grid {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-image: 
            linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
        background-size: 40px 40px;
        perspective: 500px;
        transform-style: preserve-3d;
        z-index: 0;
        mask-image: radial-gradient(circle, black 60%, transparent 100%);
    }

    .cyber-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        z-index: 1;
        opacity: 0.3;
        animation: floatOrb 10s infinite ease-in-out;
    }

    .cyber-orb:nth-child(2) {
        width: 300px; height: 300px;
        background: var(--primary-color);
        top: 10%; left: -50px;
        animation-delay: 0s;
    }

    .cyber-orb:nth-child(3) {
        width: 400px; height: 400px;
        background: var(--secondary-color);
        bottom: 10%; right: -100px;
        animation-delay: -5s;
    }

    .cyber-orb:nth-child(4) {
        width: 200px; height: 200px;
        background: #a5b4fc;
        top: 40%; left: 50%;
        transform: translate(-50%, -50%);
        animation-delay: -2s;
    }

    @keyframes floatOrb {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(30px, -50px) scale(1.1); }
    }

    .hero-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 50px;
    }

    .hero-left {
        flex: 1;
        z-index: 5;
    }

    .cyber-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #e0e7ff;
        border: 1px solid var(--primary-color);
        color: var(--primary-dark);
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 24px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: var(--transition);
    }

    .cyber-badge:hover {
        background: var(--primary-color);
        color: var(--white);
    }

    .cyber-title {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 24px;
        background: -webkit-linear-gradient(45deg, var(--primary-dark), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
    }

    .cyber-subtitle {
        font-size: 1.15rem;
        color: var(--text-light);
        margin-bottom: 32px;
        max-width: 600px;
    }

    .cyber-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .cyber-feature {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-dark);
        font-weight: 500;
    }

    .cyber-feature i {
        color: var(--success-color);
    }

    /* 3D Shield Animation */
    .hero-right {
        margin-top:70px ;
        flex: 1;
        display: flex;
        justify-content: center;
        height: 400px;
        perspective: 1000px;
    }

    .shield-3d {
        position: relative;
        width: 300px;
        height: 300px;
        transform-style: preserve-3d;
        animation: spinShield 15s infinite linear;
    }

    .shield-face {
        position: absolute;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.6);
        border: 2px solid var(--primary-color);
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.1) inset;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 3rem;
        backdrop-filter: blur(4px);
    }

    /* Creating a Cube */
    .shield-face:nth-child(1) { transform: rotateY(0deg) translateZ(100px); }
    .shield-face:nth-child(2) { transform: rotateY(90deg) translateZ(100px); }
    .shield-face:nth-child(3) { transform: rotateY(180deg) translateZ(100px); }
    .shield-face:nth-child(4) { transform: rotateY(-90deg) translateZ(100px); }
    .shield-face:nth-child(5) { transform: rotateX(90deg) translateZ(100px); }
    .shield-face:nth-child(6) { transform: rotateX(-90deg) translateZ(100px); }

    @keyframes spinShield {
        0% { transform: rotateX(-15deg) rotateY(0deg); }
        100% { transform: rotateX(-15deg) rotateY(360deg); }
    }

    /* =========================================
       MEDIA QUERIES (RESPONSIVENESS)
       ========================================= */
    @media (max-width: 992px) {
        .cyber-hero {
            padding: 40px 0 80px 0; /* Reduced vertical padding for mobile */
            min-height: auto; /* Allow content to define height */
            text-align: center;
        }

        .hero-content {
            flex-direction: column-reverse; /* Put shield on top, text below */
            gap: 40px;
        }

        .hero-left {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center; /* Center align text */
        }

        .cyber-title {
            font-size: 2.5rem; /* Smaller font for mobile */
        }

        .cyber-subtitle {
            margin-left: auto;
            margin-right: auto; /* Ensure text block is centered */
        }

        .cyber-features {
            grid-template-columns: 1fr; /* Stack features on top of each other */
            width: 100%;
            max-width: 300px; /* Limit width */
            text-align: left;
        }

        /* Adjust Shield Container for Mobile */
        .hero-right {
            height: 300px;
            width: 100%;
            margin-top: 0;
        }

        /* Scale down the 3D Shield on Mobile without breaking animation */
        /* We override the keyframes here to include a scale factor */
        @keyframes spinShield {
            0% { transform: scale(0.7) rotateX(-15deg) rotateY(0deg); }
            100% { transform: scale(0.7) rotateX(-15deg) rotateY(360deg); }
        }
    }

    @media (max-width: 600px) {
        .cyber-title {
            font-size: 2rem; /* Even smaller for very small screens */
        }
        
        .cyber-subtitle {
            font-size: 1rem;
        }

        .hero-right {
            height: 250px;
        }

        /* Make shield even smaller for tiny phones */
        @keyframes spinShield {
            0% { transform: scale(0.6) rotateX(-15deg) rotateY(0deg); }
            100% { transform: scale(0.6) rotateX(-15deg) rotateY(360deg); }
        }
    }

    /* =========================================
       REST OF THE PAGE STYLES
       ========================================= */

    /* Stats Section */
    .stats-section {
        padding: 80px 0;
        background: var(--bg-light);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        position: relative;
        z-index: 2;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .stat-card {
        background: var(--white);
        padding: 30px;
        border-radius: 16px;
        text-align: center;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .stat-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-color);
    }

    .stat-icon {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 20px;
        background: #e0e7ff;
        width: 60px;
        height: 60px;
        line-height: 60px;
        border-radius: 50%;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-number {
        font-family: 'Outfit', sans-serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 10px;
    }

    .stat-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: var(--text-dark);
    }

    .stat-card p {
        color: var(--text-light);
        font-size: 0.9rem;
    }

    /* Principles Section */
    .principles-section {
        padding: 100px 0;
        position: relative;
        z-index: 2;
        background: var(--white);
    }

    .principles-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .principles-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .principles-header p {
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
    }

    .principles-showcase {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .principle-showcase-card {
        background: var(--bg-light);
        padding: 30px;
        border-radius: 16px;
        border: 1px solid var(--border);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .principle-showcase-card:hover {
        background: var(--white);
        box-shadow: var(--shadow);
        transform: translateY(-5px);
        border-color: var(--secondary-color);
    }

    .principle-showcase-icon {
        width: 60px;
        height: 60px;
        background: #f3e8ff;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary-color);
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .principle-showcase-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .principle-showcase-card p {
        color: var(--text-light);
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

    .principle-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .principle-tag {
        font-size: 0.75rem;
        padding: 4px 12px;
        background: var(--white);
        border-radius: 20px;
        color: var(--text-light);
        border: 1px solid var(--border);
        font-weight: 600;
    }

    /* Security Cards Section */
    .security-cards-section {
        padding: 100px 0;
        background: var(--bg-light);
        position: relative;
        overflow: hidden;
    }

    #securityParticles {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        z-index: 1;
        opacity: 0.4;
        pointer-events: none;
    }

    .security-cards-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        z-index: 2;
    }

    .security-cards-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    .security-cards-header p {
        color: var(--text-light);
    }

    .security-cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        position: relative;
        z-index: 2;
    }

    .security-card-unique {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 20px;
        overflow: hidden;
        transition: var(--transition);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    }

    .security-card-unique:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
        border-color: var(--primary-color);
    }

    .card-header-unique {
        padding: 25px;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        gap: 15px;
        background: #fafafa;
    }

    .card-icon-unique {
        width: 45px;
        height: 45px;
        background: var(--primary-color);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.2rem;
    }

    .card-title-unique {
        font-size: 1.2rem;
        color: var(--text-dark);
    }

    .card-body-unique {
        padding: 25px;
    }

    .card-description-unique {
        color: var(--text-light);
        margin-bottom: 25px;
        font-size: 0.95rem;
    }

    .card-tech-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .tech-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px;
        background: var(--bg-light);
        border-radius: 8px;
    }

    .tech-icon {
        color: var(--secondary-color);
    }

    .tech-text {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-dark);
    }

    .card-footer-unique {
        padding: 20px 25px;
        background: #fafafa;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .security-level {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
    }

    .level-label {
        font-size: 0.8rem;
        color: var(--text-light);
        white-space: nowrap;
    }

    .level-bar {
        flex: 1;
        height: 6px;
        background: #e5e7eb;
        border-radius: 3px;
        overflow: hidden;
        max-width: 100px;
    }

    .level-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 3px;
    }

    .level-percentage {
        font-size: 0.8rem;
        color: var(--primary-dark);
        font-weight: bold;
    }

    .security-badges-unique {
        display: flex;
        gap: 8px;
    }

    .security-badge-unique {
        font-size: 0.7rem;
        padding: 4px 8px;
        background: #e0e7ff;
        color: var(--primary-dark);
        border-radius: 4px;
        text-transform: uppercase;
        font-weight: 700;
    }
