
:root {
    --bg-color: #000000;
    --neon-cyan: #00D4FF;
    --neon-purple: #7B2FFF;
    --text-color: #EDEDED;
    --text-muted: #888888;
    --grid-line: rgba(0, 212, 255, 0.12);
    --card-bg: rgba(20, 20, 20, 0.8);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Subtle animated grid background */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(5px);
    background: rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 2rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--neon-cyan);
}

/* Hero Section */
.hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 1rem 2rem 1rem;
}

h1 {
    font-size: 5rem;
    line-height: 1;
    margin: 1rem 0;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

h1:hover {
    text-shadow: 2px 2px 0px var(--neon-purple), -2px -2px 0px var(--neon-cyan);
}

.sub-headline {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

p.description {
    max-width: 600px;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Stats Bar */
.stats-bar {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-around;
    padding: 2rem 0;
    background: rgba(0,0,0,0.8);
}

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

.stat-item h3 {
    font-size: 2rem;
    margin: 0;
    color: #fff;
}

.stat-item span {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Content Sections */
.content-section {
    padding: 6rem 10%;
}

#technology,
#about,
#contact {
    scroll-margin-top: 120px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 800;
}

.text-neon {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.text-purple {
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(123, 47, 255, 0.4);
}

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

.neon-card {
    background: var(--card-bg);
    border: 1px solid #333;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.neon-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.15);
}

.card-icon {
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    opacity: 0.5;
    transition: color 0.3s;
}

.neon-card:hover .card-icon {
    color: var(--neon-cyan);
    opacity: 0.2;
}

.neon-card h3 {
    font-size: 1rem;
    margin-top: 0;
    color: #fff;
    text-transform: uppercase;
}

.neon-card p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.neon-card strong {
    color: #fff;
}

/* Alternate Background for About */
.alternate-bg {
    background: linear-gradient(180deg, rgba(20,20,20,0) 0%, rgba(20,20,20,0.8) 50%, rgba(20,20,20,0) 100%);
}

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

.large-text {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding-bottom: 6rem;
}

.contact-box {
    margin-top: 3rem;
    border: 1px solid var(--neon-cyan);
    display: inline-block;
    padding: 3rem 5rem;
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.email-link {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid var(--neon-cyan);
    transition: all 0.3s;
}

.email-link:hover {
    background: var(--neon-cyan);
    color: #000;
    padding: 0 10px;
}

.company-info {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-info p {
    margin: 0.3rem 0;
}

footer {
    border-top: 1px solid #222;
    padding: 2rem;
    text-align: center;
    color: #444;
    font-size: 0.8rem;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .content-section { padding: 4rem 5%; }
    .contact-box { padding: 2rem; width: 100%; }
    .email-link { font-size: 1.5rem; }
    .nav-links a { margin-left: 1rem; }
}


/*# sourceMappingURL=main.css.map*/