/* Core Document & Theme Variables */
:root {
    --bg-primary: #070C1E;
    --bg-secondary: #0F172A;
    --bg-footer: #050917;
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --text-dark: #64748B;
    --accent-cyan: #00F2FE;
    --accent-hover: #22D3EE;
    --border-color: #1E293B;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    background-image: radial-gradient(rgba(0, 242, 254, 0.07) 1px, transparent 0);
    background-size: 24px 24px;
}

/* Base Containers */
.container {
    max-w: 1152px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header & Navigation */
.site-header {
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(7, 12, 30, 0.9);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    items-center: center;
    padding: 16px 0;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-badge {
    border: 2px solid var(--accent-cyan);
    border-radius: 4px;
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text-title {
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    font-size: 14px;
    display: block;
}

.logo-text-sub {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    display: block;
    margin-top: -4px;
}

.desktop-nav {
    display: none;
    gap: 32px;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-cyan);
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.mobile-dropdown {
    display: none;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    padding: 16px;
    flex-direction: column;
    gap: 16px;
}

.mobile-dropdown.open {
    display: flex;
}

/* Layout Grid Utilities */
.grid-twelve {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .grid-twelve {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    .col-7 { grid-column: span 7 / span 7; }
    .col-5 { grid-column: span 5 / span 5; }
    .col-8 { grid-column: span 8 / span 8; }
    .col-4 { grid-column: span 4 / span 4; }
}

.grid-three {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .grid-three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.grid-two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .grid-two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Typography & Display Sections */
.hero-wrapper {
    padding: 80px 0;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-mono-tag {
    font-size: 12px;
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    border-left: 2px solid var(--accent-cyan);
    padding-left: 12px;
    margin-bottom: 24px;
}

.about-page .section-mono-tag,
.services-page .section-mono-tag,
.blogs-page .section-mono-tag,
.contacts-page .section-mono-tag {
    border-left: none;
    padding-left: 0;
    color: var(--accent-cyan);
}

.display-title {
    font-size: 36px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .display-title {
        font-size: 56px;
    }
}

.display-title span {
    color: var(--accent-cyan);
}

.lead-text {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 32px;
}

/* Interactive Components & Cards */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary {
    background-color: var(--accent-cyan);
    color: var(--bg-primary);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-secondary {
    border: 1px solid #334155;
    color: var(--text-main);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: border-color 0.2s;
}

.btn-secondary:hover {
    border-color: #64748B;
}

.visual-datacore {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: rgba(15, 23, 42, 0.8);
    padding: 24px;
    width: 256px;
    height: 256px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
}

.visual-datacore-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #22D3EE;
}

.visual-badge {
    height: 40px;
    width: 64px;
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--accent-cyan);
    background-color: rgba(0, 242, 254, 0.1);
    font-weight: 700;
}

/* Metric Strip Layout */
.metric-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    border-top: 1px solid var(--border-color);
    margin-top: 96px;
    padding-top: 48px;
}

@media (min-width: 768px) {
    .metric-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.metric-num {
    font-size: 30px;
    font-weight: 800;
    color: #FFFFFF;
}

.metric-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* Shared Generic Content Elements */
.content-section {
    padding: 64px 0;
}

.panel-card {
    border: 1px solid var(--border-color);
    background-color: rgba(15, 23, 42, 0.4);
    padding: 24px;
    border-radius: 8px;
}

.panel-sidebar {
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 8px;
}

.sidebar-item {
    margin-bottom: 16px;
}

.sidebar-item:last-child {
    margin-bottom: 0;
}

.sidebar-label {
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 12px;
    display: block;
    letter-spacing: 0.05em;
}

.sidebar-value {
    color: #FFFFFF;
    font-weight: 500;
    margin-top: 4px;
}

.divider-line {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 16px 0;
}

.bullet-list {
    list-style: none;
    margin-top: 12px;
}

.bullet-list li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bullet-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    display: inline-block;
}

/* Form Styling */
.form-box {
    background-color: rgba(15, 23, 42, 0.3);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 8px;
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .form-row-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: monospace;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 14px;
    color: #FFFFFF;
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--accent-cyan);
}

.btn-form-submit {
    width: 100%;
    background-color: var(--accent-cyan);
    color: var(--bg-primary);
    font-weight: 700;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: monospace;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-form-submit:hover {
    background-color: var(--accent-hover);
}

/* Footer Section */
.site-footer {
    border-top: 1px solid #0F172A;
    background-color: var(--bg-footer);
    font-size: 12px;
    color: var(--text-dark);
    padding: 32px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
    }
}

.footer-links {
    display: flex;
    gap: 24px;
}
/* Stats Micro-Animations */
.metric-strip > div {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.metric-strip > div:hover {
    transform: translateY(-4px);
}

.metric-num {
    transition: color 0.3s ease;
}

/* Post-count glow confirmation flash */
.metric-num.pulse-glow {
    color: #FFFFFF;
    text-shadow: 0 0 12px rgba(0, 242, 254, 0.4);
}
/* Enhanced Corporate Navbar Layout Extensions */
.site-header {
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(7, 12, 30, 0.95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrap {
    display: flex;
    justify-content: space-between; /* Securely isolates left logo from right links */
    align-items: center;
    padding: 14px 16px;
}

/* Highly Configured Logo Container */
.logo-block {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

/* Image Dimension Bounds Management */
.nav-brand-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

/* Symmetrical Right Navigation Items Layout Cluster */
.nav-right-cluster {
    display: none;
    align-items: center;
    gap: 40px; /* Uniform luxury space handling between text clusters and actions */
}

@media (min-width: 768px) {
    .nav-right-cluster {
        display: flex;
    }
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px; /* Internal spatial gaps among inline links text properties */
}

/* Elegant High-Tech CTA Button inside the Nav Header Strip */
.btn-nav-cta {
    background-color: transparent;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

.btn-nav-cta:hover {
    background-color: var(--accent-cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

/* Smooth adjustments on Mobile menu items spacing adjustments */
.mobile-dropdown .nav-link {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

