/* =========================================
   GLOBAL VARIABLES & RESET
========================================= */
:root {
    --bg-dark: #0b0f19;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --neon-blue: #00f2fe;
    --neon-purple: #4facfe;
    --success-green: #00e676;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* =========================================
   🌐 PREMIUM GLASS HEADER
========================================= */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.5px;
}

.logo-icon {
    color: var(--accent-cyan);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -2px;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

.blue-text {
    color: var(--accent-blue);
}

.navbar {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-cyan);
}

.action-btn {
    text-decoration: none;
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--accent-cyan);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.action-btn:hover {
    background: rgba(0, 242, 254, 0.1);
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

/* =========================================
   🚀 HERO SECTION
========================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 40px;
    background: radial-gradient(circle at 50% 0%, rgba(0, 242, 254, 0.08) 0%, transparent 50%);
}

.hero-content {
    max-width: 700px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.highlight-cyan {
    color: var(--accent-cyan);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Placeholder limits for future JS */
.dynamic-section {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 24px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
}

.floating-cyber-footer {
    /* 🔥 FIX 1: Isse footer screen ke bottom me hawa me latak jayega */
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    /* Taaki content ke upar float kare */

    /* 🔥 FIX 2: Glassmorphic Capsule Shape (No full black strip!) */
    background: rgba(5, 7, 15, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Subtle borders and shadow for floating depth */
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);

    border-radius: 100px;
    /* Perfect round pill shape */
    padding: 10px 24px;
    white-space: nowrap;
    /* Text ko single line me rakhne ke liye */
    transition: all 0.3s ease;
}

/* Hover Physics: Mouse le jane par chota sa glow aur lift */
.floating-cyber-footer:hover {
    background: rgba(5, 7, 15, 0.8);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(0, 242, 254, 0.05);
    transform: translateX(-50%) translateY(-2px);
}

.pill-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Logo Highlight inside Pill */
.brand-node {
    color: #f8fafc;
    font-weight: 700;
}

.brand-node span {
    color: var(--neon-purple, #9d4edd);
}

/* Capsule Divider */
.pill-pipe {
    color: rgba(255, 255, 255, 0.1);
    font-weight: 300;
}

/* Rights Reserved Info */
.rights-node {
    color: #64748b;
    /* Clean muted slate */
}

/* ⚠️ Crucial Spacing Fix: Content footer ke piche na dabe jab user end tak scroll kare */
main,
.dashboard-layout {
    padding-bottom: 80px !important;
}

/* Mobile Screen Tuning */
@media (max-width: 480px) {
    .floating-cyber-footer {
        bottom: 16px;
        padding: 8px 18px;
    }

    .pill-content {
        font-size: 10.5px;
        gap: 6px;
    }
}

/* ==========================================================================
   🌐 CODESTACK GLOBAL STICKY HEADER STYLE
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(5, 7, 15, 0.65);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Design */
.logo-node {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    color: var(--neon-blue);
    font-size: 18px;
    filter: drop-shadow(0 0 8px var(--neon-blue));
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--neon-purple);
}

/* Navigation links matrix */
.nav-links {
    display: flex;
    gap: 28px;
}

.nav-item {
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.2s ease;
    position: relative;
    padding: 6px 0;
}

.nav-item:hover,
.nav-item.active {
    color: white;
}

/* Active page line effect */
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
    border-radius: 2px;
}

/* Right Side Action Button */
.dashboard-btn-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 700;
    color: #05070f;
    background: linear-gradient(135deg, var(--neon-blue), #4facfe);
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
    transition: all 0.3s ease;
}

.dashboard-btn-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4);
    filter: brightness(1.1);
}

/* =========================================
   👤 FOUNDER SECTION
========================================= */
.founder-section {
    max-width: 1000px;
    margin: 0 auto 120px;
    padding: 0 24px;
}

.founder-glass-card {
    background: rgba(9, 13, 22, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: transform 0.3s ease;
}

.founder-glass-card:hover {
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.founder-visual .image-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1), rgba(96, 165, 250, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    color: #00f2fe;
}

.founder-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.founder-name {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.highlight-blue {
    color: #60a5fa;
}

.founder-bio {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.tech-stack-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tech-stack-pills .pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #e2e8f0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .founder-glass-card {
        flex-direction: column;
        text-align: center;
    }

    .tech-stack-pills {
        justify-content: center;
    }
}

/* =========================================
   🖼️ FOUNDER IMAGE STYLING
========================================= */
.founder-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    /* Photo ko stretch hone se rokega */
    border-radius: 20px;
    /* Smooth corners */
    border: 2px solid rgba(255, 255, 255, 0.1);

    /* Cool Tech Effect: Normal mode me halki desaturated */
    filter: grayscale(40%) contrast(1.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover par poora color aur premium glow aayega */
.founder-img:hover {
    filter: grayscale(0%) contrast(1);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.3);
    transform: translateY(-5px) scale(1.02);
}

/* =========================================
   📱 FOUNDER INSTA BUTTON
========================================= */
.founder-social {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Ek halki line separator ke liye */
}

.insta-connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: linear-gradient(45deg, rgba(245, 133, 41, 0.1), rgba(221, 42, 123, 0.1));
    border: 1px solid rgba(221, 42, 123, 0.3);
    color: #f8fafc;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.insta-connect-btn i {
    font-size: 18px;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.insta-connect-btn:hover {
    background: linear-gradient(45deg, rgba(245, 133, 41, 0.2), rgba(221, 42, 123, 0.2));
    border-color: rgba(221, 42, 123, 0.6);
    box-shadow: 0 5px 20px rgba(221, 42, 123, 0.2);
    transform: translateY(-2px);
}

/* =========================================
   📱 FOUNDER SOCIAL GRID
========================================= */
.founder-social {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.connect-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* 🟠 Instagram Styling */
.insta-btn {
    background: rgba(221, 42, 123, 0.1);
    color: #e2e8f0;
    border-color: rgba(221, 42, 123, 0.2);
}

.insta-btn i {
    color: #dd2a7b;
}

.insta-btn:hover {
    background: rgba(221, 42, 123, 0.2);
    border-color: #dd2a7b;
    transform: translateY(-2px);
}

/* ⚪ GitHub Styling */
.github-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    border-color: rgba(255, 255, 255, 0.1);
}

.github-btn i {
    color: #ffffff;
}

.github-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* 🔵 LinkedIn Styling */
.linkedin-btn {
    background: rgba(10, 102, 194, 0.1);
    color: #e2e8f0;
    border-color: rgba(10, 102, 194, 0.2);
}

.linkedin-btn i {
    color: #0a66c2;
}

.linkedin-btn:hover {
    background: rgba(10, 102, 194, 0.2);
    border-color: #0a66c2;
    transform: translateY(-2px);
}

/* =========================================
   💡 CORE PHILOSOPHY SECTION (Mini Bento)
========================================= */
.philosophy-section {
    max-width: 1000px;
    margin: 0 auto 120px;
    padding: 0 24px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.philosophy-card {
    background: rgba(9, 13, 22, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(0, 242, 254, 0.05);
}

.card-icon {
    font-size: 24px;
    color: #00f2fe;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1), rgba(96, 165, 250, 0.1));
    border: 1px solid rgba(0, 242, 254, 0.2);
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    transition: transform 0.3s ease;
}

.philosophy-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(96, 165, 250, 0.2));
}

.philosophy-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.philosophy-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 16px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   🖥️ SYSTEM TERMINAL SECTION
========================================= */
.terminal-section {
    max-width: 800px;
    margin: -40px auto 100px;
    /* Hero section ke thoda upar overlap karega */
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.terminal-window {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 242, 254, 0.05);
}

.terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.close-btn {
    background: #ff5f56;
}

.min-btn {
    background: #ffbd2e;
}

.max-btn {
    background: #27c93f;
}

.terminal-title {
    flex-grow: 1;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #64748b;
}

.terminal-body {
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    line-height: 1.8;
    color: #e2e8f0;
    min-height: 150px;
}

.term-line {
    margin-bottom: 4px;
}

.term-prefix {
    color: #10b981;
}

/* Green */
.term-path {
    color: #60a5fa;
}

/* Blue */
.term-success {
    color: #00f2fe;
    font-weight: bold;
}

/* Cyan */
.term-warning {
    color: #f59e0b;
}

/* Yellow */
/* =========================================
   🏆 GSA AUTHORITY BADGE
========================================= */
.gsa-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.gsa-badge i {
    color: #4285F4;
    /* Google Blue */
}

.gsa-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: #4285F4;
}

/* =========================================
   ♾️ INFINITE TECH TICKER
========================================= */
.tech-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    margin: 60px 0;
    white-space: nowrap;
    position: relative;
}

/* Fading effect on left and right edges */
.tech-ticker-wrapper::before,
.tech-ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.tech-ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #050505 0%, transparent 100%);
}

.tech-ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #050505 0%, transparent 100%);
}

.tech-ticker {
    display: inline-block;
    animation: slideTicker 30s linear infinite;
}

.tech-ticker span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 16px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    margin: 0 40px;
    transition: color 0.3s;
}

.tech-ticker span:hover {
    color: #00f2fe;
}

@keyframes slideTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Shift half width (Set 1) to make it loop */
}

/* =========================================
   🏆 FOUNDER TAGS & GSA BADGE
========================================= */
.founder-tags-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    /* Agar screen choti ho toh line break kar dega */
}

.gsa-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.gsa-badge i {
    color: #4285F4;
    /* Google Blue */
}

.gsa-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: #4285F4;
    box-shadow: 0 0 15px rgba(66, 133, 244, 0.2);
}

/* =========================================
   🏆 FIXED: FOUNDER TAGS & GSA BADGE
========================================= */
.founder-tags-wrapper {
    display: flex;
    align-items: center;
    /* Dono ko vertically center karega */
    gap: 12px;
    margin-bottom: 20px;
    /* Thoda breathing space */
    flex-wrap: wrap;
}

/* Base badge (Pehle se hai, par ensure karna ki line-height issue na kare) */
.gsa-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    padding: 8px 16px;
    /* Padding thodi theek ki hai */
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    line-height: 1;
    /* Text ko shift hone se rokega */
    margin: 0;
}

.gsa-badge i {
    color: #4285F4;
    /* Google Blue */
    font-size: 14px;
}

.gsa-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: #4285F4;
    box-shadow: 0 0 15px rgba(66, 133, 244, 0.2);
}

/* Architect badge specific styling */
.architect-badge i {
    color: #00f2fe;
    /* CodeStack Cyan */
}

.architect-badge:hover {
    border-color: #00f2fe;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}



@media (max-width: 600px) {

    /* Stats grid 1 column me aa jayenge */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Reels grid 1 column me */
    .reels-grid {
        grid-template-columns: 1fr;
    }

    /* Reels container height adjust */
    .reel-video-container {
        height: 500px;
        /* Mobile me thoda lamba achha lagta hai */
    }
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 20px;
        /* Line ko left shift kar do */
    }

    .tree-branch {
        justify-content: flex-start !important;
        /* Saare cards left align */
    }

    .branch-content {
        width: 85% !important;
        /* Mobile par width badha do */
        margin-left: 40px;
        /* Line ke liye jagah chhod do */
    }


}



/* Mobile Screen Tuning */
@media (max-width: 480px) {
    .floating-cyber-footer {
        bottom: 16px;
        padding: 8px 18px;
    }

    .pill-content {
        font-size: 10.5px;
        gap: 6px;
    }
}

@media (max-width: 600px) {

    /* Header container ki height aur padding kam karo */
    .header-container {
        height: 60px;
        padding: 0 12px;
    }

    /* Logo ka size thoda chota taaki space bache */
    .logo-text {
        font-size: 15px;
    }

    .logo-icon {
        font-size: 14px;
    }

    /* Nav links ka gap tight karo */
    .nav-links {
        gap: 6px;
    }

    /* 🔥 MASTER TRICK: Nav item ka text mobile me gayab ho jayega, sirf icon dikhega */
    .nav-item {
        font-size: 0 !important;
        padding: 6px 10px;
    }

    /* Icons ko center karo aur thoda bada dikhao mobile me */
    .nav-item i {
        font-size: 16px !important;
        margin: 0 !important;
        color: #475569;
    }

    /* Active page ka icon automatic cyber-blue chamkega */
    .nav-item.active i,
    .nav-item:hover i {
        color: var(--neon-blue);
        filter: drop-shadow(0 0 8px var(--neon-blue));
    }

    /* Active bottom border line ko mobile me chota karo */
    .nav-item.active::after {
        height: 2px;
        bottom: -2px;

    }

    /* Dashboard / Login button ko compact karo */
    .dashboard-btn-link {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 8px;
        gap: 4px;
    }

    /* Body ki top padding ko kam karo kyunki header ki height kam hui hai */
    body {
        padding-top: 85px !important;
    }
}

/* Snapchat Button */
.snap-btn {
    background: rgba(255, 252, 0, 0.05);
    /* Yellow tint */
    color: #f7f7f4;
    border: 1px solid rgba(255, 252, 0, 0.1);
}

.snap-btn i {
    color: #fcfc07;
}

.snap-btn:hover {
    background: rgba(255, 252, 0, 0.1);
    border-color: #f0e005;
    transform: translateY(-2px);
}

/* YouTube Button */
.yt-btn {
    background: rgba(255, 0, 0, 0.05);
    /* Red tint */
    color: #ffffff;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.yt-btn i {
    color: #ff0404;
}

.yt-btn:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #f70303;
    transform: translateY(-2px);
}