:root {
    --bg-color: #050505;
    --bg-darker: #020202;
    --neon-cyan: #00f3ff;
    --neon-blue: #0066ff;
    --text-main: #e0e0e0;
    --glass-bg: rgba(10, 10, 15, 0.6);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
}

/* --- Background Images --- */
body.homepage {
    background-image: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 1)), url('home-bg.png');
    background-size: cover; 
    background-position: center top; 
    background-repeat: no-repeat;
}

body.jarvis-bg {
    background-image: linear-gradient(rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 1)), url('jarvis-core.png');
    background-size: cover; background-position: center; background-attachment: fixed;
}

body.velocity-bg {
    background-image: linear-gradient(rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 1)), url('velocity-engine.png');
    background-size: cover; background-position: center; background-attachment: fixed;
}

main.main-content {
    padding-top: 100px; 
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--neon-cyan);
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: transparent; 
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 50px;
    color: #fff;
    text-shadow: 0 0 20px var(--neon-blue);
    margin-bottom: 10px;
}

#typewriter {
    font-size: 20px;
    color: #888;
    height: 30px;
    letter-spacing: 1.5px;
}

.btn {
    display: inline-block;
    margin-top: 60px;
    padding: 15px 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    background: transparent;
    transition: 0.3s;
    cursor: pointer;
}

.btn:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--neon-cyan);
}

.explore-btn {
    margin-top: 20px;
    font-size: 14px;
    padding: 10px 20px;
}

/* Content Sections */
.content-section {
    padding: 100px 10%;
    text-align: center;
}

.bg-darker {
    background-color: var(--bg-darker); 
    border-top: 1px solid rgba(0, 243, 255, 0.05);
    border-bottom: 1px solid rgba(0, 243, 255, 0.05);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 35px;
    margin-bottom: 20px;
    color: var(--neon-cyan);
}

.section-subtitle {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 50px;
}

.info-block {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    text-align: left;
}

.info-block p {
    margin-bottom: 20px;
}

/* Cards & Images */
.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    width: 320px;
    text-align: left;
    backdrop-filter: blur(15px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.wide-card {
    width: 45%;
    min-width: 320px;
}

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

.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-banner {
    width: 100%;
    max-width: 1000px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.glass-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 10px;
    font-size: 22px;
}

.glass-card p {
    color: #aaa;
    line-height: 1.6;
    font-size: 16px;
}

.status {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    font-size: 12px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.pricing-tier {
    margin-top: 15px;
    color: var(--neon-blue) !important;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
}

.pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { text-shadow: 0 0 5px var(--neon-cyan); }
    50% { text-shadow: 0 0 15px var(--neon-cyan); }
    100% { text-shadow: 0 0 5px var(--neon-cyan); }
}

.portfolio-card { width: 250px; padding: 15px; text-align: center; }

/* Contact Section & Form Styles */
.contact-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 40px; }
.contact-card { width: 400px; }
.neon-link { color: var(--neon-cyan); text-decoration: none; transition: 0.3s; }
.neon-link:hover { text-shadow: 0 0 8px var(--neon-cyan); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    cursor: pointer;
    width: 100%;
}

/* --- PROFESSIONAL FOOTER --- */
.professional-footer {
    background: #000;
    color: #888;
    padding: 60px 10% 20px;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    font-family: 'Rajdhani', sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-brand h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    font-size: 22px;
}

.footer-brand p {
    line-height: 1.6;
    font-size: 16px;
    color: #aaa;
}

.footer-links, .footer-legal, .footer-social {
    flex: 1;
    min-width: 150px;
}

.professional-footer h4 {
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
}

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

.professional-footer ul li {
    margin-bottom: 12px;
}

.professional-footer ul li a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.professional-footer ul li a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}