/* --- Variables & Reset --- */
:root {
    --bg: #030303;           /* Pitch Black */
    --surface: #0f0f0f;      /* Dark Grey Surface */
    --text-main: #ffffff;
    --text-muted: #888888;
    --border: rgba(255, 255, 255, 0.08); /* Ultra subtle border */
    --accent: #2d5af5;       /* Primary Blue */
    --accent-glow: rgba(255, 255, 255, 0.15);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- BACKGROUND ASSETS --- */
.noise-overlay, .grid-overlay {
    z-index: -1; pointer-events: none;
}

.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 9999; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.grid-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2; opacity: 0.4; pointer-events: none;
}

.vertical-lines {
    position: fixed; top: 0; left: 50%; transform: translateX(-50%);
    width: 100%; height: 100%; display: flex; justify-content: space-around;
    pointer-events: none; z-index: -1; max-width: 1200px;
}
.line { width: 1px; height: 100%; background: rgba(255, 255, 255, 0.03); }

.background-doodles {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -1; overflow: hidden; pointer-events: none;
}
.orb {
    position: absolute; border-radius: 50%; filter: blur(80px);
    opacity: 0.4; animation: float 20s infinite ease-in-out;
}
.orb-1 { width: 400px; height: 400px; background: #2d5af5; top: -100px; left: -100px; }
.orb-2 { width: 500px; height: 500px; background: #9013fe; bottom: -150px; right: -150px; animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; background: #00f2ff; top: 40%; left: 40%; opacity: 0.2; animation-duration: 25s; }
@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; letter-spacing: -0.03em; }
p { font-weight: 300; line-height: 1.6; color: var(--text-muted); }

.metal-text {
    background: linear-gradient(to bottom, #ffffff 40%, #999999 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* --- NAVBAR --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 30px; position: fixed; top: 20px; left: 50%;
    transform: translateX(-50%); width: 90%; max-width: 1200px; z-index: 1000;
    background: rgba(10, 10, 10, 0.7); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); transition: all 0.3s ease;
}
.navbar.scrolled { padding: 12px 25px; background: rgba(5, 5, 5, 0.85); width: 85%; }
.logo { font-size: 1.3rem; font-weight: 700; letter-spacing: 1px; color: #fff; font-family: var(--font-heading); }
.highlight { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { text-decoration: none; color: #aaa; font-size: 0.9rem; font-weight: 500; transition: 0.3s; position: relative; }
.nav-links a:hover { color: #fff; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%) scale(0);
    width: 4px; height: 4px; background: var(--accent); border-radius: 50%; transition: 0.3s;
}
.nav-links a:hover::after { transform: translateX(-50%) scale(1); }
.btn-primary {
    padding: 10px 24px; background: #fff; color: #000; text-decoration: none;
    font-size: 0.85rem; font-weight: 600; border-radius: 30px; transition: 0.3s; border: 1px solid transparent;
}
.btn-primary:hover { background: transparent; color: #fff; border-color: #fff; transform: translateY(-2px); }

/* --- HERO SECTION --- */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.hero-container { position: relative; z-index: 2; max-width: 900px; padding: 0 20px; }
.badge-pill {
    display: inline-block; padding: 6px 16px; border: 1px solid var(--border);
    border-radius: 50px; font-size: 0.8rem; margin-bottom: 30px;
    background: rgba(255,255,255,0.02); color: #aaa;
}
.headline { font-size: 4.5rem; line-height: 1.1; margin-bottom: 30px; }
.sub-headline { font-size: 1.2rem; max-width: 600px; margin: 0 auto 50px; }
.cta-group { display: flex; align-items: center; justify-content: center; gap: 30px; }
.btn-glow {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 40px; background: #fff; border: none; border-radius: 50px;
    font-weight: 600; cursor: pointer; box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    will-change: transform; backface-visibility: hidden; transform: translateZ(0); 
}
.btn-glow:hover { transform: scale(1.05); box-shadow: 0 0 60px rgba(255, 255, 255, 0.4); }
.link-text { color: #fff; text-decoration: none; border-bottom: 1px solid #555; padding-bottom: 2px; }
.hero-glow {
    position: absolute; width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.hero-vector {
    position: absolute; right: 10%; top: 50%; transform: translateY(-50%);
    width: 300px; height: 300px; z-index: 1; opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(45, 90, 245, 0.4));
}

/* --- BRAND WALL --- */
.brand-section-big {
    padding: 120px 0; background: linear-gradient(180deg, var(--bg) 0%, #080808 50%, var(--bg) 100%);
    position: relative; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden;
}
.brand-header { text-align: center; margin-bottom: 60px; padding: 0 20px; position: relative; z-index: 2; }
.brand-label { font-size: 0.75rem; letter-spacing: 3px; color: #555; font-weight: 600; text-transform: uppercase; }
.brand-header h3 { font-size: 2.5rem; color: #fff; margin-top: 15px; }
.marquee-wrapper { width: 100%; overflow: hidden; margin-bottom: 30px; position: relative; display: flex; }
.marquee-wrapper::before, .marquee-wrapper::after { content: ""; position: absolute; top: 0; width: 200px; height: 100%; z-index: 2; pointer-events: none; }
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.marquee-track { display: flex; white-space: nowrap; }
.logo-group { display: flex; }
.big-item {
    width: 250px; height: 80px; display: flex; align-items: center; justify-content: center;
    color: #444; transition: all 0.3s ease; border: 1px solid transparent; border-radius: 12px;
}
.big-item svg { height: 40px; width: auto; fill: currentColor; }
.big-item:hover { color: #fff; background: rgba(255, 255, 255, 0.03); border-color: rgba(255, 255, 255, 0.1); transform: scale(1.1); box-shadow: 0 0 20px rgba(255, 255, 255, 0.05); }
.scroll-left { animation: scrollLeft 40s linear infinite; }
.scroll-right { animation: scrollRight 45s linear infinite; }
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
@keyframes scrollRight { 0% { transform: translateX(-100%); } 100% { transform: translateX(0); } }

/* --- SECTIONS (About, Vision, Services) --- */
.section-padding { padding: 120px 0; position: relative; overflow: hidden; }
.bg-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 15vw; font-family: var(--font-heading); font-weight: 800;
    color: rgba(255, 255, 255, 0.03); z-index: 0; pointer-events: none; white-space: nowrap; letter-spacing: 10px;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-header { margin-bottom: 60px; position: relative; z-index: 2; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }

/* About Grid */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.about-content h2 { margin-bottom: 30px; font-size: 3rem; }
.about-content p { margin-bottom: 20px; font-size: 1.05rem; color: #aaa; }
.about-content strong { color: #fff; font-weight: 500; }
.about-list { list-style: none; margin-top: 30px; }
.about-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-size: 1rem; color: #ddd; font-family: var(--font-heading); }
.about-list li svg { width: 20px; height: 20px; color: var(--accent); }
.glass-panel {
    background: rgba(20, 20, 20, 0.6); border: 1px solid var(--border);
    backdrop-filter: blur(20px); border-radius: 24px; padding: 40px;
    position: relative; overflow: hidden; transition: transform 0.4s ease;
}
.glass-panel:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.2); }
.panel-glow {
    position: absolute; top: -50px; right: -50px; width: 200px; height: 200px;
    background: var(--accent); filter: blur(80px); opacity: 0.2; border-radius: 50%;
}
.panel-art { position: absolute; top: 20px; right: 20px; width: 80px; height: 80px; opacity: 0.5; }
.stats-row { display: flex; gap: 40px; margin-bottom: 40px; }
.stat h3 { font-size: 3rem; color: #fff; margin-bottom: 5px; background: linear-gradient(to bottom, #fff, #666); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: #666; }
.divider { height: 1px; width: 100%; background: var(--border); margin-bottom: 30px; }
.mini-profile { display: flex; align-items: center; gap: 15px; }
.profile-icon {
    width: 50px; height: 50px; background: linear-gradient(45deg, var(--accent), #9013fe);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-weight: bold; color: #fff; font-family: var(--font-heading);
}
.profile-text strong { display: block; color: #fff; font-size: 0.95rem; }
.profile-text span { font-size: 0.8rem; color: #666; }

/* =========================================
   NEW PREMIUM VISION SECTION
========================================= */
.vision-bento-card {
    background: linear-gradient(135deg, rgba(20, 20, 22, 0.6) 0%, rgba(10, 10, 12, 0.8) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 70px 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

.vision-bento-card::before {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(45, 90, 245, 0.08) 0%, transparent 50%);
    pointer-events: none; z-index: 0;
}

.pulse-badge {
    border-color: rgba(45, 90, 245, 0.5);
    background: rgba(45, 90, 245, 0.1);
    color: #fff;
    box-shadow: 0 0 15px rgba(45, 90, 245, 0.2);
}

.vision-content-new { position: relative; z-index: 2; }
.vision-content-new h2 { font-size: 3.5rem; line-height: 1.15; margin-bottom: 25px; }
.vision-content-new p { font-size: 1.1rem; color: #aaa; max-width: 90%; margin-bottom: 40px; line-height: 1.7; }

.vision-metrics { display: flex; align-items: center; gap: 40px; }
.metric-box { display: flex; flex-direction: column; }
.metric-value { font-size: 4rem; font-family: var(--font-heading); font-weight: 700; color: #fff; line-height: 1; }
.metric-value .accent { color: var(--accent); font-size: 2.5rem; }
.metric-label { font-size: 0.85rem; color: #777; text-transform: uppercase; letter-spacing: 2px; margin-top: 10px; font-weight: 600; }
.metric-divider { width: 1px; height: 70px; background: rgba(255,255,255,0.1); }

/* AI Core Radar Animation */
.vision-visual-new { position: relative; height: 100%; min-height: 400px; display: flex; justify-content: center; align-items: center; z-index: 2; }
.ai-core-container { position: relative; width: 350px; height: 350px; display: flex; justify-content: center; align-items: center; }
.core-glow { position: absolute; width: 100%; height: 100%; background: radial-gradient(circle, rgba(45, 90, 245, 0.3) 0%, transparent 60%); filter: blur(40px); animation: pulseGlow 4s infinite alternate; }
.core-center { position: absolute; width: 70px; height: 70px; background: #fff; border-radius: 50%; box-shadow: 0 0 30px #fff, 0 0 80px var(--accent); z-index: 5; }

.radar-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(45, 90, 245, 0.6); opacity: 0; animation: radarExpand 4s infinite cubic-bezier(0.1, 0.7, 0.3, 1); }
.r1 { animation-delay: 0s; }
.r2 { animation-delay: 1.3s; }
.r3 { animation-delay: 2.6s; }

.floating-node { position: absolute; width: 14px; height: 14px; background: #00f2ff; border-radius: 50%; box-shadow: 0 0 20px #00f2ff; z-index: 6; }
.n1 { top: 15%; left: 15%; animation: floatNode 6s infinite ease-in-out; }
.n2 { bottom: 15%; right: 15%; animation: floatNode 5s infinite ease-in-out reverse; }
.n3 { top: 45%; right: -5%; background: #9013fe; box-shadow: 0 0 20px #9013fe; animation: floatNode 7s infinite ease-in-out 1s; }

@keyframes pulseGlow { 0% { opacity: 0.4; transform: scale(0.85); } 100% { opacity: 1; transform: scale(1.1); } }
@keyframes radarExpand { 0% { width: 70px; height: 70px; opacity: 1; border-width: 3px; } 100% { width: 400px; height: 400px; opacity: 0; border-width: 1px; } }
@keyframes floatNode { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-25px) scale(1.1); } }

/* Responsive adjustments for new vision */
@media (max-width: 900px) {
    .vision-bento-card { grid-template-columns: 1fr; padding: 40px 25px; text-align: center; gap: 50px; border-radius: 24px; }
    .vision-content-new p { max-width: 100%; margin: 0 auto 40px; }
    .vision-content-new h2 { font-size: 2.8rem; }
    .vision-metrics { justify-content: center; gap: 30px; }
    .ai-core-container { width: 280px; height: 280px; }
    .metric-divider { display: none; }
    @keyframes radarExpand { 0% { width: 70px; height: 70px; opacity: 1; } 100% { width: 300px; height: 300px; opacity: 0; } }
}

/* Services (Bento) */
.bento-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 240px); gap: 20px; position: relative; z-index: 2; }
.service-card {
    background: linear-gradient(145deg, rgba(20,20,20,0.6) 0%, rgba(10,10,10,0.8) 100%);
    border: 1px solid var(--border); border-radius: 20px; padding: 25px;
    position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex; flex-direction: column; justify-content: space-between;
}
.service-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.03); }
.accent-blue:hover { border-color: #2d5af5; box-shadow: 0 10px 40px rgba(45, 90, 245, 0.15); }
.accent-purple:hover { border-color: #9013fe; box-shadow: 0 10px 40px rgba(144, 19, 254, 0.15); }
.accent-cyan:hover { border-color: #00f2ff; box-shadow: 0 10px 40px rgba(0, 242, 255, 0.15); }
.accent-pink:hover { border-color: #ff0055; box-shadow: 0 10px 40px rgba(255, 0, 85, 0.15); }
.accent-orange:hover { border-color: #ff9900; box-shadow: 0 10px 40px rgba(255, 153, 0, 0.15); }
.card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; position: relative; z-index: 2; }
.icon-box { width: 36px; height: 36px; background: rgba(255, 255, 255, 0.05); border-radius: 10px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.05); }
.icon-box svg { width: 18px; height: 18px; color: #fff; }
.service-card h3 { font-size: 1.25rem; color: #fff; margin: 0; z-index: 2; line-height: 1.2; }
.service-card p { font-size: 0.85rem; color: #999; line-height: 1.5; margin-bottom: 15px; position: relative; z-index: 2; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.tech-stack { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; position: relative; z-index: 2; }
.tech-stack span { font-size: 0.7rem; padding: 4px 10px; background: rgba(255, 255, 255, 0.05); border-radius: 15px; color: #aaa; border: 1px solid rgba(255, 255, 255, 0.05); transition: 0.3s; }
.card-tall-v2 { grid-row: span 2; background: linear-gradient(180deg, rgba(20,20,20,0.6) 0%, rgba(30,10,40,0.3) 100%); }
.card-tall-v2 .icon-box { width: 45px; height: 45px; margin-bottom: 15px; }
.card-tall-v2 h3 { font-size: 1.5rem; margin-bottom: 10px; }
.vertical-stack { flex-direction: column; align-items: flex-start; }
.card-bg-num { position: absolute; top: -5px; right: 15px; font-size: 6rem; font-family: var(--font-heading); font-weight: 700; color: rgba(255, 255, 255, 0.02); z-index: 0; pointer-events: none; transition: 0.3s; }
.service-card:hover .card-bg-num { color: rgba(255, 255, 255, 0.05); transform: translateY(-5px); }

/* =========================================
   UPGRADED BIG & BOLD SERVICES SECTION
========================================= */
.bento-grid-v2 { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat(2, 320px); /* Height badha di (240px se 320px) */
    gap: 30px; /* Cards ke beech ka gap thoda khol diya */
    position: relative; 
    z-index: 2; 
}

.service-card {
    background: linear-gradient(145deg, rgba(20,20,20,0.6) 0%, rgba(10,10,10,0.8) 100%);
    border: 1px solid var(--border); 
    border-radius: 24px; 
    padding: 40px; /* Andar ka space badha diya (25px se 40px) */
    position: relative; 
    overflow: hidden; 
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
}

.service-card:hover { 
    transform: translateY(-8px); /* Hover par thoda aur upar aayega */
    background: rgba(255, 255, 255, 0.03); 
}

/* Colors & Hover Glow */
.accent-blue:hover { border-color: #2d5af5; box-shadow: 0 15px 50px rgba(45, 90, 245, 0.2); }
.accent-purple:hover { border-color: #9013fe; box-shadow: 0 15px 50px rgba(144, 19, 254, 0.2); }
.accent-cyan:hover { border-color: #00f2ff; box-shadow: 0 15px 50px rgba(0, 242, 255, 0.2); }
.accent-orange:hover { border-color: #ff9900; box-shadow: 0 15px 50px rgba(255, 153, 0, 0.2); }

.card-top { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; position: relative; z-index: 2; }

/* Icons ko bada kiya */
.icon-box { 
    width: 48px; 
    height: 48px; 
    background: rgba(255, 255, 255, 0.05); 
    border-radius: 12px; 
    display: flex; align-items: center; justify-content: center; 
    border: 1px solid rgba(255,255,255,0.05); 
}
.icon-box svg { width: 24px; height: 24px; color: #fff; }

/* Font size bade kiye */
.service-card h3 { 
    font-size: 1.6rem; /* Bada font */
    color: #fff; 
    margin: 0; 
    z-index: 2; 
    line-height: 1.2; 
}
.service-card p { 
    font-size: 1.05rem; /* Text readable banaya */
    color: #aaa; 
    line-height: 1.6; 
    margin-bottom: 20px; 
    position: relative; 
    z-index: 2; 
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; 
}

.tech-stack { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; position: relative; z-index: 2; }
.tech-stack span { 
    font-size: 0.8rem; /* Tag size bada kiya */
    padding: 6px 14px; 
    background: rgba(255, 255, 255, 0.04); 
    border-radius: 20px; 
    color: #bbb; 
    border: 1px solid rgba(255, 255, 255, 0.06); 
    transition: 0.3s; 
}
.tech-stack span:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Tall Card (AI Integration wala) ko aur highlight kiya */
.card-tall-v2 { grid-row: span 2; background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(30,10,40,0.4) 100%); }
.card-tall-v2 .icon-box { width: 60px; height: 60px; margin-bottom: 25px; }
.card-tall-v2 .icon-box svg { width: 30px; height: 30px; }
.card-tall-v2 h3 { font-size: 2.2rem; margin-bottom: 15px; } /* Main card ki heading sabse badi */

.vertical-stack { flex-direction: column; align-items: flex-start; }
.vertical-stack span { font-size: 0.9rem; padding: 8px 18px; width: 100%; text-align: center; }

/* Background Numbers ko aur bold kiya */
.card-bg-num { 
    position: absolute; 
    top: -15px; 
    right: 15px; 
    font-size: 9rem; /* 6rem se 9rem kar diya */
    font-family: var(--font-heading); 
    font-weight: 800; 
    color: rgba(255, 255, 255, 0.015); 
    z-index: 0; pointer-events: none; 
    transition: 0.4s; 
}
.service-card:hover .card-bg-num { color: rgba(255, 255, 255, 0.04); transform: translateY(-10px) scale(1.05); }

/* Responsive (Mobile me cards thik dikhe) */
@media (max-width: 900px) {
    .bento-grid-v2 { grid-template-rows: auto; gap: 20px; }
    .card-tall-v2 { grid-row: auto; }
    .service-card { padding: 30px; min-height: 250px; }
    .tech-stack.vertical-stack { flex-direction: row; }
    .vertical-stack span { width: auto; }
    .card-bg-num { font-size: 7rem; }
}

/* Work (Sticky) */
.work-stack { position: relative; padding-bottom: 100px; }
.sticky-card {
    position: sticky; top: var(--top); background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: 30px;
    padding: 60px; margin-bottom: 40px; display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 60px; align-items: center; overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
}
.project-content { position: relative; z-index: 2; }
.project-num { font-family: var(--font-heading); font-size: 5rem; font-weight: 700; color: rgba(255, 255, 255, 0.05); line-height: 1; margin-bottom: -20px; position: relative; z-index: -1; }
.sticky-card h3 { font-size: 2.5rem; margin-bottom: 20px; color: #fff; }
.sticky-card p { font-size: 1.1rem; color: #aaa; margin-bottom: 30px; line-height: 1.7; }
.tech-tags { display: flex; gap: 10px; margin-bottom: 40px; }
.tech-tags span { font-size: 0.8rem; padding: 8px 16px; border: 1px solid var(--border); border-radius: 20px; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.btn-link { background: none; border: none; color: #fff; font-size: 1rem; border-bottom: 1px solid #555; padding-bottom: 5px; cursor: pointer; transition: 0.3s; }
.btn-link:hover { color: hsl(var(--hue), 80%, 60%); border-color: hsl(var(--hue), 80%, 60%); }
.project-visual { height: 400px; border-radius: 20px; overflow: hidden; position: relative; border: 1px solid var(--border); }
.visual-inner { width: 100%; height: 100%; transition: transform 0.6s ease; }
.project-visual:hover .visual-inner { transform: scale(1.05); }
.gradient-blue { background: linear-gradient(45deg, #0f2027, #203a43, #2c5364); }
.gradient-purple { background: linear-gradient(45deg, #2a0845, #6441A5, #7a288a); }
.gradient-teal { background: linear-gradient(45deg, #134E5E, #71B280); }
.gradient-orange { background: linear-gradient(45deg, #3E5151, #DECBA4); }
.ai-overlay { position: absolute; bottom: 20px; left: 20px; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); padding: 10px 20px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 5px; }
.ai-overlay span { font-size: 0.7rem; color: #00ff88; font-family: monospace; text-transform: uppercase; }
.scan-line { width: 100%; height: 2px; background: #00ff88; box-shadow: 0 0 10px #00ff88; animation: scan 2s infinite ease-in-out; }
@keyframes scan { 0% { transform: translateX(-100%); opacity: 0; } 50% { opacity: 1; } 100% { transform: translateX(100%); opacity: 0; } }

/* Process */
.process-pipeline { display: flex; justify-content: space-between; position: relative; padding: 40px 0; margin-top: 40px; }
.pipeline-line { position: absolute; top: 80px; left: 10%; width: 80%; height: 2px; background: rgba(255, 255, 255, 0.1); z-index: 1; }
.line-fill { width: 50%; height: 100%; background: linear-gradient(90deg, transparent, var(--accent), transparent); animation: flowLine 3s infinite linear; }
@keyframes flowLine { 0% { transform: translateX(-100%); } 100% { transform: translateX(200%); } }
.p-step { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; padding: 0 20px; }
.p-icon-box { width: 80px; height: 80px; background: #0a0a0a; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 30px; transition: 0.3s; position: relative; box-shadow: 0 0 20px rgba(0,0,0,0.5); }
.p-icon-box svg { width: 32px; height: 32px; color: #666; transition: 0.3s; }
.p-step.active .p-icon-box { border-color: var(--accent); box-shadow: 0 0 30px rgba(45, 90, 245, 0.2); }
.p-step.active svg { color: #fff; }
.pulse-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; border-radius: 50%; border: 1px solid var(--accent); opacity: 0; animation: pulseWave 2s infinite; }
@keyframes pulseWave { 0% { width: 80px; height: 80px; opacity: 0.8; } 100% { width: 140px; height: 140px; opacity: 0; } }
.p-num { display: block; font-size: 0.8rem; font-family: monospace; color: var(--accent); margin-bottom: 10px; letter-spacing: 2px; }
.p-content h3 { font-size: 1.5rem; color: #fff; margin-bottom: 15px; }
.p-content p { font-size: 0.95rem; color: #888; line-height: 1.6; }
.p-step:hover .p-icon-box { border-color: #fff; transform: translateY(-5px); }
.p-step:hover svg { color: #fff; }

/* Testimonials */
.testimonial-wrapper { position: relative; max-width: 900px; margin: 0 auto; text-align: center; padding: 0 10px; }
.t-header { margin-bottom: 50px; }
.t-slider-window { width: 100%; overflow: hidden; position: relative; padding: 10px 0; }
.t-track { display: flex; width: 100%; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.t-slide { flex: 0 0 100%; width: 100%; padding: 0 10px; display: flex; justify-content: center; box-sizing: border-box; }
.glass-card { background: rgba(20, 20, 20, 0.6); border: 1px solid var(--border); backdrop-filter: blur(20px); border-radius: 24px; padding: 40px; display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%; max-width: 800px; box-sizing: border-box; }
.stars { color: #ffbf00; letter-spacing: 5px; font-size: 1.2rem; margin-bottom: 10px; }
.quote { font-size: 1.5rem; font-family: var(--font-heading); color: #fff; line-height: 1.5; font-weight: 500; text-align: center; white-space: normal; word-wrap: break-word; max-width: 100%; }
.client-info { display: flex; align-items: center; gap: 15px; margin-top: 10px; }
.client-avatar { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-family: var(--font-heading); flex-shrink: 0; }
.client-name { display: block; color: #fff; font-weight: 600; text-align: left; }
.client-role { display: block; font-size: 0.85rem; color: #666; text-align: left; }
.t-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; height: 80%; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); opacity: 0.15; filter: blur(80px); z-index: -1; }
.t-progress-track { width: 200px; height: 4px; background: rgba(255, 255, 255, 0.1); border-radius: 10px; margin: 30px auto 0; position: relative; overflow: hidden; }
.t-progress-bar { width: 0%; height: 100%; background: var(--accent); border-radius: 10px; }
.t-progress-bar.animate { animation: loadBar 5s linear infinite; }
@keyframes loadBar { 0% { width: 0%; } 100% { width: 100%; } }

/* --- CONTACT & FORM --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; margin-top: 40px; }
.contact-form-box { background: rgba(20, 20, 20, 0.6); border: 1px solid var(--border); backdrop-filter: blur(20px); border-radius: 24px; padding: 40px; position: relative; display: flex; flex-direction: column; justify-content: center; height: 100%; }
.contact-form-box h3 { font-size: 2rem; color: #fff; margin-bottom: 10px; }
.contact-form-box p { font-size: 0.9rem; color: #888; margin-bottom: 30px; }
.styled-form { display: flex; flex-direction: column; gap: 20px; }
.form-group label { display: block; font-size: 0.8rem; color: #666; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* INPUTS */
.form-group input, .form-group textarea {
    width: 100%; background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border); border-radius: 8px; padding: 15px;
    color: #fff; font-family: var(--font-body); font-size: 1rem;
    transition: 0.3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent); background: rgba(45, 90, 245, 0.05);
    box-shadow: 0 0 15px rgba(45, 90, 245, 0.2);
}

/* UPDATED SELECT (Fixing Arrow & Padding) */
.form-group select {
    width: 100%; background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border); border-radius: 8px; padding: 15px;
    color: #fff; font-family: var(--font-body); font-size: 1rem;
    transition: 0.3s; outline: none;
    
    /* FIX: Custom Arrow */
    appearance: none; -webkit-appearance: none; -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px; /* Text overlap na kare */
    cursor: pointer;
}
.form-group select:hover, .form-group select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232d5af5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    border-color: var(--accent);
    background-color: rgba(45, 90, 245, 0.05);
}

.full-width { width: 100%; margin-top: 10px; }

/* Calendar */
.custom-calendar-box { background: rgba(20, 20, 20, 0.6); border: 1px solid var(--border); backdrop-filter: blur(20px); border-radius: 24px; padding: 30px; position: relative; display: flex; flex-direction: column; min-height: 550px; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.current-date { font-size: 1.5rem; font-weight: 600; color: #fff; font-family: var(--font-heading); }
.cal-nav button { background: transparent; border: 1px solid var(--border); color: #fff; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; transition: 0.3s; }
.cal-nav button:hover { background: var(--accent); border-color: var(--accent); }
.cal-weekdays, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; gap: 10px; }
.cal-weekdays span { font-size: 0.8rem; color: #666; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.cal-days li { list-style: none; font-size: 1rem; color: #bbb; padding: 10px; cursor: pointer; border-radius: 8px; transition: 0.3s; position: relative; }
.cal-days li.inactive { color: #444; pointer-events: none; }
.cal-days li:hover:not(.inactive) { background: rgba(255, 255, 255, 0.1); color: #fff; }
.cal-days li.active { color: #fff; }
.cal-days li.active::after { content: ''; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }
.cal-days li.selected { background: var(--accent) !important; color: #fff !important; box-shadow: 0 0 15px rgba(45, 90, 245, 0.4); }
.time-slot-section { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); }
.slot-label { font-size: 0.9rem; color: #888; margin-bottom: 15px; }
.slot-label span { color: #fff; font-weight: 600; }
.slots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.time-btn { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); color: #aaa; padding: 10px; border-radius: 8px; cursor: pointer; transition: 0.3s; font-family: var(--font-body); }
.time-btn:hover { border-color: #fff; color: #fff; }
.time-btn.active-time { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 0 10px rgba(45, 90, 245, 0.3); }
.calendly-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; height: 80%; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); opacity: 0.1; filter: blur(60px); pointer-events: none; z-index: 0; }

/* Back to Top */
.back-to-top { position: fixed; bottom: 40px; right: 40px; width: 50px; height: 50px; background: rgba(10, 10, 10, 0.8); border-radius: 50%; display: flex; justify-content: center; align-items: center; z-index: 900; opacity: 0; pointer-events: none; transition: all 0.3s ease; transform: translateY(20px); cursor: pointer; box-shadow: 0 0 20px rgba(0,0,0,0.5); border: none; padding: 0; }
.back-to-top.active { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-5px); box-shadow: 0 0 30px rgba(45, 90, 245, 0.3); }
.progress-ring { position: absolute; top: 0; left: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.progress-ring__circle { stroke: var(--accent); stroke-width: 3; fill: transparent; stroke-dasharray: 150; stroke-dashoffset: 150; transition: stroke-dashoffset 0.1s linear; }
.arrow-icon { color: #fff; font-size: 1.2rem; z-index: 2; transition: 0.3s; }
.back-to-top:hover .arrow-icon { color: var(--accent); }

/* Footer */
.footer-v2 { background: #050505; padding: 100px 0 40px; position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; position: relative; z-index: 2; }
.footer-cta span { font-size: 1rem; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; display: block; }
.footer-cta h2 { font-size: 5rem; line-height: 1; color: #fff; }
.hover-underline { position: relative; text-decoration: none; cursor: pointer; }
.hover-underline::after { content: ''; position: absolute; left: 0; bottom: 5px; width: 0%; height: 3px; background: var(--accent); transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.hover-underline:hover::after { width: 100%; }
.footer-status { display: flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, 0.05); padding: 10px 20px; border-radius: 50px; border: 1px solid var(--border); }
.status-dot { width: 8px; height: 8px; background: #00ff88; border-radius: 50%; box-shadow: 0 0 10px #00ff88; animation: blink 2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.footer-status span { font-size: 0.9rem; color: #fff; }
.footer-divider { height: 1px; width: 100%; background: var(--border); margin: 40px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; position: relative; z-index: 2; }
.footer-col h4 { font-size: 1rem; color: #fff; margin-bottom: 25px; }
.footer-col p { font-size: 0.9rem; color: #888; margin-bottom: 20px; line-height: 1.6; }
.brand-col .logo { margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-icon { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.social-icon:hover { background: #fff; color: #000; transform: translateY(-3px); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #888; text-decoration: none; font-size: 0.95rem; transition: 0.3s; }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-form { position: relative; display: flex; border-bottom: 1px solid #444; }
.footer-form input { width: 100%; background: transparent; border: none; padding: 10px 0; color: #fff; outline: none; }
.footer-form button { background: transparent; border: none; color: var(--accent); font-size: 1.2rem; cursor: pointer; transition: 0.3s; }
.footer-form button:hover { transform: translateX(5px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; padding-top: 20px; }
.footer-bottom p, .footer-meta span { font-size: 0.85rem; color: #555; }
.footer-meta { display: flex; gap: 20px; }
.footer-bg-text { position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%); font-size: 25vw; font-weight: 800; font-family: var(--font-heading); color: rgba(255, 255, 255, 0.02); pointer-events: none; z-index: 0; white-space: nowrap; }

/* Responsive */
@media (max-width: 900px) {
    .navbar { width: 95%; padding: 12px 20px; } .nav-links { display: none; }
    .headline { font-size: 2.8rem; }
    .bento-grid-v2 { grid-template-columns: 1fr; grid-template-rows: auto; }
    .card-tall-v2 { grid-row: auto; }
    .tech-stack.vertical-stack { flex-direction: row; }
    .service-card { min-height: 200px; }
    .sticky-card { grid-template-columns: 1fr; padding: 40px 30px; gap: 30px; }
    .project-visual { height: 250px; order: -1; }
    .process-pipeline { flex-direction: column; gap: 50px; }
    .pipeline-line { width: 2px; height: 80%; top: 10%; left: 50%; transform: translateX(-50%); }
    .line-fill { width: 100%; height: 50%; background: linear-gradient(180deg, transparent, var(--accent), transparent); animation: flowLineVert 3s infinite linear; }
    @keyframes flowLineVert { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }
    .hero-vector { display: none; }
    .back-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
    * { cursor: auto !important; } .cursor-dot, .cursor-outline { display: none; }
    .brand-section-big { padding: 80px 0; } .big-item { width: 180px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .glass-card { padding: 25px; } .quote { font-size: 1.1rem; } .testimonial-wrapper { padding: 0 15px; }
    .vision-wrapper { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .vision-content h2 { font-size: 2.5rem; }
    .vision-stats { justify-content: center; }
    .vision-orb-container { transform: scale(0.8); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-box { padding: 30px; }
    .cal-days li { padding: 8px 5px; font-size: 0.9rem; }
    .custom-calendar-box { min-height: auto; }
    .footer-top { flex-direction: column; align-items: flex-start; gap: 30px; }
    .footer-cta h2 { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}
.cursor-dot, .cursor-outline { position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); pointer-events: none; z-index: 9999; border-radius: 50%; }
.cursor-hover { transition: width 0.3s ease, height 0.3s ease, background 0.3s ease; }
/* --- LEGAL PAGES STYLE --- */
.legal-header {
    padding: 150px 0 80px; text-align: center; position: relative;
}
.legal-content {
    max-width: 800px; margin: 0 auto 100px; background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border); padding: 60px; border-radius: 20px;
    backdrop-filter: blur(10px);
}
.legal-content h2 { color: #fff; font-size: 1.8rem; margin-top: 40px; margin-bottom: 20px; font-family: var(--font-heading); }
.legal-content p { color: #aaa; font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }
.legal-content ul { margin-bottom: 20px; padding-left: 20px; color: #aaa; }
.legal-content li { margin-bottom: 10px; line-height: 1.6; }

/* Mobile Legal */
@media (max-width: 768px) {
    .legal-content { padding: 30px; margin: 0 20px 80px; }
    .legal-header { padding: 120px 0 50px; }
}

/* --- BREADCRUMB STYLE --- */
.breadcrumb-container {
    display: flex; justify-content: center; align-items: center;
    margin-bottom: 20px;
}
.breadcrumb {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border);
    padding: 8px 20px; border-radius: 50px; font-size: 0.85rem;
    backdrop-filter: blur(5px);
}
.breadcrumb a {
    color: var(--text-muted); text-decoration: none; transition: 0.3s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: var(--border); font-size: 0.8rem; }
.breadcrumb .current { color: var(--accent); font-weight: 500; }

/* Navbar Fix for Legal Pages (Optional Override) */
/* Agar background overlap ho rha h to ye ensure karega */
body.legal-page .navbar {
    background: rgba(5, 5, 5, 0.9); /* Thoda dark background taaki text saaf dikhe */
    backdrop-filter: blur(20px);
}

/* =========================================
   WORKING PROCESS PIPELINE
========================================= */
.process-pipeline-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

/* Continuous Glowing Track Line */
.pipeline-track {
    position: absolute;
    top: 35px; /* Center of the node */
    left: 12%;
    width: 76%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.track-progress {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent), #00f2ff, transparent);
    background-size: 200% 100%;
    animation: flowGlow 3s linear infinite;
    opacity: 0.8;
}

@keyframes flowGlow {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Step Circles */
.step-node {
    width: 70px;
    height: 70px;
    background: #0a0a0c;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #555;
    transition: 0.4s ease;
}

/* Ripple Animation on Hover */
.node-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0;
}

.process-step:hover .step-node {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(45, 90, 245, 0.3), inset 0 0 15px rgba(45, 90, 245, 0.2);
    transform: translateY(-5px);
}
.process-step:hover .step-number { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
.process-step:hover .node-pulse { animation: rippleNode 1.5s infinite; }

@keyframes rippleNode {
    0% { width: 70px; height: 70px; opacity: 0.8; }
    100% { width: 130px; height: 130px; opacity: 0; }
}

/* Content */
.step-content h3 { font-size: 1.3rem; color: #fff; margin-bottom: 15px; }
.step-content p { font-size: 0.95rem; color: #888; line-height: 1.6; }

/* Mobile Responsive */
@media (max-width: 900px) {
    .process-pipeline-v2 {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 50px;
    }
    
    /* Change track to vertical for mobile */
    .pipeline-track {
        top: 0;
        left: 35px; /* Aligned with circle center */
        width: 2px;
        height: 100%;
        transform: none;
    }
    
    .track-progress {
        background: linear-gradient(180deg, transparent, var(--accent), #00f2ff, transparent);
        background-size: 100% 200%;
        animation: flowGlowVert 3s linear infinite;
    }
    
    @keyframes flowGlowVert {
        0% { background-position: 0 100%; }
        100% { background-position: 0 -100%; }
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 30px;
    }

    .step-node { flex-shrink: 0; margin-bottom: 0; }
    .step-content h3 { margin-bottom: 10px; }
}
/* --- PREMIUM FLOATING LABEL FORM --- */
.styled-form-v2 { display: flex; flex-direction: column; gap: 25px; margin-top: 20px; }

.input-wrapper { position: relative; width: 100%; }

.input-wrapper input, 
.input-wrapper textarea, 
.input-wrapper select {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
}

/* Floating Label Logic */
.input-wrapper label {
    position: absolute;
    left: 20px;
    top: 18px;
    color: #666;
    font-size: 1rem;
    pointer-events: none;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
}

/* Focus and Valid States */
.input-wrapper input:focus, 
.input-wrapper textarea:focus,
.input-wrapper select:focus {
    border-color: var(--accent);
    background: rgba(45, 90, 245, 0.05);
    box-shadow: 0 0 20px rgba(45, 90, 245, 0.15), inset 0 2px 5px rgba(0,0,0,0.2);
}

.input-wrapper input:focus + label, 
.input-wrapper input:not(:placeholder-shown) + label,
.input-wrapper textarea:focus + label,
.input-wrapper textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--accent);
    background: var(--surface); /* Inherits your dark background */
    padding: 0 8px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Customizing Select Arrow */
.input-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

/* Disabled Button Style */
.disabled-btn {
    opacity: 0.5;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    background: #333 !important;
    color: #888 !important;
}