/* Vision AI Platform - Futuristic UI Styles */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

:root {
    --primary-color: #00d4ff;
    --primary-dark: #0099cc;
    --secondary-color: #6366f1;
    --accent-color: #ff6b6b;
    --dark-bg: #0a0a0f;
    --dark-surface: #1a1a2e;
    --dark-card: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --text-muted: #8892b0;
    --border-color: #233554;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #6366f1 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    --shadow-lg: 0 20px 40px rgba(0, 212, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.logo-hexagon {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text .company-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.logo-text .product-name {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-visualization {
    position: relative;
    width: 400px;
    height: 400px;
}

.central-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Capabilities Section */
.capabilities {
    padding: 120px 0;
    background: var(--dark-surface);
}

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

.section-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.capability-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.capability-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.capability-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.feature-list li {
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.card-footer {
    margin-top: auto;
}

.accuracy-badge,
.speed-badge,
.prediction-badge,
.analytics-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.accuracy-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.speed-badge {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.prediction-badge {
    background: rgba(255, 107, 107, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.analytics-badge {
    background: rgba(99, 102, 241, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

/* Technology Section */
.technology {
    padding: 120px 0;
}

.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-circle {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.tech-layer {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.layer-1 {
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.layer-2 {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    animation: rotate 15s linear infinite reverse;
}

.tech-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.tech-center i {
    font-size: 32px;
    margin-bottom: 8px;
}

.tech-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--dark-card);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.tech-node:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.layer-1 .tech-node:nth-child(1) { top: -30px; left: 50%; transform: translateX(-50%); }
.layer-1 .tech-node:nth-child(2) { top: 50%; right: -30px; transform: translateY(-50%); }
.layer-1 .tech-node:nth-child(3) { bottom: -30px; left: 50%; transform: translateX(-50%); }

.layer-2 .tech-node:nth-child(1) { top: -30px; left: 50%; transform: translateX(-50%); }
.layer-2 .tech-node:nth-child(2) { top: 50%; right: -30px; transform: translateY(-50%); }
.layer-2 .tech-node:nth-child(3) { bottom: -30px; left: 50%; transform: translateX(-50%); }

.tech-details {
    gap: 16px;
}

.tech-feature {
    margin-bottom: 32px;
}

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

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

/* Solutions Section */
.solutions {
    padding: 120px 0;
    background: var(--dark-surface);
}

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

.solution-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-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: -1;
}

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

.solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
}

.solution-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.solution-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.solution-metrics {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.solution-metrics span {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 120px 0;
}

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

.contact-info h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--primary-color);
    width: 24px;
    font-size: 18px;
}

.contact-form {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
}

/* Footer */
.footer {
    background: var(--dark-surface);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 600;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Mobile Responsive Design - MNC Grade */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding-top: 100px;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px;
        min-width: auto;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    
    /* Tech Ecosystem Mobile */
    .hero-visual {
        padding: 40px 20px;
        overflow: visible;
    }
    
    .tech-ecosystem {
        width: 260px;
        height: 260px;
        margin: 0 auto;
    }
    
    .ecosystem-center {
        width: 85px;
        height: 85px;
        font-size: 12px;
    }
    
    .ecosystem-center i {
        font-size: 20px;
        margin-bottom: 2px;
    }
    
    .tech-node {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
    
    .layer-1 .tech-node:nth-child(1) { top: -24px; left: 50%; transform: translateX(-50%); }
    .layer-1 .tech-node:nth-child(2) { top: 50%; right: -24px; transform: translateY(-50%); }
    .layer-1 .tech-node:nth-child(3) { bottom: -24px; left: 50%; transform: translateX(-50%); }
    .layer-1 .tech-node:nth-child(4) { top: 50%; left: -24px; transform: translateY(-50%); }
    
    .layer-2 .tech-node:nth-child(1) { top: -18px; right: 15%; }
    .layer-2 .tech-node:nth-child(2) { bottom: -18px; right: 15%; }
    .layer-2 .tech-node:nth-child(3) { bottom: -18px; left: 15%; }
    .layer-2 .tech-node:nth-child(4) { top: -18px; left: 15%; }
    
    /* Capabilities Grid Mobile */
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .capability-card {
        padding: 20px;
    }
    
    .card-header h3 {
        font-size: 18px;
    }
    
    .capability-card p {
        font-size: 14px;
    }
    
    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    /* Navigation Mobile */
    .nav-container {
        padding: 12px 16px;
    }
    
    .logo-text .company-name {
        font-size: 16px;
    }
    
    .logo-text .product-name {
        font-size: 11px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin-bottom: 16px;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .nav-actions .btn {
        padding: 8px 16px;
        font-size: 14px;
        width: auto;
    }
    
    /* Section Headers Mobile */
    .section-title {
        font-size: 32px;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 16px;
        text-align: center;
    }
    
    .section-badge {
        font-size: 11px;
        padding: 4px 12px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-visual {
        padding: 20px 10px;
    }
    
    .tech-ecosystem {
        width: 220px;
        height: 220px;
    }
    
    .ecosystem-center {
        width: 75px;
        height: 75px;
        font-size: 11px;
    }
    
    .ecosystem-center i {
        font-size: 18px;
    }
    
    .tech-node {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
    
    .layer-1 .tech-node:nth-child(1) { top: -21px; left: 50%; transform: translateX(-50%); }
    .layer-1 .tech-node:nth-child(2) { top: 50%; right: -21px; transform: translateY(-50%); }
    .layer-1 .tech-node:nth-child(3) { bottom: -21px; left: 50%; transform: translateX(-50%); }
    .layer-1 .tech-node:nth-child(4) { top: 50%; left: -21px; transform: translateY(-50%); }
    
    .layer-2 .tech-node:nth-child(1) { top: -16px; right: 15%; }
    .layer-2 .tech-node:nth-child(2) { bottom: -16px; right: 15%; }
    .layer-2 .tech-node:nth-child(3) { bottom: -16px; left: 15%; }
    .layer-2 .tech-node:nth-child(4) { top: -16px; left: 15%; }
    
    .section-title {
        font-size: 28px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
}
