/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --tertiary-bg: #2a2a2a;
    --accent-blue: #00d4ff;
    --accent-green: #00ff88;
    --accent-purple: #8b5cf6;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --border-color: #333333;
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.3);
    --glow-green: 0 0 20px rgba(0, 255, 136, 0.3);
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Mono', monospace;
    font-weight: 600;
    line-height: 1.2;
}

.accent {
    color: var(--accent-blue);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

/* removed temporary logo image styling */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #0f0f23 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#chartCanvas {
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

#particlesCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    text-align-last: center;
    word-spacing: 0.1em;
    line-height: 1.2;
}

.title-main {
    display: block;
    color: var(--text-primary);
}

.title-sub {
    display: block;
    color: var(--accent-blue);
    text-shadow: var(--glow-blue);
    margin-top: 0.25em;
}

/* Headline animation */
.headline-animate {
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
    filter: drop-shadow(0 0 8px rgba(0,212,255,0.35));
}

/* 4K-grade headline treatment */
.headline-4k {
    position: relative;
    background: linear-gradient(120deg, #ffffff 0%, #b3e7ff 15%, #7fe9c0 30%, #79a8ff 50%, #ffffff 70%, #b3e7ff 85%, #7fe9c0 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 4px rgba(255,255,255,0.35), 0 0 14px rgba(0,212,255,0.4), 0 0 28px rgba(0,255,136,0.25);
    animation: gradientShift 8s ease-in-out infinite;
}

.headline-4k::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(75deg, transparent 0%, rgba(255,255,255,0.18) 45%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.18) 55%, transparent 100%);
    transform: skewX(-18deg);
    filter: blur(1px);
    animation: shineSweep 4.5s cubic-bezier(.2,.7,.2,1) infinite;
    pointer-events: none;
}

.headline-4k .char {
    /* Slight depth pop per letter for ultra crisp look */
    text-shadow: 0 1px 0 rgba(255,255,255,0.15), 0 0 12px rgba(0,212,255,0.35), 0 0 26px rgba(0,255,136,0.22);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shineSweep {
    0% { left: -150%; }
    100% { left: 150%; }
}

/* Chrome Shine + Depth Parallax variant */
.headline-chrome {
    position: relative;
    background: linear-gradient(115deg, #7fb7ff 0%, #ffffff 12%, #8fffd8 26%, #93a9ff 42%, #ffffff 58%, #7fb7ff 74%, #8fffd8 100%);
    background-size: 250% 250%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 6px rgba(255,255,255,0.35), 0 0 22px rgba(0,212,255,0.35);
}

.headline-chrome::after {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    width: 40%;
    height: 100%;
    background: linear-gradient(75deg, transparent 0%, rgba(255,255,255,0.22) 45%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.22) 55%, transparent 100%);
    transform: skewX(-18deg);
    filter: blur(0.8px);
    animation: chromeShine 5.5s ease-in-out infinite;
}

@keyframes chromeShine {
    0% { left: -130%; }
    100% { left: 160%; }
}

.parallax-tilt {
    will-change: transform;
    transform-style: preserve-3d;
    perspective: 800px;
}

.parallax-tilt .char {
    display: inline-block;
    transform: translateZ(0px);
}

/* Glitch + RGB Split */
.headline-glitch {
    position: relative;
    color: var(--text-primary);
    filter: drop-shadow(0 0 10px rgba(0,212,255,0.25));
}

.headline-glitch::before,
.headline-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    mix-blend-mode: screen;
}

.headline-glitch::before {
    color: #ff2a6d; /* red/magenta channel */
    transform: translate(2px, 0);
    animation: glitchShift 2.4s infinite steps(1, end), glitchClip 2.4s infinite steps(8, end);
}

.headline-glitch::after {
    color: #00d4ff; /* cyan/blue channel */
    transform: translate(-2px, 0);
    animation: glitchShift 2.4s infinite steps(1, end) reverse, glitchClip 2.4s infinite steps(8, end) reverse;
}

.headline-glitch .char {
    animation: glitchFlicker 3.2s infinite linear;
}

@keyframes glitchShift {
    0%, 89%, 100% { transform: translate(0, 0); filter: none; }
    90% { transform: translate(-2px, 1px); filter: hue-rotate(10deg) saturate(1.2); }
    92% { transform: translate(3px, -2px); filter: hue-rotate(-10deg) saturate(1.2); }
    94% { transform: translate(-1px, 2px); }
    96% { transform: translate(2px, -1px); }
    98% { transform: translate(0, 0); }
}

@keyframes glitchClip {
    0% { clip-path: inset(0 0 0 0); }
    20% { clip-path: inset(10% 0 40% 0); }
    40% { clip-path: inset(40% 0 20% 0); }
    60% { clip-path: inset(20% 0 50% 0); }
    80% { clip-path: inset(30% 0 10% 0); }
    100% { clip-path: inset(0 0 0 0); }
}

@keyframes glitchFlicker {
    0%, 96%, 100% { opacity: 1; }
    97% { opacity: 0.9; }
    98% { opacity: 0.7; }
    99% { opacity: 1; }
}

/* Neon Scanline Pulse */
.headline-neon {
    position: relative;
    color: #e8fbff;
    text-shadow: 0 0 8px rgba(0,212,255,0.7), 0 0 18px rgba(0,212,255,0.45), 0 0 32px rgba(0,255,136,0.3);
    animation: neonPulse 3.5s ease-in-out infinite;
}

.headline-neon .char {
    text-shadow: 0 0 6px rgba(0,212,255,0.6), 0 0 14px rgba(0,255,136,0.35);
}

.headline-neon.scanline::after {
    content: '';
    position: absolute;
    inset: -4px -8px; /* slightly larger to glow beyond */
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.035) 0px,
        rgba(255,255,255,0.035) 2px,
        transparent 2px,
        transparent 4px
    );
    mix-blend-mode: screen;
    opacity: 0.7;
    pointer-events: none;
    animation: scanSweep 6s linear infinite;
}

@keyframes neonPulse {
    0%, 100% { text-shadow: 0 0 8px rgba(0,212,255,0.6), 0 0 22px rgba(0,212,255,0.35), 0 0 36px rgba(0,255,136,0.25); }
    50% { text-shadow: 0 0 16px rgba(0,212,255,0.95), 0 0 34px rgba(0,212,255,0.55), 0 0 60px rgba(0,255,136,0.45); }
}

@keyframes scanSweep {
    0% { transform: translateY(-10%); opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { transform: translateY(10%); opacity: 0.5; }
}

.headline-animate .char {
    display: inline-block;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    animation: char-pop 700ms cubic-bezier(.2,.7,.2,1) forwards;
}

.headline-animate.glow {
    animation: headline-glow 2.8s ease-in-out infinite;
}

@keyframes char-pop {
    0% { opacity: 0; transform: translateY(20px) scale(0.95); }
    60% { opacity: 1; transform: translateY(-4px) scale(1.03); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes headline-glow {
    0%, 100% { text-shadow: 0 0 10px rgba(0,212,255,0.6), 0 0 20px rgba(0,255,136,0.3); }
    50% { text-shadow: 0 0 18px rgba(0,212,255,0.9), 0 0 32px rgba(0,255,136,0.6); }
}

/* removed shine sweep */

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* removed ticker styles */

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0,212,255,0.35) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.6s ease;
    opacity: 0;
}

.btn.ripple::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    color: var(--text-primary);
    box-shadow: var(--glow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
    box-shadow: var(--glow-green);
}

.btn-secondary:hover {
    background: var(--accent-green);
    color: var(--primary-bg);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.btn-outline:hover {
    background: var(--accent-blue);
    color: var(--primary-bg);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Services Highlights */
.services-highlights {
    padding: 100px 0;
    background: var(--secondary-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--tertiary-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tilt {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: var(--glow-blue);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--primary-bg);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.trading-dashboard {
    background: var(--tertiary-bg);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--glow-blue);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-title {
    font-weight: 600;
    color: var(--text-primary);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-green);
    font-size: 0.9rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.metric-value {
    font-weight: 600;
    color: var(--text-primary);
}

.metric-value.positive {
    color: var(--accent-green);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #1a1a2e 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #0f0f23 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Page */
.services-page {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.service-card-detailed {
    background: var(--tertiary-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-detailed:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: var(--glow-blue);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon-large {
    font-size: 2.5rem;
    color: var(--accent-blue);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
}

.service-header h2 {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.service-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: var(--primary-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--tertiary-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: var(--glow-green);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-family: 'Roboto Mono', monospace;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Page */
.mission {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.mission-statement {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.mission-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.trading-chart {
    background: var(--tertiary-bg);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--glow-purple);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.chart-title {
    font-weight: 600;
    color: var(--text-primary);
}

.chart-timeframe {
    color: var(--accent-blue);
    font-size: 0.9rem;
}

.chart-content {
    height: 200px;
    position: relative;
}

.price-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
    margin: 50% 0;
    position: relative;
}

.price-line::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
    opacity: 0.3;
    filter: blur(2px);
}

.indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
}

.indicator-line {
    height: 2px;
    margin-bottom: 10px;
    border-radius: 1px;
}

.indicator-line.rsi {
    background: var(--accent-blue);
    width: 70%;
}

.indicator-line.macd {
    background: var(--accent-green);
    width: 50%;
}

.story {
    padding: 80px 0;
    background: var(--primary-bg);
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.story-text {
    max-width: 800px;
    margin: 0 auto;
}

.story-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.team {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--tertiary-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: var(--glow-purple);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--text-primary);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.team-member p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.values {
    padding: 80px 0;
    background: var(--primary-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--tertiary-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: var(--glow-green);
}

.value-icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.stats {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    font-family: 'Roboto Mono', monospace;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Contact Page */
.contact {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-photo {
    text-align: center;
}

.photo-placeholder {
    width: 200px;
    height: 200px;
    background: var(--tertiary-bg);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid var(--accent-blue);
    box-shadow: var(--glow-blue);
}

.photo-placeholder i {
    font-size: 4rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.photo-placeholder span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.designation {
    color: var(--accent-blue);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.contact-method:hover {
    color: var(--accent-blue);
}

.contact-method i {
    font-size: 1.2rem;
    color: var(--accent-blue);
    width: 20px;
}

.contact-method a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--accent-blue);
}

.contact-form-container {
    background: var(--tertiary-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: var(--glow-blue);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--primary-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--tertiary-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-green);
    box-shadow: var(--glow-green);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-bg);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--tertiary-bg);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--secondary-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: left;
        word-spacing: 0.1em;
        line-height: 1.3;
    }
    
    .title-main,
    .title-sub {
        display: block;
        word-break: break-word;
        overflow-wrap: break-word;
        text-align: left;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid-detailed {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
        text-align: left;
        word-spacing: 0.1em;
        line-height: 1.3;
    }
    
    .title-main,
    .title-sub {
        display: block;
        word-break: break-word;
        overflow-wrap: break-word;
        text-align: left;
        white-space: normal;
        line-height: 1.3;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .service-cta {
        flex-direction: column;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.process-step,
.team-member,
.value-item,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Sparkle trail for chart highlights */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,136,1) 0%, rgba(0,212,255,1) 60%, transparent 70%);
    box-shadow: 0 0 10px rgba(0,212,255,0.8), 0 0 20px rgba(0,255,136,0.6);
    pointer-events: none;
}

/* Contact Method Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--tertiary-bg);
    border-radius: 15px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-header {
    background: var(--secondary-bg);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.popup-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.1);
}

.popup-body {
    padding: 2rem;
}

.popup-body p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.1rem;
}

.contact-method-options {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.contact-method-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--secondary-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.contact-method-btn:hover {
    border-color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.contact-method-btn i {
    font-size: 2rem;
    width: 40px;
    text-align: center;
}

.contact-method-btn#whatsappBtn i {
    color: #25D366;
}

.contact-method-btn#emailBtn i {
    color: var(--accent-blue);
}

.contact-method-btn[onclick*="openGmail"] i {
    color: #DB4437;
}

.contact-method-btn[onclick*="openYahooMail"] i {
    color: #720E9E;
}

.contact-method-btn[onclick*="openOutlookWeb"] i {
    color: #0078D4;
}

.contact-method-btn span {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
}

.contact-method-btn small {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

/* Greeting Popup Styles */
.greeting-popup {
    max-width: 600px;
}

.greeting-content {
    text-align: center;
}

.greeting-icon {
    font-size: 4rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
    animation: bounce 0.6s ease-in-out;
}

.greeting-content h4 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.greeting-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.greeting-details {
    background: var(--secondary-bg);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.greeting-details p {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.greeting-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.greeting-details li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.greeting-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile responsive for popup */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .popup-header {
        padding: 1rem 1.5rem;
    }
    
    .popup-body {
        padding: 1.5rem;
    }
    
    .contact-method-btn {
        padding: 1rem;
    }
    
    .contact-method-btn i {
        font-size: 1.5rem;
        width: 30px;
    }
    
    .contact-method-btn span {
        font-size: 1rem;
    }
    
    .contact-method-btn small {
        font-size: 0.8rem;
    }
    
    .greeting-icon {
        font-size: 3rem;
    }
    
    .greeting-content h4 {
        font-size: 1.5rem;
    }
    
    .greeting-content > p {
        font-size: 1rem;
    }
    
    .greeting-details {
        padding: 1rem;
    }
}
