:root {
    --color-dark-bg: #0A0A10;
    --color-dark-accent-bg: #150A20;
    --color-neon-blue: #4A90E2; /* Muted blue */
    --color-neon-magenta: #A050D0; /* Muted purple/magenta */
    --color-neon-teal: #2ECC71; /* Muted teal/green */
    --color-text-light: #C0C0C0;
    --color-text-highlight: #FFFFFF;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inconsolata', monospace;
    --border-radius-soft: 8px;
    --glow-strength: 0 0 8px rgba(74, 144, 226, 0.6), 0 0 12px rgba(160, 80, 208, 0.4);
    --glow-strength-blue: 0 0 10px rgba(74, 144, 226, 0.8);
    --glow-strength-magenta: 0 0 10px rgba(160, 80, 208, 0.8);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-light);
    background-color: var(--color-dark-bg);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative; /* For the subtle background pattern */
}



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

.section-padding {
    padding: 80px 0;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-text-highlight);
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-shadow: var(--glow-strength);
}

h2.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    position: relative;
    padding-bottom: 15px;
}

h2.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--color-neon-blue), var(--color-neon-magenta));
    box-shadow: var(--glow-strength);
}

p {
    font-size: clamp(1rem, 2vw, 1.1em);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: var(--border-radius-soft);
    text-decoration: none;
    font-weight: bold;
    font-family: var(--font-heading);
    transition: all 0.3s ease-in-out;
    border: 2px solid;
    background-color: transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-btn {
    border-color: var(--color-neon-blue);
    color: var(--color-text-highlight);
    box-shadow: var(--glow-strength-blue);
}

.primary-btn:hover {
    background-color: rgba(74, 144, 226, 0.1);
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.8), 0 0 20px rgba(74, 144, 226, 0.6);
    transform: translateY(-2px) scale(1.01);
}

/* Header/Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--color-neon-teal);
    text-shadow: 0 0 8px rgba(46, 204, 113, 0.7); /* Adjusted glow */
}

.sub-tagline {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 40px;
    color: var(--color-text-light);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 16, 0.9);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* Reduced shadow */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img.branch-logo {
    height: 80px;
    margin-right: 10px;
}

.logo .company-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-highlight);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: bold;
    font-size: clamp(1rem, 2vw, 1.1em);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: linear-gradient(to right, var(--color-neon-blue), var(--color-neon-magenta));
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.6); /* Reduced glow */
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-neon-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-neon-blue);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* About Section */
.about-section {
    background-color: var(--color-dark-accent-bg);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(1rem, 2vw, 1.15em);
    color: var(--color-text-light);
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-content li {
    margin-bottom: 10px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--color-dark-accent-bg);
    padding: 30px;
    border-radius: var(--border-radius-soft);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* Reduced shadow */
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-soft);
    padding: 2px;
    background: linear-gradient(45deg, var(--color-neon-blue), var(--color-neon-magenta), var(--color-neon-teal));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 0.6; /* Reduced opacity on hover glow */
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.6), 0 0 10px rgba(160, 80, 208, 0.4);
}

.service-card:hover {
    transform: translateY(-3px); /* Less dramatic lift */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); /* Reduced shadow */
}

.service-card h3 {
    font-size: clamp(1.5rem, 3vw, 1.8em);
    color: var(--color-neon-teal);
    margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.contact-intro {
    margin-bottom: 20px;
}

.contact-info a {
    font-size: 1.2rem;
    color: var(--color-neon-blue);
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
.site-footer {
    background-color: #05050C;
    color: var(--color-text-light);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
    border-top: 1px solid rgba(74, 144, 226, 0.1);
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(10, 10, 16, 0.95);
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px 0;
        border-top: 1px solid rgba(74, 144, 226, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .site-footer .container {
        flex-direction: column;
    }

    .site-footer p {
        margin-bottom: 15px;
    }
}