@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow-x: hidden;
    position: relative;
}

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

/* Three.js Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

/* Decorative Background Pattern */
.scan-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(52, 73, 94, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 3px solid #e74c3c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    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;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.logo-icon i {
    font-size: 1.2rem;
    color: #0a0f1a;
}

.logo-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #bdc3c7;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.75rem 1.25rem;
    border: 2px solid transparent;
    border-radius: 6px;
}

.nav-number {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: #e74c3c;
    font-weight: 600;
}

.nav-link:hover {
    color: #ffffff;
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background: #00d4ff;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    background: linear-gradient(90deg, rgba(231, 76, 60, 0.2), rgba(241, 196, 15, 0.1));
    border: 2px solid #e74c3c;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e74c3c;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-line {
    display: block;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.gradient-text {
    background: linear-gradient(45deg, #e74c3c, #f39c12, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradient-shift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(90deg);
    }
}

.hero-description {
    margin-bottom: 3rem;
}

.hero-description p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: #ffffff;
    border: 2px solid #e74c3c;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    background: linear-gradient(45deg, #c0392b, #a93226);
}

.btn-secondary {
    color: #e74c3c;
    border: 2px solid #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(231, 76, 60, 0.2);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

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

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 0.8rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hud-interface {
    width: 100%;
    max-width: 500px;
}

.hud-panel {
    background: rgba(10, 15, 26, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-indicator {
    color: #00ff88;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.neural-display {
    height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neural-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: grid-move 10s linear infinite;
    z-index: 1;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20px, 20px);
    }
}

/* Brain Circuit Animation */
.brain-circuit {
    position: relative;
    width: 200px;
    height: 200px;
    z-index: 2;
}

.circuit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.outer-ring {
    width: 180px;
    height: 180px;
    animation: rotate-clockwise 20s linear infinite;
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.middle-ring {
    width: 130px;
    height: 130px;
    animation: rotate-counterclockwise 15s linear infinite;
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.inner-ring {
    width: 80px;
    height: 80px;
    animation: rotate-clockwise 10s linear infinite;
    border-color: rgba(255, 107, 255, 0.4);
    box-shadow: 0 0 10px rgba(255, 107, 255, 0.2);
}

@keyframes rotate-clockwise {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotate-counterclockwise {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

.circuit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #00d4ff, rgba(0, 212, 255, 0.3));
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform-origin: 4px calc(var(--ring-radius, 90px) + 4px);
    transform: translateX(-50%) rotate(var(--angle)) translateY(var(--ring-radius, 90px));
    animation: pulse-node 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.outer-ring .circuit-node {
    --ring-radius: 90px;
    background: radial-gradient(circle, #00d4ff, rgba(0, 212, 255, 0.3));
    animation-delay: calc(var(--angle) / 360deg * 2s);
}

.middle-ring .circuit-node {
    --ring-radius: 65px;
    background: radial-gradient(circle, #00ff88, rgba(0, 255, 136, 0.3));
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation-delay: calc(var(--angle) / 360deg * 1.5s);
}

.inner-ring .circuit-node {
    --ring-radius: 40px;
    background: radial-gradient(circle, #ff6bff, rgba(255, 107, 255, 0.3));
    box-shadow: 0 0 10px rgba(255, 107, 255, 0.5);
    animation-delay: calc(var(--angle) / 360deg * 1s);
}

@keyframes pulse-node {

    0%,
    100% {
        transform: translateX(-50%) rotate(var(--angle)) translateY(var(--ring-radius)) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateX(-50%) rotate(var(--angle)) translateY(var(--ring-radius)) scale(1.5);
        opacity: 1;
    }
}

.central-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), rgba(0, 212, 255, 0.1));
    border: 2px solid #00d4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: core-pulse 3s ease-in-out infinite;
    box-shadow:
        0 0 20px rgba(0, 212, 255, 0.4),
        inset 0 0 15px rgba(0, 212, 255, 0.2);
}

.core-brain {
    font-size: 1.5rem;
    color: #00d4ff;
    animation: brain-flicker 4s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.7);
}

@keyframes core-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow:
            0 0 20px rgba(0, 212, 255, 0.4),
            inset 0 0 15px rgba(0, 212, 255, 0.2);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow:
            0 0 30px rgba(0, 212, 255, 0.6),
            inset 0 0 20px rgba(0, 212, 255, 0.3);
    }
}

@keyframes brain-flicker {

    0%,
    100% {
        opacity: 1;
    }

    25% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 0.9;
    }
}

.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.6), transparent);
    height: 1px;
    animation: data-flow 3s ease-in-out infinite;
}

.line-1 {
    width: 60px;
    top: 30%;
    left: 20%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    width: 80px;
    top: 60%;
    right: 15%;
    transform: rotate(-30deg);
    animation-delay: 0.5s;
}

.line-3 {
    width: 50px;
    bottom: 30%;
    left: 30%;
    transform: rotate(120deg);
    animation-delay: 1s;
}

.line-4 {
    width: 70px;
    top: 40%;
    right: 30%;
    transform: rotate(-60deg);
    animation-delay: 1.5s;
}

@keyframes data-flow {

    0%,
    100% {
        opacity: 0;
        transform: rotate(var(--rotation, 0deg)) scaleX(0);
    }

    50% {
        opacity: 1;
        transform: rotate(var(--rotation, 0deg)) scaleX(1);
    }
}

.line-1 {
    --rotation: 45deg;
}

.line-2 {
    --rotation: -30deg;
}

.line-3 {
    --rotation: 120deg;
}

.line-4 {
    --rotation: -60deg;
}

/* Services Section */
.services {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.services .container {
    background: linear-gradient(135deg, rgba(10, 15, 26, 0.9), rgba(0, 0, 0, 0.8));
    border: 2px solid #e74c3c;
    border-radius: 20px;
    padding: 4rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Capabilities Section */
.capabilities {
    padding: 6rem 0;
    background: rgba(0, 212, 255, 0.02);
}

.capabilities-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.capability-category {
    background: linear-gradient(135deg, #ffffff 0%, #f1f2f6 100%);
    border: 3px solid #ddd;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.capability-category:hover {
    transform: translateY(-8px);
    border-color: #f39c12;
    box-shadow: 0 20px 45px rgba(243, 156, 18, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.category-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.capability-category:nth-child(1) .category-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.capability-category:nth-child(2) .category-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.capability-category:nth-child(3) .category-icon {
    background: linear-gradient(135deg, #27ae60, #229954);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.capability-category:nth-child(4) .category-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.3);
}

.capability-category:nth-child(5) .category-icon {
    background: linear-gradient(135deg, #e67e22, #d35400);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.category-icon i {
    font-size: 2rem;
    color: #0a0f1a;
}

.category-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.category-header p {
    color: #8892b0;
    font-size: 1rem;
    line-height: 1.6;
}

.capability-items {
    display: grid;
    gap: 1.5rem;
}

.capability-item {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border: 2px solid #e74c3c;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.capability-item:hover {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-color: #f39c12;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.capability-item h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.capability-item h4 i {
    font-size: 0.9rem;
}

.capability-item p {
    color: #ecf0f1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.capability-item strong {
    color: #f39c12;
    font-weight: 600;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    background: linear-gradient(90deg, #2c3e50, #34495e);
    border: 2px solid #e74c3c;
    border-radius: 20px;
    padding: 0.75rem 2rem;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.section-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.services .section-header h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-header p {
    font-size: 1.1rem;
    color: #34495e;
    font-weight: 500;
}

.services .section-header p {
    color: #ecf0f1;
    font-weight: 400;
}

.service-card {
    background: rgba(10, 15, 26, 0.9);
    border: 3px solid rgba(231, 76, 60, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: #e74c3c;
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.4);
    background: rgba(10, 15, 26, 0.95);
}

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



.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: #e74c3c;
    font-weight: 700;
    background: rgba(231, 76, 60, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: #0a0f1a;
}

.service-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: #8892b0;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 15, 26, 0.9), rgba(0, 0, 0, 0.8));
    border: 2px solid #e74c3c;
    border-radius: 20px;
    padding: 4rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-text p {
    font-size: 1.1rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.tech-matrix {
    margin-top: 3rem;
}

.tech-category h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: #f39c12;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tech-item {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border: 2px solid #f39c12;
    color: #ffffff;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.tech-item:hover {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-color: #e74c3c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.data-panels {
    width: 100%;
    max-width: 400px;
}

.data-panel {
    background: rgba(10, 15, 26, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.panel-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.05);
}

.metric-value {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.metric-unit {
    font-size: 0.8rem;
    color: #8892b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Founders Section */
.founders {
    padding: 6rem 0;
    background: rgba(0, 212, 255, 0.02);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.founder-card {
    background: rgba(10, 15, 26, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.founder-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;
}

.founder-card:hover::before {
    left: 100%;
}

.founder-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.founder-avatar {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-info {
    text-align: center;
}

.founder-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-title {
    font-size: 1rem;
    color: #00d4ff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.expertise-list {
    display: grid;
    gap: 1rem;
    text-align: left;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
}

.expertise-item i {
    width: 20px;
    color: #00d4ff;
    font-size: 1rem;
}

.expertise-item span {
    color: #8892b0;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    max-width: 500px;
    width: 100%;
}

.contact-panel {
    background: rgba(10, 15, 26, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.panel-title {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.contact-icon i {
    font-size: 1.2rem;
    color: #0a0f1a;
}

.contact-details h4 {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    color: #8892b0;
    font-size: 1rem;
}

.contact-form {
    background: rgba(10, 15, 26, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.form-title {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8892b0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.1);
}

/* Chatbot Tooltip */
.chatbot-tooltip {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #0a0f1a;
    padding: 12px 16px;
    border-radius: 20px 20px 5px 20px;
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    z-index: 10000;
    animation: tooltip-pulse 2s infinite;
    max-width: 200px;
    text-align: center;
    cursor: pointer;
    border: 2px solid #ffffff;
}

.chatbot-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #00d4ff;
}

@keyframes tooltip-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    }
}

.chatbot-tooltip.hidden {
    display: none;
}

/* Taskade Chat Widget Override */
#taskade-agent-popup,
#taskade-chat-widget,
.taskade-chat-popup,
[id*="taskade"] {
    z-index: 10001 !important;
}

/* Footer */
.footer {
    background: rgba(10, 15, 26, 0.95);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    color: #8892b0;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
}

.footer-logo .logo-icon {
    margin-right: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 15, 26, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 1px solid rgba(0, 212, 255, 0.3);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 1rem;
    }

    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-text p {
        font-size: 1rem;
        text-align: left;
    }

    .tech-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .tech-item {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }

    .tech-category h4 {
        font-size: 0.9rem;
        text-align: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .services .container,
    .about-content {
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .about-content {
        padding: 1.5rem 0.75rem;
        margin: 0 0.5rem;
    }

    .about-text h2 {
        font-size: 1.75rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .tech-item {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .tech-category h4 {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .services .container {
        margin: 0 0.5rem;
        padding: 2rem 1rem;
    }
}

</style>