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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 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-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.logo-icon {
    width: 36px;
    height: 36px;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-icon {
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6366f1;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0099cc, #0077aa);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    position: relative;
}

.holographic-logo {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    transform-style: preserve-3d;
}

/* Core Glow */
.core-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.8), transparent);
    border-radius: 50%;
    animation: core-pulse 3s ease-in-out infinite;
    z-index: 1;
}

/* 3D Nighthawk Bird */
.bird-container {
    position: absolute;
    width: 80px;
    height: 60px;
    transform-style: preserve-3d;
    animation: bird-float 4s ease-in-out infinite;
    z-index: 10;
}

.bird-body {
    position: absolute;
    width: 40px;
    height: 20px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 20px 10px 10px 20px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    transform: rotateY(-15deg);
}

.bird-head {
    position: absolute;
    width: 15px;
    height: 12px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    top: -5px;
    right: -5px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.bird-eye {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    top: 2px;
    right: 2px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    animation: eye-glow 2s ease-in-out infinite;
}

.bird-wing {
    position: absolute;
    width: 25px;
    height: 15px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.8), rgba(0, 153, 204, 0.6));
    border-radius: 50% 50% 0 50%;
    top: 5px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.wing-left {
    left: -15px;
    transform: rotateY(45deg) rotateZ(-20deg);
    animation: wing-flap-left 1.5s ease-in-out infinite;
}

.wing-right {
    right: -15px;
    transform: rotateY(-45deg) rotateZ(20deg);
    animation: wing-flap-right 1.5s ease-in-out infinite;
}

/* Orbital Rings */
.orbit {
    position: absolute;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: orbit-rotate 8s linear infinite;
}

.orbit-1 {
    width: 120px;
    height: 120px;
    animation-duration: 8s;
}

.orbit-2 {
    width: 180px;
    height: 180px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 240px;
    height: 240px;
    animation-duration: 16s;
}

.orbit-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.8);
    animation: particle-orbit 4s linear infinite;
}

.p1 { top: -3px; left: 50%; margin-left: -3px; animation-delay: 0s; }
.p2 { top: 50%; right: -3px; margin-top: -3px; animation-delay: 1.3s; }
.p3 { bottom: -3px; left: 50%; margin-left: -3px; animation-delay: 2.6s; }
.p4 { top: 50%; left: -3px; margin-top: -3px; animation-delay: 0.5s; }
.p5 { top: -3px; right: 50%; margin-right: -3px; animation-delay: 1.8s; }
.p6 { bottom: -3px; right: 50%; margin-right: -3px; animation-delay: 3.1s; }
.p7 { top: 25%; left: -3px; margin-top: -3px; animation-delay: 0.8s; }
.p8 { bottom: 25%; right: -3px; margin-top: -3px; animation-delay: 2.1s; }
.p9 { top: 50%; left: 50%; margin: -3px 0 0 -3px; animation-delay: 3.4s; }

/* Energy Fields */
.energy-field {
    position: absolute;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    animation: field-pulse 4s ease-in-out infinite;
}

.field-1 {
    width: 140px;
    height: 140px;
    animation-delay: 0s;
}

.field-2 {
    width: 200px;
    height: 200px;
    animation-delay: 1.3s;
}

.field-3 {
    width: 260px;
    height: 260px;
    animation-delay: 2.6s;
}

/* Data Streams */
.data-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #00d4ff, transparent);
    animation: data-flow 3s ease-in-out infinite;
}

.stream-1 {
    left: 20%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.stream-2 {
    right: 20%;
    transform: rotate(-45deg);
    animation-delay: 1s;
}

.stream-3 {
    left: 50%;
    transform: rotate(90deg);
    animation-delay: 2s;
}

/* Holographic Grid */
.hologrid {
    position: absolute;
    border: 1px solid rgba(0, 212, 255, 0.1);
    animation: grid-fade 5s ease-in-out infinite;
}

.grid-1 {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    animation-delay: 0s;
}

.grid-2 {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    animation-delay: 1.7s;
}

.grid-3 {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    animation-delay: 3.4s;
}

/* Animations */
@keyframes core-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes bird-float {
    0%, 100% { 
        transform: translateY(0) rotateY(-15deg);
    }
    50% { 
        transform: translateY(-10px) rotateY(-15deg);
    }
}

@keyframes eye-glow {
    0%, 100% { 
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    }
    50% { 
        box-shadow: 0 0 15px rgba(255, 255, 255, 1);
    }
}

@keyframes wing-flap-left {
    0%, 100% { 
        transform: rotateY(45deg) rotateZ(-20deg);
    }
    50% { 
        transform: rotateY(45deg) rotateZ(-40deg);
    }
}

@keyframes wing-flap-right {
    0%, 100% { 
        transform: rotateY(-45deg) rotateZ(20deg);
    }
    50% { 
        transform: rotateY(-45deg) rotateZ(40deg);
    }
}

@keyframes orbit-rotate {
    from { transform: rotateX(60deg) rotateZ(0deg); }
    to { transform: rotateX(60deg) rotateZ(360deg); }
}

@keyframes particle-orbit {
    0% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.5);
        opacity: 1;
    }
    100% { 
        transform: scale(1);
        opacity: 0.6;
    }
}

@keyframes field-pulse {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes data-flow {
    0%, 100% { 
        opacity: 0.3;
        box-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
    }
    50% { 
        opacity: 1;
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
    }
}

@keyframes grid-fade {
    0%, 100% { 
        opacity: 0.1;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.4;
        transform: scale(1.05) rotate(180deg);
    }
}

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

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

/* About Section */
.about {
    background: #f8fafc;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.stat p {
    color: #4a5568;
    font-weight: 500;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #00d4ff;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    background: #f8fafc;
}

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

.portfolio-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #00d4ff;
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.portfolio-content p {
    color: #4a5568;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    font-size: 1.25rem;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.contact-item p {
    color: #4a5568;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

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

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 28px;
    height: 28px;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.3));
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

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

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

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00d4ff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #cbd5e0;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2.5rem 0;
    }

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

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

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

    .hero-graphic {
        font-size: 4rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .portfolio-item {
        margin: 0 1rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
