 :root { --primary: #0092FD; }
        body { 
            background-color: #000; color: white; 
            font-family: 'Space Grotesk', sans-serif;
            overflow-x: hidden;
        }
        .glass-nav { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); }
img {
    pointer-events: none;
    -webkit-touch-callout: none; /* Mobile par "Save Image" popup rokne ke liye */
}
        /* --- Background Floating Objects --- */
        .bg-container { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
        .obj { position: absolute; opacity: 0.2; color: var(--primary); animation: floatObj 22s infinite linear; }
        @keyframes floatObj {
            0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
            50% { opacity: 0.3; }
            100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
        }

        /* --- Card Container with Rotating Glow --- */
        .premium-card {
            position: relative;
            border-radius: 24px;
            padding: 2px; /* Border thickness */
            overflow: hidden;
            transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
            background: rgba(255, 255, 255, 0.2); /* Static White Shiny Border */
        }

        .premium-card:hover {
            transform: translateY(-10px);
        }

        /* The Rotating Neon Animation */
        .glow-border {
            position: absolute;
            top: -50%; left: -50%; width: 200%; height: 200%;
            background: conic-gradient(transparent, transparent, transparent, var(--primary));
            animation: rotateGlow 4s linear infinite;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 1;
        }
        .premium-card:hover .glow-border {
            opacity: 1;
        }

        @keyframes rotateGlow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Inner Content with Image Background */
        .card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            background-color: #080808;
            border-radius: 22px; /* Slightly smaller than container */
            overflow: hidden;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        /* Parent Card */
.card {
    position: relative;
    overflow: hidden; /* ensures overlay and image stay inside card */
}

/* Card Image */
.card-image {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    transition: transform 0.8s ease, opacity 0.5s;
    z-index: 1; /* image behind overlay and text */
}

/* Left-side black shade overlay */
.card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.85) 0%,   /* strong left */
        rgba(0, 0, 0, 0.6) 35%,  /* middle fade */
        rgba(0, 0, 0, 0.25) 55%, /* softer */
        rgba(0, 0, 0, 0) 70%      /* transparent right */
    );
    z-index: 2; /* above image but below text */
    pointer-events: none;
}

/* Card Content / Text */
.card-content {
    position: relative;
    z-index: 3; /* above overlay */
    color: white; /* ensure text is readable */
}

        .premium-card:hover .card-image {
            transform: scale(1.1);
            opacity: 0.8;
        }

        .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, transparent 70%);
            z-index: 1;
        }

        .card-content {
            position: relative;
            z-index: 3;
            padding: 2.5rem;
        }

        /* --- Text Scroll Animation --- */
        .reveal { opacity: 0; transform: translateY(40px); transition: 1s cubic-bezier(0.2, 1, 0.3, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        .btn-premium {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            padding: 10px 24px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 500;
            transition: 0.3s;
        }
        .btn-premium:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #000;
            font-weight: bold;
        }
        /* about css */
        /* --- SUBTLE GRADIENT BLOBS --- */
        .blob-container {
            position: fixed;
            inset: 0;
            z-index: -2;
            overflow: hidden;
            filter: blur(100px);
        }
        .blob {
            position: absolute;
            border-radius: 50%;
            opacity: 0.25;
            animation: moveBlob 20s infinite alternate ease-in-out;
        }
        .blob-1 { width: 300px; height: 300px; background: radial-gradient(circle, #0092FD, transparent); top: 10%; left: 5%; }
        .blob-2 { width: 350px; height: 350px; background: radial-gradient(circle, #06b6d4, transparent); bottom: 15%; right: 10%; animation-delay: -5s; }
        .blob-3 { width: 250px; height: 250px; background: radial-gradient(circle, #3b82f6, transparent); top: 50%; left: 40%; animation-delay: -10s; }

        @keyframes moveBlob {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(50px, 30px) scale(1.1); }
        }

        .bg-container { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
        .obj { position: absolute; opacity: 0.15; color: var(--primary); animation: floatObj 22s infinite linear; }
        @keyframes floatObj {
            0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
            50% { opacity: 0.25; }
            100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
        }
        .glass-nav { 
            background: rgba(255, 255, 255, 0.03); 
            backdrop-filter: blur(15px); 
            border: 1px solid rgba(255, 255, 255, 0.1); 
        }

        @keyframes pulse-glow {
            0%, 100% { border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 0 15px rgba(59, 130, 246, 0.1); }
            50% { border-color: rgba(6, 182, 212, 0.6); box-shadow: 0 0 25px rgba(6, 182, 212, 0.3); }
        }

        .pop-out-card { position: relative; width: 350px; margin-top: 80px; }
        .card-inner1 {
            position: relative;
             
            backdrop-filter: blur(5px);
            
            border-radius: 0.5rem; 
            padding-top: 140px; 
            
        }

        .faisal-image {
            position: absolute;
            top: -80px; 
            left: 10%;
            width: 250px;
            z-index: 10; 
            pointer-events: none;
            filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
        }

        .content-overlay {
            position: relative;
            z-index: 20; 
            text-align: center;
            padding: 24px;
            background: linear-gradient(to top, #000000 85%, transparent);
            border-radius: 0 0 0.5rem 0.5rem;
        }

        .text-blue-highlight { color: #60a5fa; font-weight: 600; }
        .float-anim { animation: float 6s ease-in-out infinite; }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

/* Road Position (Centered in Col 2) */
    .road-container-left {
        position: absolute;
        left: 130px; 
        top: 100px;
        bottom: 0;
        width: 2px;
        background-image: linear-gradient(to bottom, #0092FD 50%, transparent 50%);
        background-size: 2px 25px;
        z-index: 5;
        opacity: 0.15;
    }

    #car {
        position: absolute;
        left: 130px;
        top: 100px;
        transform: translate(-50%, -50%);
        z-index: 100;
    }

    #car-img { width: 45px; transition: transform 0.4s; }

    /* PIN CONCEPT: Road se Card tak connection */
    .dashed-pin {
        position: absolute;
        left: 70%; /* Road ke center se */
        height: 2px;
        width: 0; /* GSAP will animate this to ~200px to reach card */
        background-image: linear-gradient(to right, #0092FD 50%, transparent 50%);
        background-size: 8px 2px;
        z-index: 10;
        pointer-events: none;
    }

    .pin-circle {
        position: absolute;
        left: 70%;
        width: 10px;
        height: 10px;
        background: #0092FD;
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        box-shadow: 0 0 15px #0092FD;
        z-index: 40;
    }

    .content-card {
        background: rgba(255, 255, 255, 0.02);
        /* Pehle border white ya halka gray hoga */
        border: 1px solid rgba(255, 255, 255, 0.3); 
        padding: 2rem;
        border-radius: 1rem;
        opacity: 0.2; /* Inactive state mein thoda light */
        
        /* Transition ensure karega ke border color smoothly change ho */
        transition: border-color 0.6s ease, background 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
        
        flex: 1;
        max-width: 650px;
    }

    /* Active State (GSAP isko trigger karega) */
    .active-card {
        opacity: 1 !important;
        border-color: #0092FD !important; /* Theme Color */
        background: rgba(0, 146, 253, 0.05) !important;
        
    }
    .bullet-dot 
    { 
    width: 6px; 
    height: 6px; 
    border-radius: 50%; 
    background: #0092FD; }

    .step-tree 
    { 
    filter: grayscale(1) opacity(0.2); 
    transition: 0.8s; 
    }
    .active-tree 
    { 
    filter: grayscale(0) opacity(1); 
    transform: scale(1.2); 
    }
        
    .bullet-item 
    { display: flex; 
    align-items: flex-start; 
    gap: 10px; 
    margin-bottom: 8px; 
    }
        .bullet-dot { min-width: 6px; height: 6px; background: #0092FD; border-radius: 50%; margin-top: 6px; }
        .text-theme { color: #0092FD; }
        .glass-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .glass-card:hover {
            border-color: #0092FD;
            box-shadow: 0 0 30px rgba(0, 146, 253, 0.2);
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.07);
        }
        .bg-theme { background-color: #0092FD; }
        .orbit-section {
            height: 110vh; 
            position: relative;
        }
        .orbit-sticky-wrapper {
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        #orbit-svg {
            width: 750px;
            height: 750px;
            overflow: visible;
        }
        .center-box {
            fill: #020617;
            stroke: #0092FD;
            stroke-width: 1.5;
            filter: drop-shadow(0 0 20px rgba(0, 146, 253, 0.4));
        }
        .node-rect {
            fill: rgba(15, 23, 42, 0.95);
            stroke: rgba(255, 255, 255, 0.1);
            stroke-width: 1;
            rx: 12;
        }
        .glow-line {
            fill: none;
            stroke-width: 1.2;
            stroke-linecap: round;
            opacity: 0.7;
        }

        #galaxy { position: absolute; top: 0; left: 0; width: 100%; height: 100vh; z-index: -1; }
        .font-handwritten { font-family: "Sue Ellen Francisco", cursive; }
        #canvas-container { position: relative; background-image: url('../img/pills-bg.png'); background-size: cover; background-position: center; border-radius: 20px; overflow: hidden; }
        #blur-bg { position: absolute; top:0; left:0; width:100%; height:100%; backdrop-filter: blur(2px); z-index:0; }