﻿:root {
--navy: #0B3C5D;
--navy-dark: #07263B;
--navy-glass: rgba(11, 60, 93, 0.85);
--steel: #5F6B7A;
--steel-light: #F4F6F8;
--steel-border: #E2E8F0;
--white: #FFFFFF;
--text-main: #1C252C;
--text-muted: #4A5560;
--orange: #F58220;
--orange-hover: #D96F10;
--cyan: #00A8B5;
--glass-bg: rgba(255, 255, 255, 0.75);
--glass-border: rgba(255, 255, 255, 0.4);
--shadow-sm: 0 2px 4px rgba(7, 38, 59, 0.05);
--shadow-md: 0 10px 20px rgba(7, 38, 59, 0.08);
--shadow-lg: 0 20px 40px rgba(7, 38, 59, 0.12);
--transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* --- BASE STYLES & RESET --- */
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   }
html {
scroll-behavior: smooth;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
color: var(--text-main);
background-color: var(--white);
}
body {
line-height: 1.6;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}
/* --- STRUCTURE REUSABLES --- */
.container {
width: 100%;
max-width: 1240px;
margin: 0 auto;
padding: 0 24px;
}
.section-padding {
padding: 100px 0;
}
.light-bg {
background-color: var(--steel-light);
}
.grid-2col {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 48px;
}
.grid-3col {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
}
.grid-4col {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}
.align-center {
align-items: center;
}
.mt-48 {
margin-top: 48px;
}
.text-center {
text-align: center;
}
/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
font-family: 'Zilla Slab', Georgia, serif;
color: var(--navy);
font-weight: 600;
line-height: 1.2;
}
.section-eyebrow {
display: block;
font-family: 'IBM Plex Mono', monospace;
color: var(--orange);
font-size: 13px;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 12px;
font-weight: 500;
}
.section-subtitle {
font-size: 18px;
color: var(--text-muted);
max-width: 700px;
margin: 16px auto 0;
}
.body-lead {
font-size: 18px;
color: var(--text-muted);
margin-bottom: 20px;
font-weight: 500;
}
.body-text {
color: var(--text-muted);
margin-bottom: 16px;
}
/* --- BUTTONS --- */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 14px 28px;
font-weight: 600;
font-size: 15px;
border-radius: 4px;
transition: var(--transition-smooth);
cursor: pointer;
text-decoration: none;
border: 2px solid transparent;
gap: 10px;
}
.btn-primary {
background-color: var(--orange);
color: var(--white);
box-shadow: 0 4px 14px rgba(245, 130, 32, 0.3);
}
.btn-primary:hover {
background-color: var(--orange-hover);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(245, 130, 32, 0.4);
}
.btn-secondary {
background-color: transparent;
color: var(--white);
border-color: rgba(255, 255, 255, 0.4);
backdrop-filter: blur(4px);
}
.btn-secondary:hover {
background-color: rgba(255, 255, 255, 0.1);
border-color: var(--white);
transform: translateY(-2px);
}
/* --- FIXED HEADER --- */
.main-header {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 85px;
background-color: rgba(255, 255, 255, 0.95);
box-shadow: var(--shadow-sm);
z-index: 1000;
backdrop-filter: blur(8px);
transition: var(--transition-smooth);
border-bottom: 1px solid var(--steel-border);
}
.main-header.scrolled {
height: 75px;
background-color: rgba(255, 255, 255, 0.98);
box-shadow: var(--shadow-md);
}
.nav-container {
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
max-width: 1240px;
margin: 0 auto;
padding: 0 24px;
}
.brand-logo {
text-decoration: none;
}
.brand-logo img {
display: block;
}
.logo-text {
font-size: 24px;
font-weight: 700;
color: var(--navy);
letter-spacing: -0.5px;
}
.logo-accent {
font-family: 'IBM Plex Mono', monospace;
font-size: 14px;
color: var(--steel);
font-weight: 400;
margin-left: 4px;
}
.nav-menu {
display: flex;
gap: 32px;
}
.nav-link {
font-size: 15px;
font-weight: 500;
color: var(--text-main);
text-decoration: none;
transition: var(--transition-smooth);
position: relative;
padding: 8px 0;
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: var(--orange);
transition: var(--transition-smooth);
}
.nav-link:hover::after, .nav-link.active::after {
width: 100%;
}
.nav-link:hover, .nav-link.active {
color: var(--orange);
}
.nav-actions {
display: flex;
align-items: center;
gap: 16px;
}
.menu-toggle {
display: none;
flex-direction: column;
gap: 6px;
background: none;
border: none;
cursor: pointer;
padding: 4px;
}
.menu-toggle .bar {
width: 24px;
height: 2px;
background-color: var(--navy);
transition: var(--transition-smooth);
}
.mobile-only {
display: none;
}
/* --- MEGA HERO SECTION --- */
.hero-section {
position: relative;
margin-top: 85px;
background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
color: var(--white);
overflow: hidden;
}
.hero-grid-overlay {
position: absolute;
inset: 0;
background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
background-size: 40px 40px;
pointer-events: none;
}
.hero-inner {
display: grid;
grid-template-columns: 1.10fr 0.90fr;
gap: 64px;
padding-top: 100px;
padding-bottom: 180px;
align-items: center;
}
.eyebrow-tag {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: 'IBM Plex Mono', monospace;
color: var(--cyan);
font-size: 13px;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 24px;
}
.hero-content h1 {
color: var(--white);
font-size: 52px;
line-height: 1.15;
margin-bottom: 24px;
}
.hero-lead {
font-size: 18px;
color: rgba(255, 255, 255, 0.85);
margin-bottom: 40px;
}
.hero-actions {
display: flex;
gap: 16px;
}
.graphic-frame {
position: relative;
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow-lg);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-img {
width: 100%;
height: 440px;
object-fit: cover;
display: block;
}
.scanner-laser-line {
position: absolute;
top: 10%;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, transparent, var(--orange), transparent);
box-shadow: 0 0 15px var(--orange);
animation: laserScan 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes laserScan {
0%, 100% { top: 8%; }
50% { top: 92%; }
}
.interface-pin {
position: absolute;
width: 12px;
height: 12px;
background-color: var(--cyan);
border-radius: 50%;
box-shadow: 0 0 0 6px rgba(0, 168, 181, 0.3);
}
.interface-pin::after {
content: attr(data-label);
position: absolute;
left: 20px;
top: -6px;
background-color: rgba(7, 38, 59, 0.9);
padding: 4px 10px;
border-radius: 4px;
font-family: 'IBM Plex Mono', monospace;
font-size: 11px;
white-space: nowrap;
color: var(--white);
border-left: 2px solid var(--orange);
backdrop-filter: blur(4px);
}
/* --- STATISTICS BAR --- */
.stats-bar {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(7, 38, 59, 0.4);
backdrop-filter: blur(20px);
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding: 28px 0;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}
.stat-item {
border-right: 1px solid rgba(255, 255, 255, 0.15);
padding-left: 16px;
}
.stat-item:last-child {
border-right: none;
}
.stat-number {
font-size: 36px;
color: var(--white);
font-weight: 700;
font-family: 'Zilla Slab', serif;
}
.stat-number::after {
content: '+';
color: var(--orange);
margin-left: 2px;
}
.stat-static {
font-size: 36px;
color: var(--white);
font-weight: 700;
font-family: 'Zilla Slab', serif;
}
.stat-label {
font-size: 14px;
color: rgba(255, 255, 255, 0.7);
margin-top: 4px;
}
/* --- ABOUT SECTION & GLASS CARDS --- */
.about-visual {
position: relative;
}
.rounded-img {
width: 100%;
height: auto;
border-radius: 6px;
box-shadow: var(--shadow-md);
display: block;
}
.floating-badge {
position: absolute;
bottom: -24px;
right: -24px;
background: var(--navy-glass);
backdrop-filter: blur(12px);
border: 1px solid var(--glass-border);
color: var(--white);
padding: 24px;
border-radius: 6px;
box-shadow: var(--shadow-lg);
max-width: 180px;
}
.badge-num {
display: block;
font-size: 38px;
font-weight: 700;
color: var(--orange);
line-height: 1;
font-family: 'Zilla Slab', serif;
}
.badge-txt {
font-size: 13px;
color: var(--steel-light);
margin-top: 6px;
display: block;
}
.mvv-container {
margin-top: 32px;
border-top: 1px solid var(--steel-border);
padding-top: 24px;
}
.mvv-block {
margin-bottom: 24px;
}
.mvv-block h4 {
font-family: 'Inter', sans-serif;
font-size: 16px;
font-weight: 700;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 10px;
}
.mvv-block h4 i {
color: var(--orange);
}
.mvv-block p {
color: var(--text-muted);
font-size: 15px;
}
.values-block {
margin-top: 28px;
background: var(--glass-bg);
backdrop-filter: blur(10px);
border: 1px solid var(--glass-border);
padding: 24px;
border-radius: 6px;
border-left: 4px solid var(--orange);
box-shadow: var(--shadow-sm);
}
.values-block h4 {
font-family: 'Inter', sans-serif;
font-size: 16px;
font-weight: 700;
margin-bottom: 12px;
}
.values-list {
list-style: none;
}
.values-list li {
font-size: 14.5px;
color: var(--text-muted);
margin-bottom: 10px;
position: relative;
padding-left: 20px;
}
.values-list li::before {
content: "→";
position: absolute;
left: 0;
color: var(--orange);
font-weight: bold;
}
.values-list li:last-child {
margin-bottom: 0;
}
/* --- INDUSTRY CARDS --- */
.section-header {
margin-bottom: 56px;
}
.industry-card {
background-color: var(--white);
border-radius: 6px;
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition-smooth);
border: 1px solid var(--steel-border);
}
.industry-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-lg);
border-color: rgba(11, 60, 93, 0.15);
}
.ind-img-wrapper {
height: 220px;
overflow: hidden;
position: relative;
}
.ind-img-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition-smooth);
}
.industry-card:hover .ind-img-wrapper img {
transform: scale(1.06);
}
.ind-content {
padding: 28px;
}
.ind-code {
font-family: 'IBM Plex Mono', monospace;
font-size: 12px;
color: var(--steel);
display: flex;
align-items: center;
gap: 6px;
margin-bottom: 12px;
}
.ind-code i {
color: var(--orange);
}
.ind-content h3 {
font-family: 'Inter', sans-serif;
font-size: 19px;
font-weight: 700;
margin-bottom: 12px;
}
.ind-content p {
font-size: 14.5px;
color: var(--text-muted);
}
/* --- SOLUTION CARDS GRID --- */
.sol-card {
background-color: var(--white);
padding: 40px 28px;
border: 1px solid var(--steel-border);
border-radius: 6px;
box-shadow: var(--shadow-sm);
transition: var(--transition-smooth);
}
.sol-icon {
font-size: 28px;
color: var(--orange);
margin-bottom: 24px;
height: 40px;
display: flex;
align-items: center;
}
.sol-card h4 {
font-family: 'Inter', sans-serif;
font-size: 17px;
font-weight: 700;
margin-bottom: 14px;
transition: var(--transition-smooth);
}
.sol-card p {
font-size: 14px;
color: var(--text-muted);
transition: var(--transition-smooth);
line-height: 1.55;
}
.sol-card:hover {
background-color: var(--navy);
border-color: var(--navy);
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}
.sol-card:hover .sol-icon {
color: var(--cyan);
}
.sol-card:hover h4 {
color: var(--white);
}
.sol-card:hover p {
color: rgba(255, 255, 255, 0.8);
}
/* --- ENGINEERING SERVICES MATRIX PANEL --- */
.eng-split-panel {
display: grid;
grid-template-columns: 0.85fr 1.15fr;
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow-lg);
}
.eng-panel-left {
padding: 64px;
display: flex;
flex-direction: column;
justify-content: center;
}
.white-text {
color: var(--white);
}
.eng-panel-left p {
color: rgba(255, 255, 255, 0.8);
font-size: 16px;
margin-top: 20px;
}
.eng-panel-right {
padding: 56px;
background-color: rgba(7, 38, 59, 0.4);
backdrop-filter: blur(10px);
}
.eng-services-matrix {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.matrix-item {
background: rgba(255, 255, 255, 0.06);
padding: 22px;
border-radius: 6px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: var(--transition-smooth);
}
.matrix-item:hover {
background: rgba(255, 255, 255, 0.12);
border-color: var(--cyan);
transform: translateX(4px);
}
.matrix-item h5 {
font-family: 'Inter', sans-serif;
color: var(--white);
font-size: 15px;
font-weight: 600;
display: flex;
align-items: center;
gap: 12px;
}
.matrix-item h5 i {
color: var(--orange);
width: 16px;
}
/* --- TIMELINE METHODOLOGY --- */
.timeline-wrapper {
display: flex;
justify-content: space-between;
position: relative;
padding: 40px 0;
}
.timeline-wrapper::before {
content: "";
position: absolute;
top: 61px;
left: 0;
right: 0;
height: 2px;
background-color: var(--steel-border);
z-index: 1;
}
.timeline-node {
position: relative;
z-index: 2;
text-align: center;
flex: 1;
min-width: 110px;
}
.node-number {
width: 44px;
height: 44px;
background-color: var(--white);
border: 2px solid var(--navy);
color: var(--navy);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: 'IBM Plex Mono', monospace;
font-size: 14px;
font-weight: 600;
margin: 0 auto 18px;
box-shadow: var(--shadow-sm);
transition: var(--transition-smooth);
}
.node-title {
font-size: 14px;
font-weight: 600;
color: var(--text-main);
padding: 0 4px;
}
.timeline-node:hover .node-number {
background-color: var(--orange);
border-color: var(--orange);
color: var(--white);
transform: scale(1.12);
box-shadow: 0 0 12px rgba(245, 130, 32, 0.4);
}
/* --- WHY CHOOSE US CARDS --- */
.why-card {
background-color: var(--white);
border: 1px solid var(--steel-border);
padding: 44px 36px;
border-radius: 6px;
box-shadow: var(--shadow-sm);
transition: var(--transition-smooth);
}
.why-card:hover {
box-shadow: var(--shadow-md);
border-color: rgba(11, 60, 93, 0.15);
}
.why-meta {
display: flex;
align-items: center;
gap: 10px;
font-family: 'IBM Plex Mono', monospace;
font-size: 12px;
color: var(--steel);
margin-bottom: 18px;
font-weight: 500;
}
.why-meta i {
color: var(--orange);
font-size: 14px;
}
.why-card h4 {
font-family: 'Inter', sans-serif;
font-size: 18px;
font-weight: 700;
margin-bottom: 12px;
}
.why-card p {
font-size: 14.5px;
color: var(--text-muted);
}
/* --- CONTACT PANE & FORMS --- */
.postal-addr {
font-style: normal;
color: var(--text-muted);
line-height: 1.8;
margin: 20px 0;
font-size: 15px;
}
.postal-addr i {
color: var(--orange);
margin-right: 8px;
}
.comms-lines p {
font-size: 15px;
color: var(--text-muted);
margin-bottom: 14px;
display: flex;
align-items: flex-start;
gap: 10px;
}
.comms-lines p i {
color: var(--orange);
margin-top: 4px;
}
.comms-lines a {
color: var(--navy);
text-decoration: none;
font-weight: 600;
transition: var(--transition-smooth);
}
.comms-lines a:hover {
color: var(--orange);
}
.static-map-box {
margin-top: 40px;
border: 1px solid var(--steel-border);
height: 190px;
border-radius: 6px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: var(--text-muted);
box-shadow: var(--shadow-sm);
}
.map-coordinates-grid {
font-family: 'IBM Plex Mono', monospace;
font-size: 12px;
font-weight: 600;
color: var(--orange);
margin-bottom: 6px;
}
.form-wrapper-box {
background-color: var(--white);
padding: 44px;
border-radius: 6px;
box-shadow: var(--shadow-md);
border: 1px solid var(--steel-border);
}
.form-wrapper-box h3 {
font-family: 'Inter', sans-serif;
font-size: 22px;
font-weight: 700;
margin-bottom: 10px;
}
.form-desc-sub {
font-size: 14px;
color: var(--text-muted);
margin-bottom: 28px;
}
.form-group {
margin-bottom: 22px;
}
.form-row-inner {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.form-group label {
display: block;
font-size: 13px;
font-weight: 600;
margin-bottom: 8px;
color: var(--navy);
}
.form-group input, .form-group select, .form-group textarea {
width: 100%;
padding: 13px 18px;
font-size: 14.5px;
border: 1px solid var(--steel-border);
border-radius: 4px;
font-family: inherit;
color: var(--text-main);
background-color: var(--steel-light);
transition: var(--transition-smooth);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
outline: none;
border-color: var(--orange);
background-color: var(--white);
box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.1);
}
.form-group textarea {
height: 120px;
resize: vertical;
}
.form-submit-btn {
width: 100%;
border: none;
padding: 16px;
}
.error-msg {
display: none;
color: #DC2626;
font-size: 12px;
margin-top: 6px;
font-weight: 500;
}
.success-toast {
display: none;
background-color: #DEF7EC;
color: #03543F;
padding: 14px;
border-radius: 4px;
font-size: 14px;
text-align: center;
margin-top: 18px;
font-weight: 500;
border: 1px solid #BCF0DA;
}
/* --- CORPORATE FOOTER --- */
.corporate-footer {
background-color: var(--navy-dark);
color: rgba(255, 255, 255, 0.65);
padding: 80px 0 0;
border-top: 4px solid var(--orange);
}
.footer-grid {
display: grid;
grid-template-columns: 1.25fr 0.75fr 1fr;
gap: 64px;
padding-bottom: 56px;
}
.footer-logo {
font-size: 24px;
font-weight: 700;
color: var(--white);
}
.footer-logo-accent {
font-family: 'IBM Plex Mono', monospace;
font-size: 14px;
color: var(--steel-light);
font-weight: 400;
margin-left: 4px;
}
.footer-brand-tagline {
font-size: 14.5px;
margin-top: 16px;
color: var(--white);
}
.parent-division-notice {
font-size: 12px;
margin-top: 10px;
color: rgba(255, 255, 255, 0.4);
}
.footer-links-column h5, .footer-legal-column h5 {
color: var(--white);
font-family: 'Inter', sans-serif;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 24px;
font-weight: 700;
}
.foot-nav-links {
list-style: none;
}
.foot-nav-links li {
margin-bottom: 12px;
}
.foot-nav-links a {
color: rgba(255, 255, 255, 0.65);
text-decoration: none;
font-size: 14.5px;
transition: var(--transition-smooth);
}
.foot-nav-links a:hover {
color: var(--orange);
padding-left: 4px;
}
.footer-legal-column p {
font-size: 14px;
line-height: 1.7;
}
.footer-bottom-bar {
border-top: 1px solid rgba(255, 255, 255, 0.08);
padding: 28px 0;
}
.bottom-bar-inner {
display: flex;
justify-content: space-between;
font-size: 13px;
color: rgba(255, 255, 255, 0.4);
}
.technical-stamp {
font-family: 'IBM Plex Mono', monospace;
}
/* --- FLOATING COMMUNICATOR --- */
.floating-whatsapp-trigger {
position: fixed;
bottom: 28px;
right: 28px;
background-color: #25D366;
width: 56px;
height: 56px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
z-index: 999;
transition: var(--transition-smooth);
}
.floating-whatsapp-trigger:hover {
transform: scale(1.1) rotate(8deg);
background-color: #20BA5A;
}
/* --- ANIMATION FRAMEWORKS (REVEAL ON SCROLL) --- */
.cascade-animate, .fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cascade-animate.active, .fade-in-up.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}
/* --- RESPONSIVE MEDIA BREAKPOINTS --- */
@media (max-width: 1024px) {
.grid-4col { grid-template-columns: repeat(2, 1fr); }
.grid-3col { grid-template-columns: repeat(2, 1fr); }
.hero-inner { grid-template-columns: 1fr; gap: 56px; padding-bottom: 240px; text-align: center; }
.hero-content h1 { font-size: 44px; }
.eyebrow-tag { justify-content: center; }
.hero-actions { justify-content: center; }
.eng-split-panel { grid-template-columns: 1fr; }
.eng-panel-left { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 48px; text-align: center; }
.stats-grid { grid-template-columns: repeat(2, 1fr); }
.stat-item { border-right: none; padding-bottom: 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-left: 0; text-align: center; }
.stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; padding-bottom: 0; }
.timeline-wrapper { padding: 20px 0; }
}
@media (max-width: 768px) {
.grid-2col { grid-template-columns: 1fr; }
.grid-3col { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; gap: 40px; }
.form-row-inner { grid-template-columns: 1fr; }
.menu-toggle { display: flex; }
.nav-menu {
position: absolute;
top: 85px;
left: 0;
right: 0;
background-color: var(--white);
flex-direction: column;
gap: 0;
box-shadow: var(--shadow-lg);
display: none;
border-top: 1px solid var(--steel-border);
}
.nav-menu.open {
display: flex;
}
.nav-link {
padding: 18px 24px;
border-bottom: 1px solid var(--steel-light);
width: 100%;
}
.nav-link::after {
display: none;
}
.mobile-only {
display: block;
}
.nav-actions .btn {
display: none;
}
.bottom-bar-inner {
flex-direction: column;
gap: 12px;
text-align: center;
}
.main-header.scrolled .nav-menu {
top: 75px;
}
.floating-badge {
bottom: -16px;
right: 16px;
}
.eng-services-matrix {
grid-template-columns: 1fr;
}
.timeline-wrapper {
flex-direction: column;
align-items: flex-start;
padding-left: 24px;
}
.timeline-wrapper::before {
top: 0;
bottom: 0;
left: 45px;
width: 2px;
height: auto;
}
.timeline-node {
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 32px;
text-align: left;
}
.timeline-node:last-child {
margin-bottom: 0;
}
.node-number {
margin: 0;
}
}
/* --- FINALIZE OFFLINE-SAFE HERO BILLBOARD --- */
.hero-industrial-billboard {
  display: block !important;
  width: 100% !important;
  height: 440px !important;
  min-height: 440px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: var(--shadow-lg) !important;
  background-color: #07263b !important;
  background-image: 
    linear-gradient(rgba(7, 38, 59, 0.4), rgba(11, 60, 93, 0.7)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath fill-rule='evenodd' d='M0 0h40v40H0V0zm1 1h38v38H1V1zm40 40h40v40H40V40zm1 1h38v38H41V41zM0 40h40v40H0V40zm1 1h38v38H1V41zm40-40h40v40H40V0zm1 1h38v38H41V1z'/%3E%3C/g%3E%3C/svg%3E") !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative !important;
  visibility: visible !important;
  opacity: 1 !important;
}