/* 
   AGGRESSIVE BLUEPRINT OVERRIDES 
   System Architecture Theme Enforcement
   -------------------------------------
   This file uses !important to brute-force the aesthetic over any framework defaults.
*/

/* 1. UNIVERSAL TEXT RESET */
* {
    color: #FFFFFF !important;
    /* Stark White Text Everywhere */
    text-shadow: none !important;
}

/* 2. ACCENT COLORS (Links, Icons, Highlights) */
a,
a:visited,
i,
.bi,
.accent-text,
.purecounter,
.stat-number,
.achievement-number {
    color: #00FF00 !important;
    /* Neon Green */
}

a:hover,
a:focus {
    color: #000000 !important;
    /* Black Text */
    background-color: #00FF00 !important;
    /* Green Background */
}

/* 3. HEADINGS & TITLES */
h1,
h2,
h3,
h4,
h5,
h6,
.sitename,
.logo h1,
.page-title h1,
.section-title h2 {
    color: #FFFFFF !important;
    font-family: "Times New Roman", Times, serif !important;
    font-style: italic !important;
    letter-spacing: -1px !important;
}

h1 {
    font-size: 2.4rem !important;
}

h2 {
    font-size: 2.0rem !important;
}

h3 {
    font-size: 1.6rem !important;
}

/* 4. BACKGROUND REMOVAL (Radical Transparency) */
body {
    background-color: #000a20 !important;
    /* Deep "Blueprint" Navy */
    overflow-x: hidden !important;
    /* CRITICAL: Global overflow prevention */
}

div,
section,
header,
footer,
nav,
ul,
li,
span,
p,
form,
input,
textarea,
select,
button,
.card,
.service-card,
.icon-box,
.hero,
.header,
.footer,
.navmenu,
.mobile-nav-toggle {
    background-color: transparent !important;
    background: transparent !important;
}

/* 5. SHAPES & BORDERS */
.card,
.service-card,
.icon-box,
.team-member,
.testimonial-item,
.portfolio-item,
.input-group,
.form-control,
input,
textarea,
select {
    border: 1px dashed #00FF00 !important;
    /* Neon Green Dashed Border */
    border-radius: 0 !important;
    /* Raw Corners */
    box-shadow: none !important;
}

/* 6. BUTTONS */
.btn,
.btn-primary,
.submit-btn,
button[type="submit"] {
    color: #00FF00 !important;
    border: 2px solid #00FF00 !important;
    background: transparent !important;
    text-transform: uppercase;
    font-weight: bold;
}

.btn:hover,
.btn-primary:hover,
.submit-btn:hover {
    background-color: #00FF00 !important;
    color: #000000 !important;
}

/* 7. FORM INPUTS VALIDATION */
::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #00FF00 !important;
    background-color: rgba(0, 255, 0, 0.1) !important;
}

/* 8. NAVIGATION SPECIFIC */
.navmenu ul {
    background: #000a20 !important;
    /* Dark Navy for Dropdowns */
}

@media (max-width: 991px) {
    .navmenu ul {
        background: #000a20 !important;
        border: 1px dashed #00FF00 !important;
    }
}

/* 9. IMAGE RESET */
img {
    filter: none !important;
    mix-blend-mode: normal !important;
    border: none !important;
}

/* 10. TEXT CONTAINMENT ONLY */
/* No layout hacks, no grid breaking. Just ensure text wraps. */
h1,
h2,
h3,
p,
span,
a,
div {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.hero h1 {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word !important;
    margin-bottom: 30px !important;
}

/* FORCED LAYOUT FIX: Remove any vertical central borders breaking into content */
.hero .row,
.hero .col-lg-7,
.hero .col-lg-5 {
    border-right: none !important;
    border-left: none !important;
    outline: none !important;
}

.achievement-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    max-width: 100% !important;
}

.achievement-item {
    flex: 1 1 200px !important;
    min-width: 150px !important;
}

/* REMOVE AGGRESSIVE GLOBAL BORDERS / CONNECTORS */
section,
.section {
    border-left: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

section::before,
.section::before {
    content: none !important;
    display: none !important;
}

/* Ensure container handles the centering correctly without the margin-left hack */
.container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}