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

:root {
    --primary-color: #0066cc;
    --secondary-color: #1a1a2e;
    --dark-blue: #16213e;
    --accent-blue: #0f3460;
    --text-light: #e4e4e4;
    --text-dark: #ffffff;
    --gradient: linear-gradient(135deg, #0066cc 0%, #0f3460 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    background: transparent;
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.5), transparent) 1;
    box-shadow: 0 4px 30px rgba(0, 102, 204, 0.2);
    z-index: -1;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

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

.logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 102, 204, 0.5));
    transition: all 0.3s;
}

.logo:hover img {
    filter: drop-shadow(0 0 20px rgba(0, 102, 204, 0.8));
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 102, 204, 0.5);
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 10px 0;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.8);
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 102, 204, 0.5);
}

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

/* Neon Button */
.btn-neon {
    color: #fff;
    text-decoration: none;
    padding: 10px 28px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(15, 52, 96, 0.2));
    box-shadow: 0 0 15px rgba(0, 102, 204, 0.4);
    display: inline-block;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-neon:hover::before {
    left: 100%;
}

.btn-neon:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.3), rgba(15, 52, 96, 0.4));
    box-shadow: 0 0 25px rgba(0, 102, 204, 0.8),
                0 0 50px rgba(0, 102, 204, 0.4);
    transform: translateY(-2px);
    border-color: #0088ff;
}

.btn-neon-large {
    color: #fff;
    text-decoration: none;
    padding: 14px 40px;
    border: 3px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    background: rgba(0, 102, 204, 0.1);
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.6),
                0 0 40px rgba(0, 102, 204, 0.4),
                inset 0 0 20px rgba(0, 102, 204, 0.2);
    animation: neonPulseLarge 2s ease-in-out infinite;
    display: inline-block;
}

.btn-neon-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-neon-large:hover::before {
    left: 100%;
}

.btn-neon-large:hover {
    color: #fff;
    background: rgba(0, 102, 204, 0.3);
    box-shadow: 0 0 30px rgba(0, 102, 204, 1),
                0 0 60px rgba(0, 102, 204, 0.8),
                0 0 90px rgba(0, 102, 204, 0.6),
                inset 0 0 30px rgba(0, 102, 204, 0.4);
    transform: translateY(-3px) scale(1.05);
}

@keyframes neonPulseLarge {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 102, 204, 0.6),
                    0 0 40px rgba(0, 102, 204, 0.4),
                    inset 0 0 20px rgba(0, 102, 204, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 102, 204, 0.8),
                    0 0 60px rgba(0, 102, 204, 0.6),
                    inset 0 0 25px rgba(0, 102, 204, 0.3);
    }
}

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

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

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(22, 33, 62, 0.75) 50%, rgba(15, 52, 96, 0.8) 100%);
    z-index: 1;
}

.hero .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    animation: fadeInUp 1s ease;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

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

/* Floating Animation */
.hero-animation {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 450px;
    height: 450px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Center Orb */
.center-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #0066cc 0%, #0f3460 100%);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 102, 204, 0.8),
                0 0 80px rgba(0, 102, 204, 0.4),
                inset 0 0 30px rgba(0, 102, 204, 0.5);
    animation: orbPulse 3s ease-in-out infinite;
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(0, 102, 204, 0.3);
    border-radius: 50%;
    animation: ringExpand 4s ease-in-out infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.ring-2 {
    width: 140px;
    height: 140px;
    animation-delay: 1.3s;
}

.ring-3 {
    width: 180px;
    height: 180px;
    animation-delay: 2.6s;
}

@keyframes orbPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 40px rgba(0, 102, 204, 0.8),
                    0 0 80px rgba(0, 102, 204, 0.4),
                    inset 0 0 30px rgba(0, 102, 204, 0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 60px rgba(0, 102, 204, 1),
                    0 0 120px rgba(0, 102, 204, 0.6),
                    inset 0 0 40px rgba(0, 102, 204, 0.7);
    }
}

@keyframes ringExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Tech Circles */
.tech-circle {
    position: absolute;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(15, 52, 96, 0.6));
    border: 2px solid rgba(0, 102, 204, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.3);
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s;
    cursor: pointer;
}

.tech-circle:hover {
    transform: scale(1.15);
    border-color: var(--primary-color);
    box-shadow: 0 12px 48px rgba(0, 102, 204, 0.6);
}

.circle-content {
    text-align: center;
}

.circle-content i {
    font-size: 2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 10px rgba(0, 102, 204, 0.8));
}

.circle-content span {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.circle-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.circle-2 {
    top: 15%;
    right: 15%;
    animation-delay: 1.5s;
}

.circle-3 {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

.circle-4 {
    bottom: 10%;
    left: 15%;
    animation-delay: 4.5s;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    stroke: rgba(0, 102, 204, 0.3);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    animation: linePulse 3s ease-in-out infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.75s; }
.line-3 { animation-delay: 1.5s; }
.line-4 { animation-delay: 2.25s; }

@keyframes linePulse {
    0%, 100% {
        stroke: rgba(0, 102, 204, 0.3);
        stroke-width: 2;
    }
    50% {
        stroke: rgba(0, 102, 204, 0.8);
        stroke-width: 3;
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #000000;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.feature-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-blue) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    border-color: var(--primary-color);
}

.feature-card.ai-highlight {
    background: linear-gradient(135deg, #0f3460 0%, #0066cc 100%);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.feature-card.ai-highlight::before {
    content: 'AI';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    color: white;
}

.feature-card.ai-highlight:hover {
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.5);
    transform: translateY(-10px) scale(1.02);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

.stat-item {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 204, 0.2);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 102, 204, 0.5));
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 102, 204, 0.5);
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.stat-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.stat-progress {
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    transition: width 2s ease;
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.8);
}

.performance-chart {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.performance-chart h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.performance-chart canvas {
    max-height: 300px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f3460 0%, #0066cc 100%);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #16213e 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Services Page */
.services-section {
    padding: 80px 0;
    background: #000000;
}

.ai-services-highlight {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(15, 52, 96, 0.2) 100%);
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.ai-services-highlight h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

.service-content {
    flex: 1;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-blue) 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 204, 0.2);
    transition: all 0.3s;
}

.service-content:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.service-item.featured .service-content.ai-service {
    background: linear-gradient(135deg, #0f3460 0%, #0066cc 100%);
    border: 2px solid var(--primary-color);
    position: relative;
}

.service-item.featured .service-content.ai-service::before {
    content: '⭐ AI POWERED';
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}

.service-item.featured .service-content.ai-service:hover {
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.5);
    transform: scale(1.02);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* About Page */
.about-section {
    padding: 80px 0;
    background: #000000;
}

.about-content {
    margin-bottom: 4rem;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

.value-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-blue) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.team-section {
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.expertise-item {
    background: var(--dark-blue);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s;
}

.expertise-item:hover {
    transform: translateY(-5px);
    background: var(--accent-blue);
}

.expertise-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background: #000000;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-blue) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-blue) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 102, 204, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s;
}

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

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    display: block;
}

/* Footer */
.footer {
    background: var(--secondary-color);
}

.footer-cta {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.8), rgba(0, 102, 204, 0.6));
    padding: 4rem 0;
    text-align: center;
    border-top: 2px solid rgba(0, 102, 204, 0.3);
}

.footer-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-footer-cta {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.4);
}

.btn-footer-cta:hover {
    background: #0088ff;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 102, 204, 0.6);
}

.footer-main {
    padding: 4rem 0 2rem;
    background: var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

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

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

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 1rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 102, 204, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 204, 0.2);
    border: 1px solid rgba(0, 102, 204, 0.3);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s;
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 2px solid rgba(0, 102, 204, 0.3);
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .btn-neon {
        display: inline-block;
        margin-top: 1rem;
    }

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

    .hero-animation {
        display: none;
    }

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

    .hero-content {
        text-align: center;
        padding-right: 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .service-item {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-neon-large {
        width: 100%;
        max-width: 300px;
    }

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

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

    .performance-chart {
        padding: 1rem;
    }

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

    .footer-brand {
        max-width: 100%;
    }

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

    .footer-cta h2 {
        font-size: 1.8rem;
    }
}
