/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



:root {
    /* Dark Tech Theme Colors */
    --bg-primary: #0a0e27;
    --bg-secondary: #111632;
    --bg-tertiary: #1a1f3a;
    --bg-card: rgba(26, 31, 58, 0.6);
    
    /* Neon Accent Colors */
    --neon-cyan: #00f0ff;
    --neon-purple: #b066ff;
    --neon-pink: #ff2e97;
    --neon-green: #00ff88;
    
    /* Text Colors */
    --text-primary: #e8edf4;
    --text-secondary: #9ca3af;
    --text-dim: #6b7280;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00f0ff 0%, #b066ff 100%);
    --gradient-secondary: linear-gradient(135deg, #b066ff 0%, #ff2e97 100%);
    --gradient-tech: linear-gradient(135deg, #00ff88 0%, #00f0ff 50%, #b066ff 100%);
    
    /* Effects */
    --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5);
    --glow-purple: 0 0 20px rgba(176, 102, 255, 0.5);
    --glow-pink: 0 0 20px rgba(255, 46, 151, 0.5);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(176, 102, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 22, 50, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--neon-cyan);
    text-decoration: none;
    border-bottom: 1px solid var(--neon-cyan);
    transition: color 0.3s ease;
}

.cookie-content a:hover {
    color: var(--neon-purple);
    border-bottom-color: var(--neon-purple);
}

.cookie-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--glow-cyan);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan), 0 8px 25px rgba(0, 240, 255, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.logo::before {
    content: '< ';
    color: var(--neon-cyan);
}

.logo::after {
    content: ' />';
    color: var(--neon-cyan);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    box-shadow: var(--glow-cyan);
}

.nav-menu a:hover {
    color: var(--neon-cyan);
}

.nav-menu a:hover::before {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* Hero Section  */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--neon-pink);
    bottom: 10%;
    left: 50%;
    animation-delay: 4s;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-green);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.badge-text {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.title-line {
    display: block;
    color: var(--text-primary);
}

.tech-highlight {
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Hero Stats  */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-plus {
    color: var(--neon-cyan);
    font-size: 32px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.stat-bar::after {
    content: '';
    display: block;
    height: 100%;
    background: var(--gradient-primary);
    width: 0;
    animation: fillBar 2s ease-out forwards;
}

@keyframes fillBar {
    to { width: 100%; }
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.cta-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-cyan);
    border: 1px solid transparent;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan), 0 15px 35px rgba(0, 240, 255, 0.4);
}

.cta-primary svg {
    transition: transform 0.3s ease;
}

.cta-primary:hover svg {
    transform: translateX(5px);
}

.cta-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

/* Tech Stack Preview */
.tech-stack-preview {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: translateY(-5px);
    box-shadow: var(--glow-cyan);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tech-icon svg {
    color: var(--neon-cyan);
}

.tech-item span {
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 500;
}

/* Scroll Indicator*/
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--neon-cyan), transparent);
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Hero Image Showcase */
.hero-image-showcase {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.hero-main-image {
    max-width: 100%;
    width: 800px;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: var(--glow-cyan), 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.hero-main-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-cyan), 0 30px 80px rgba(0, 0, 0, 0.6);
}


/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--neon-cyan);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card > *:not(.service-image) {
    padding: 0 40px;
}

.service-card h3,
.service-card p {
    padding-left: 40px;
    padding-right: 40px;
}

.service-card h3 {
    padding-top: 30px;
}

.service-card p {
    padding-bottom: 40px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 20px 40px;
    color: var(--neon-cyan);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-cyan);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Process Section */
.process {
    background: var(--bg-primary);
    position: relative;
}

.process-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    overflow: hidden;
}

.process-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.timeline-item {
    position: relative;
    padding-left: 90px;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    font-weight: 700;
    font-size: 20px;
    box-shadow: var(--glow-cyan);
    backdrop-filter: blur(20px);
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Expertise Section */
.expertise {
    background: var(--bg-secondary);
    color: white;
    position: relative;
    overflow: hidden;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(176, 102, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tech-category h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.tech-tag:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stats-grid .stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-grid .stat-label {
    font-size: 16px;
    opacity: 0.9;
    color: var(--text-secondary);
}

/* Industries Section */
.industries {
    background: var(--bg-primary);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.industry-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.05);
}

.industry-card h3,
.industry-card p {
    padding: 0 35px;
}

.industry-card h3 {
    padding-top: 25px;
}

.industry-card p {
    padding-bottom: 35px;
}

.industry-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateX(5px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.industry-card:hover::before {
    transform: scaleY(1);
}

.industry-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.industry-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose {
    background: var(--bg-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.why-image-container {
    position: relative;
}

.why-choose-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.why-choose-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-cyan);
}

.why-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.why-content > p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: var(--glow-cyan);
}

.benefit-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.benefit-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.why-visual {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.visual-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.visual-card:hover {
    transform: scale(1.05);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.visual-stat {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.visual-card p {
    font-size: 16px;
    opacity: 0.95;
    margin: 0;
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    background: var(--bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon svg {
    color: var(--neon-cyan);
}

.contact-item:hover .contact-icon {
    background: var(--gradient-primary);
    box-shadow: var(--glow-cyan);
}

.contact-item:hover .contact-icon svg {
    color: white;
}

.contact-item h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--neon-purple);
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: var(--shadow-card);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(10, 14, 39, 0.5);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
    background: rgba(10, 14, 39, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--glow-cyan);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan), 0 15px 35px rgba(0, 240, 255, 0.4);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.7;
    margin: 0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom > p {
    margin: 0 0 15px 0;
    font-size: 14px;
}

.company-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.company-info p {
    margin: 8px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}


/* Policy Pages Styles */
.policy-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--bg-primary);
}

.policy-header {
    background: var(--bg-secondary);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.policy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.policy-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-header p {
    font-size: 18px;
    opacity: 0.9;
    color: var(--text-secondary);
    position: relative;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.policy-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.policy-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--text-secondary);
}

.policy-content ul li,
.policy-content ol li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.policy-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.policy-content a {
    color: var(--neon-cyan);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;
}

.policy-content a:hover {
    color: var(--neon-purple);
    border-bottom-color: var(--neon-purple);
}

/* Thanks Page Styles */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    padding: 100px 20px;
    position: relative;
}

.thanks-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(0, 240, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(176, 102, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: var(--glow-cyan);
    position: relative;
}

.thanks-icon {
    margin-bottom: 30px;
    animation: scaleIn 0.6s ease;
    display: flex;
    justify-content: center;
}

.thanks-icon svg {
    color: var(--neon-cyan);
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.thanks-container p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 35px;
}

.thanks-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--glow-cyan);
}

.thanks-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan), 0 15px 35px rgba(0, 240, 255, 0.4);
}


/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(17, 22, 50, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-elevated);
        padding: 30px 0;
        border-top: 1px solid rgba(0, 240, 255, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-stack-preview {
        gap: 25px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-image-container {
        order: 2;
    }
    
    .why-content {
        order: 1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .tech-stack-preview {
        gap: 20px;
    }
    
    .hero-main-image {
        width: 100%;
    }
    
    .service-image {
        height: 150px;
    }
    
    .industry-image {
        height: 140px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .timeline-item {
        padding-left: 75px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .thanks-container {
        padding: 40px 25px;
    }
    
    .thanks-container h1 {
        font-size: 32px;
    }
    
    .policy-header h1 {
        font-size: 36px;
    }
    
    .company-info p {
        font-size: 11px;
        line-height: 1.8;
    }
}
