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

:root {
    --primary-color: #00f5ff;
    --secondary-color: #7c3aed;
    --accent-color: #14b8a6;
    --background-dark: #0a0a0f;
    --background-darker: #050507;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --neon-glow: 0 0 20px currentColor;
}

html, body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--background-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 10, 15, 0.8), rgba(124, 58, 237, 0.2));
    z-index: 1;
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: var(--neon-glow);
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 60%; left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 1s; }
.particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 3s; }

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.3);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
}

.logo-text {
    color: var(--text-primary);
}

.logo-ai {
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
}

.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(--primary-color);
    text-shadow: var(--neon-glow);
}

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
        grid-template-columns: 1fr 1fr;
    }
}

.neural-network {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 150px;
    opacity: 0.2;
    z-index: -1;
    max-width: 100%;
    overflow: hidden;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.node {
    fill: var(--primary-color);
    r: 4;
    animation: pulse 2s ease-in-out infinite;
}

.connection {
    stroke: var(--accent-color);
    stroke-width: 1;
    opacity: 0.6;
    animation: dataFlow 3s linear infinite;
}

@keyframes pulse {
    0%, 100% { r: 4; opacity: 1; }
    50% { r: 6; opacity: 0.7; }
}

@keyframes dataFlow {
    0% { stroke-dasharray: 0 100; }
    100% { stroke-dasharray: 100 0; }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
}

.glow {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
}

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--background-dark);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.code-stream {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    opacity: 0;
    position: static;
    z-index: auto;
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.code-line {
    color: var(--accent-color);
    margin: 0.2rem 0;
    white-space: nowrap;
    overflow: visible;
}

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

.ai-robot {
    width: 100%;
    max-width: 400px;
    height: 400px;
    position: relative;
    opacity: 0;
    overflow: visible;
    margin: 0 auto;
}

.robot-container {
    width: 200px;
    height: 280px;
    position: relative;
    margin: 0 auto;
    top: 20px;
}

@media (max-width: 1024px) {
    .ai-robot {
        max-width: 350px;
        height: 350px;
    }

    .robot-container {
        width: 180px;
        height: 250px;
    }
}

.robot-head {
    width: 80px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.robot-eyes {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.eye {
    width: 12px;
    height: 12px;
    background: var(--background-dark);
    border-radius: 50%;
    position: relative;
    animation: robotBlink 4s ease-in-out infinite;
}

.eye::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: eyeGlow 2s ease-in-out infinite;
}

@keyframes robotBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

@keyframes eyeGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.robot-antenna {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background: var(--primary-color);
}

.robot-antenna::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -3px;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: antennaGlow 3s ease-in-out infinite;
}

@keyframes antennaGlow {
    0%, 100% { box-shadow: 0 0 5px var(--accent-color); }
    50% { box-shadow: 0 0 15px var(--accent-color); }
}

.robot-body {
    width: 120px;
    height: 140px;
    background: rgba(10, 10, 15, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.control-panel {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
}

.led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: ledBlink 2s ease-in-out infinite;
}

.led-1 {
    background: #ef4444;
    animation-delay: 0s;
}

.led-2 {
    background: #f59e0b;
    animation-delay: 0.5s;
}

.led-3 {
    background: #10b981;
    animation-delay: 1s;
}

@keyframes ledBlink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.robot-screen {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: rgba(0, 245, 255, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-text {
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    font-size: 14px;
    animation: screenFlicker 3s ease-in-out infinite;
}

@keyframes screenFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.robot-arms {
    position: absolute;
    top: 80px;
    width: 100%;
    height: 60px;
}

.arm {
    position: absolute;
    width: 15px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 8px;
    animation: armMove 4s ease-in-out infinite;
}

.left-arm {
    left: -20px;
    transform-origin: top center;
    animation-delay: 0s;
}

.right-arm {
    right: -20px;
    transform-origin: top center;
    animation-delay: 2s;
}

@keyframes armMove {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.floating-text {
    position: absolute;
    top: 280px;
    left: 0;
    right: 0;
    text-align: center;
    height: 30px;
    overflow: hidden;
}

.text-item {
    font-size: 0.9rem;
    color: var(--primary-color);
    opacity: 0;
    animation: textCycle 12s ease-in-out infinite;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none;
}

.text-item:nth-child(1) { animation-delay: 0s; }
.text-item:nth-child(2) { animation-delay: 3s; }
.text-item:nth-child(3) { animation-delay: 6s; }
.text-item:nth-child(4) { animation-delay: 9s; }

@keyframes textCycle {
    0%, 20%, 100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
    25%, 75% { opacity: 1; transform: translateX(-50%) translateY(0px); }
    80%, 100% { opacity: 0; transform: translateX(-50%) translateY(-15px); }
}

/* Universal overflow fix for all sections */
section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Services Preview */
.services-preview {
    padding: 100px 2rem;
    background: rgba(5, 5, 7, 0.9);
    position: relative;
    z-index: 2;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    position: relative;
}

.ai-brain, .cyber-shield, .seo-graph, .social-network, .web-browser, .mobile-app {
    width: 100%;
    height: 100%;
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 10s linear infinite;
}

.web-browser {
    background: rgba(0, 245, 255, 0.1);
}

.browser-frame {
    width: 30px;
    height: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 2px;
    position: relative;
}

.browser-frame::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 2px;
    background: var(--primary-color);
}

.code-elements {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid var(--accent-color);
    border-radius: 2px;
    top: 25px;
    left: 25px;
    animation: codeFloat 3s ease-in-out infinite;
}

@keyframes codeFloat {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-5px); opacity: 0.7; }
}

.mobile-app {
    background: rgba(20, 184, 166, 0.1);
}

.app-screen {
    width: 20px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    position: relative;
    background: rgba(0, 245, 255, 0.2);
}

.app-screen::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 1px;
    background: var(--primary-color);
}

.app-features {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    top: -5px;
    right: -5px;
    animation: featurePulse 2s ease-in-out infinite;
}

@keyframes featurePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-secondary);
}

/* Stats Section */
.stats-section {
    padding: 80px 2rem;
    background: rgba(124, 58, 237, 0.1);
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    padding: 40px 2rem;
    background: rgba(5, 5, 7, 0.95);
    border-top: 1px solid rgba(0, 245, 255, 0.3);
    text-align: center;
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

/* Dropdown Navigation */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    color: var(--primary-color);
    background: rgba(0, 245, 255, 0.1);
}

/* Page Titles */
.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

/* Hero Sections for Pages */
.about-hero, .services-hero, .contact-hero, .service-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 4rem;
    background: rgba(5, 5, 7, 0.8);
}

/* Free Website Audit Section */
.audit-section {
    padding: 100px 2rem;
    background: rgba(124, 58, 237, 0.1);
}

.audit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.audit-scanner {
    width: 400px;
    height: 300px;
    background: rgba(10, 10, 15, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.scanner-screen {
    width: 100%;
    height: 100%;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 8px;
    position: relative;
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--primary-color) 50%,
        transparent 100%
    );
    animation: scan 3s linear infinite;
    opacity: 0.3;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.audit-metrics {
    padding: 2rem 1rem;
}

.metric {
    margin-bottom: 1rem;
}

.metric-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

.metric-fill {
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    from { width: 0%; }
}

.audit-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.audit-features {
    list-style: none;
    margin: 2rem 0;
}

.audit-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.audit-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.audit-form input {
    padding: 1rem;
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 8px;
    background: rgba(10, 10, 15, 0.8);
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
}

.audit-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 2rem;
    background: rgba(5, 5, 7, 0.9);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 245, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    font-size: 2rem;
}

.icon-ai, .icon-support, .icon-scalable, .icon-security {
    width: 40px;
    height: 40px;
    background: var(--background-dark);
    border-radius: 50%;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 2rem;
    background: rgba(124, 58, 237, 0.1);
}

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

.testimonial-card {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--background-dark);
}

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Web Development Specific Styles */
.web-visualization {
    display: flex;
    justify-content: center;
    align-items: center;
}

.browser-window {
    width: 400px;
    height: 300px;
    background: rgba(10, 10, 15, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 15px 15px 8px 8px;
    overflow: hidden;
}

.browser-header {
    height: 40px;
    background: rgba(5, 5, 7, 0.95);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
}

.browser-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn.red { background: #ff5f57; }
.btn.yellow { background: #ffbd2e; }
.btn.green { background: #28ca42; }

.url-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.browser-content {
    height: calc(100% - 40px);
    padding: 1rem;
}

.code-editor {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.code-line {
    color: var(--accent-color);
    margin: 0.5rem 0;
    padding-left: 1rem;
}

/* App Development Specific Styles */
.app-visualization {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-devices {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.phone {
    width: 180px;
    height: 320px;
    background: #000;
    border-radius: 25px;
    padding: 20px 10px;
    border: 2px solid var(--primary-color);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.9);
    border-radius: 15px;
    padding: 1rem;
}

.tablet {
    width: 250px;
    height: 200px;
    background: #000;
    border-radius: 20px;
    padding: 15px;
    border: 2px solid var(--primary-color);
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.9);
    border-radius: 10px;
    padding: 1rem;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    text-align: center;
    padding: 0.5rem;
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-card {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-primary);
}

.app-dashboard {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.dashboard-widget {
    background: rgba(0, 245, 255, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
}

/* Technology Stack */
.tech-stack {
    padding: 100px 2rem;
    background: rgba(124, 58, 237, 0.1);
}

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

.tech-category {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.tech-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-item {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Platform Icons */
.ios-icon { background: #007AFF; }
.android-icon { background: #3DDC84; }
.react-icon { background: #61DAFB; }
.flutter-icon { background: #02569B; }
.electron-icon { background: #47848F; }
.pwa-icon { background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)); }

/* AI Features Section */
.ai-features {
    padding: 100px 2rem;
    background: rgba(5, 5, 7, 0.9);
}

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

.ai-features .feature-item {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.ai-features .feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 245, 255, 0.2);
}

.ai-features .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* CTA Sections */
.home-cta, .service-cta {
    padding: 80px 2rem;
    background: rgba(5, 5, 7, 0.9);
    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;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Specific Styles */
.company-story {
    padding: 100px 2rem;
    background: rgba(5, 5, 7, 0.9);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--background-dark);
}

.timeline-year {
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.timeline-event {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.mission-vision {
    padding: 100px 2rem;
    background: rgba(124, 58, 237, 0.1);
}

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

.mv-item {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
}

.mv-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
}

.mission-symbol, .vision-symbol {
    width: 50px;
    height: 50px;
    background: var(--background-dark);
    border-radius: 50%;
}

.team-section {
    padding: 100px 2rem;
    background: rgba(5, 5, 7, 0.9);
}

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

.team-member {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    font-weight: bold;
    color: var(--background-dark);
    font-size: 1.2rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
}

.values-section {
    padding: 100px 2rem;
    background: rgba(124, 58, 237, 0.1);
}

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

.value-item {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.innovation, .integrity, .excellence, .collaboration {
    position: relative;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 100px 2rem;
    background: rgba(5, 5, 7, 0.9);
}

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(10, 10, 15, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(0, 245, 255, 0.3);
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
}

.modern-form {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 8px;
    background: rgba(5, 5, 7, 0.8);
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: var(--background-dark);
    padding: 0 0.5rem;
}

.faq-section {
    padding: 100px 2rem;
    background: rgba(124, 58, 237, 0.1);
}

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

.faq-item {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

/* Service Page Specific Styles */
.service-overview {
    padding: 100px 2rem;
    background: rgba(5, 5, 7, 0.9);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.overview-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* AI Development Visuals */
.ai-visualization {
    display: flex;
    justify-content: center;
    align-items: center;
}

.neural-network-large {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.layer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.neuron {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: neuronPulse 2s ease-in-out infinite;
}

@keyframes neuronPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Security Dashboard */
.security-dashboard {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-shield-large {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-core {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    position: relative;
    z-index: 3;
}

.security-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: ringRotate 10s linear infinite;
}

.ring-1 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -3s;
}

.ring-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -6s;
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.threat-indicators {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.indicator.blocked {
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
}

.indicator.warning {
    background: #f59e0b;
    box-shadow: 0 0 10px #f59e0b;
}

.indicator.safe {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

/* SEO Dashboard */
.seo-dashboard-large {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.search-rankings {
    background: rgba(10, 10, 15, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    width: 300px;
    height: 200px;
    position: relative;
}

.ranking-chart {
    display: flex;
    align-items: end;
    justify-content: space-around;
    height: 100%;
    gap: 1rem;
}

.chart-bar {
    width: 40px;
    background: linear-gradient(to top, var(--primary-color), var(--accent-color));
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 2s ease;
}

.rank {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-primary);
    font-weight: bold;
    font-size: 0.8rem;
}

.traffic-arrow {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 2rem;
    color: var(--accent-color);
    animation: bounce 2s ease-in-out infinite;
}

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

/* Social Media Visual */
.social-network-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-hub {
    width: 300px;
    height: 300px;
    position: relative;
}

.central-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
}

.platform-node {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--background-darker);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    animation: orbitFloat 8s ease-in-out infinite;
}

.platform-node.facebook { top: 10%; left: 50%; transform: translateX(-50%); }
.platform-node.instagram { top: 30%; right: 10%; }
.platform-node.twitter { bottom: 30%; right: 10%; }
.platform-node.linkedin { bottom: 10%; left: 50%; transform: translateX(-50%); }
.platform-node.youtube { bottom: 30%; left: 10%; }
.platform-node.tiktok { top: 30%; left: 10%; }

@keyframes orbitFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

/* Services Grids */
.ai-services, .security-services, .seo-services, .social-services {
    padding: 100px 2rem;
    background: rgba(124, 58, 237, 0.1);
}

.service-item {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 245, 255, 0.2);
}

.service-item .service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Process Sections */
.process-section, .seo-process {
    padding: 100px 2rem;
    background: rgba(5, 5, 7, 0.9);
}

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

.step {    text-align: center;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.step-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

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

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
}

.timeline-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    background: rgba(0, 245, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Platform Expertise */
.platform-expertise {
    padding: 100px 2rem;
    background: rgba(124, 58, 237, 0.1);
}

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

.platform-card {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.platform-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.facebook-icon { background: #1877f2; }
.instagram-icon { background: linear-gradient(45deg, #e4405f, #fccc63); }
.linkedin-icon { background: #0077b5; }
.twitter-icon { background: #1da1f2; }
.youtube-icon { background: #ff0000; }
.tiktok-icon { background: #000000; }

/* Threat Landscape */
.threat-landscape {
    padding: 100px 2rem;
    background: rgba(5, 5, 7, 0.9);
}

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

.threat-item {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.threat-item h3 {
    color: #ef4444;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content {
        gap: 3rem;
    }

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

    .ai-robot {
        max-width: 350px;
        height: 350px;
    }

    .robot-container {
        width: 180px;
        height: 250px;
    }

    .floating-text {
        top: 260px;
        height: 25px;
    }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-left {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        width: 100%;
        max-width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        height: calc(100vh - 70px);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 999;
        box-sizing: border-box;
    }

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

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        background: rgba(5, 5, 7, 0.95);
        margin-top: 0;
        border: 1px solid rgba(0, 245, 255, 0.2);
        border-radius: 8px;
        transition: all 0.3s ease;
        width: 90%;
        margin: 0 auto;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 400px;
        margin-top: 1rem;
    }

    .dropdown-menu li {
        padding: 0.5rem 0;
    }

    .dropdown-menu a {
        display: block;
        padding: 1rem 1.5rem;
        color: var(--text-secondary);
        text-decoration: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    }

    .dropdown-menu a:hover,
    .dropdown-menu a.active {
        color: var(--primary-color);
        background: rgba(0, 245, 255, 0.1);
    }

    .dropdown-menu a:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        padding: 100px 1rem 2rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .hero-left {
        order: 2;
        width: 100%;
        max-width: 100%;
    }

    .hero-visual {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        overflow: visible;
    }

    .ai-robot {
        max-width: 280px;
        height: 300px;
        margin: 0 auto;
    }

    .robot-container {
        width: 140px;
        height: 200px;
    }

    

    .code-stream {
        margin-top: 1.5rem;
        padding: 1rem;
        font-size: 0.7rem;
        overflow-x: auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .code-line {
        white-space: nowrap;
        margin: 0.3rem 0;
    }

    .hero-title, .page-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle, .page-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
    }

    .services-grid, .features-grid, .testimonials-grid, .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .audit-content, .story-content, .contact-content, .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .audit-scanner {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .overview-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .neural-network-large {
        flex-direction: column;
        gap: 1rem;
    }

    .layer {
        flex-direction: row;
        justify-content: center;
    }

    .team-grid, .values-grid, .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

/* Corrected mobile container padding for smaller screens */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .hero {
        padding: 80px 0 2rem;
        min-height: auto;
    }

    .hero-content {
        gap: 1.5rem;
        padding: 0 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-left {
        width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }

    .hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-title, .page-title {
        font-size: 1.8rem;
        line-height: 1.1;
        text-align: center;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
        padding: 0 0.5rem;
        text-align: center;
    }

    .hero-subtitle, .page-subtitle {
        font-size: 0.9rem;
        text-align: center;
    }

    .ai-robot {
        max-width: 250px;
        height: 270px;
        margin: 0 auto;
    }

    .robot-container {
        width: 120px;
        height: 180px;
    }

    .robot-head {
        width: 50px;
        height: 40px;
    }

    .robot-body {
        width: 90px;
        height: 110px;
    }

    

    .code-stream {
        padding: 0.8rem;
        font-size: 0.7rem;
        margin-top: 1rem;
        width: 100%;
        overflow-x: auto;
        box-sizing: border-box;
    }

    .code-line {
        white-space: nowrap;
        margin: 0.2rem 0;
    }

    .hero-buttons {
        width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }

    .cta-button {
        width: 100%;
        max-width: 100%;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    /* Fix all section containers for mobile */
    .services-preview, .stats-section, .audit-section, .why-choose-us, 
    .testimonials, .home-cta, .footer {
        padding-left: 0;
        padding-right: 0;
    }

    .services-grid, .features-grid, .testimonials-grid, .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .stats-grid, .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .team-grid, .values-grid, .tech-grid, .mv-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .audit-content, .story-content, .contact-content, .overview-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .mv-item {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .service-card, .feature-item, .testimonial-card, .faq-item,
    .stat-item, .team-member, .value-item {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
}
```/* Fix all section containers for mobile */
    .services-preview, .stats-section, .audit-section, .why-choose-us,
    .testimonials, .home-cta, .footer {
        padding-left: 0;
        padding-right: 0;
    }

    .services-grid, .features-grid, .testimonials-grid, .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .stats-grid, .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .team-grid, .values-grid, .tech-grid, .mv-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .audit-content, .story-content, .contact-content, .overview-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .mv-item {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .service-card, .feature-item, .testimonial-card, .faq-item,
    .stat-item, .team-member, .value-item {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
}