:root {
    --bg: #050505;
    --card-bg: #111111;
    --accent: #32ff7e; /* Cyber Lime */
    --primary: #2e5bff; /* Cobalt Blue */
    --text: #ffffff;
    --text-muted: #888888;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    align-items: center;
    border-bottom: 1px solid #222;
}

.logo { font-weight: 800; font-size: 1.5rem; letter-spacing: -1px; }
.logo span { color: var(--primary); }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--text-muted); transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* Hero Section */
.hero-split {
    display: flex;
    min-height: 80vh;
    align-items: center;
}

.hero-content { flex: 1; padding: 4rem; }
.hero-image-container { flex: 1; position: relative; height: 80vh; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(50%) brightness(0.6); }

.status-bar { font-family: 'JetBrains Mono'; font-size: 0.8rem; color: var(--accent); margin-bottom: 1rem; }
.dot { height: 8px; width: 8px; background: var(--accent); border-radius: 50%; display: inline-block; margin-right: 5px; box-shadow: 0 0 10px var(--accent); }

h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; }
.text-accent { color: var(--primary); }

/* Service Cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border: 1px solid #222;
    border-radius: 12px;
    transition: 0.3s;
}

.service-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.pillar-tag { font-family: 'JetBrains Mono'; color: var(--accent); font-size: 0.7rem; text-transform: uppercase; margin-bottom: 1rem; }

.spec-list { list-style: none; padding: 0; margin-top: 1.5rem; }
.spec-list li { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; border-left: 2px solid var(--primary); padding-left: 10px; }

/* Bento Box Layout */
.bento-box {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 200px;
    gap: 1rem;
    margin-bottom: 8rem;
}

.bento-item { background: var(--card-bg); border-radius: 12px; padding: 2rem; border: 1px solid #222; }
.bento-item.stat .number { font-size: 3rem; font-weight: 800; color: var(--accent); display: block; }

/* Buttons */
.btn-primary { background: var(--primary); color: white; padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 700; border: none; cursor: pointer; }
.btn-secondary { color: white; padding: 1rem 2rem; text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
    .hero-split { flex-direction: column; }
    .hero-image-container { display: none; }
    h1 { font-size: 2.5rem; }
    .hero-content .btn-secondary {
        display: block;
        margin-top: 1.5rem;
        padding-left: 0; /* Optional: aligns text to the left of the container */
    }
}

/* About Section Styles */
.about-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg) 0%, #0a0a0a 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.values-list {
    margin-top: 3rem;
}

.value-item {
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
}

.value-item strong {
    display: block;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.value-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Code Window Visual */
.code-window {
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    font-family: 'JetBrains Mono', monospace;
}

.window-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.win-dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #333;
}

.code-content {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 2;
}

.code-comment { color: #555; }

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-text h2 { font-size: 2.2rem; }
}
.contact-footer input {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #222;
    background: var(--card-bg); /* Match bento boxes */
    color: var(--text);
    min-width: 300px;
    transition: 0.3s;
}

.contact-footer input:focus {
    outline: none;
    border-color: var(--primary); /* Cobalt Blue */
    box-shadow: 0 0 10px rgba(46, 91, 255, 0.2);

}



