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

:root {
    --primary-cyan: #00d4ff;
    --electric-violet: #8b5cf6;
    --lime-green: #00ff88;
    --deep-black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Orbitron', monospace;
    --font-body: 'Inter', sans-serif;
    
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-glow-strong: 0 0 40px rgba(0, 212, 255, 0.5);
}

body {
    background: var(--deep-black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

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

.logo {
    height: 40px;
    filter: drop-shadow(0 0 10px var(--primary-cyan));
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    min-width: 150px;
    box-shadow: var(--shadow-glow);
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.dropdown-content a:hover {
    color: var(--primary-cyan);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-cyan);
    margin: 3px 0;
    transition: 0.3s;
}

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

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

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    flex: 1;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.glow-text {
    display: block;
    color: var(--primary-cyan);
    text-shadow: 0 0 20px var(--primary-cyan);
    animation: pulse 2s ease-in-out infinite alternate;
}

.glow-text-secondary {
    display: block;
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes pulse {
    0% { text-shadow: 0 0 20px var(--primary-cyan); }
    100% { text-shadow: 0 0 30px var(--primary-cyan), 0 0 40px var(--primary-cyan); }
}

.rotating-taglines {
    position: relative;
    height: 3rem;
    margin-bottom: 3rem;
    overflow: hidden;
}

.tagline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.tagline.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(45deg, var(--primary-cyan), var(--electric-violet));
    color: var(--deep-black);
    box-shadow: var(--shadow-glow);
}

.cta-secondary {
    background: var(--glass-bg);
    color: var(--white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.button-glow {
    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.5s;
}

.cta-primary:hover .button-glow,
.cta-secondary:hover .button-glow {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

.cta-secondary:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.floating-panels {
    position: relative;
    width: 300px;
    height: 400px;
}

.panel {
    position: absolute !important;
    background: var(--glass-bg) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 50% !important;
    box-shadow: var(--shadow-glow) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer !important;
    width: 100px !important;
    height: 100px !important;
}

.panel:hover {
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-10px) rotate(2deg) scale(1.05);
}

.panel-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    padding: 15px !important;
}

.panel-logo img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4)) !important;
    transition: all 0.3s ease !important;
}

.panel:hover .panel-logo img {
    filter: drop-shadow(0 0 15px var(--primary-cyan));
    transform: scale(1.1);
}

.panel-1 {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    top: 20px;
    right: 40px;
    animation: float 6s ease-in-out infinite;
}

.panel-2 {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    top: 140px;
    left: 20px;
    animation: float 6s ease-in-out infinite 2s;
}

.panel-3 {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    bottom: 40px;
    right: 60px;
    animation: float 6s ease-in-out infinite 4s;
}

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

/* Products Preview */
.products-preview {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-cyan);
    text-shadow: 0 0 20px var(--primary-cyan);
}

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

.product-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-glow-strong);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-cyan) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.product-card:hover .card-glow {
    opacity: 0.1;
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-cyan), var(--electric-violet));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

/* Product icons are now actual images */

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

.product-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.product-link {
    display: inline-block;
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-cyan);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.product-link:hover {
    background: var(--primary-cyan);
    color: var(--deep-black);
    text-shadow: none;
}

/* Footer */
.footer {
    position: relative;
    background: var(--dark-gray);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
}

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

.footer-section h4 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-section a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-cyan);
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--primary-cyan));
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Page Styles */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-cyan);
    text-shadow: 0 0 20px var(--primary-cyan);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 0;
}

.content-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.content-card h2 {
    color: var(--primary-cyan);
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.content-card h3 {
    color: var(--lime-green);
    margin-bottom: 1rem;
}

.leadership-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
}

.leader-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-cyan), var(--electric-violet));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--deep-black);
    font-weight: bold;
}

.leader-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--primary-cyan);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-cyan);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    backdrop-filter: blur(20px);
}

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

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

.submit-btn {
    background: linear-gradient(45deg, var(--primary-cyan), var(--electric-violet));
    color: var(--deep-black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

/* Job Listings */
.job-listing {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.job-listing:hover {
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-glow);
}

.job-title {
    color: var(--primary-cyan);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.job-description {
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--primary-cyan);
    margin: 2rem 0 1rem;
}

.legal-content h3 {
    color: var(--lime-green);
    margin: 1.5rem 0 0.5rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--primary-cyan);
}

@media (max-width: 768px) {
    .leadership-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .leader-photo {
        margin: 0 auto;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 2rem 1rem;
    }
}
