:root {
    --navy: #ffffff;
    --navy-light: #f0f5ff;
    --navy-lighter: #e6f0ff;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --blue-light: #3b82f6;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --border-color: rgba(15, 23, 42, 0.1);

    --font-display: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(to bottom, #ffffff 0%, #e0f2fe 50%, #3b82f6 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    line-height: 0.95;
    font-weight: 700;
}

.font-mono { font-family: var(--font-mono); }
.text-blue  { color: var(--blue); }
.text-orange { color: #ea580c; }

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.02;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Hide all decorative animated panels — they served scroll-animation purposes only */
.hero-panel,
.disciplines-panel,
.quality-panel,
.industries-panel,
.partnership-panel,
.process-panel,
.certifications-panel,
.facility-panel,
.strip-panel {
    display: none;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navigation {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    padding: 1rem 0;
}

.navigation.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.rounded-image {
    border-radius: 15px;
    width: 200px;
    height: auto;
}

.nav-links { display: flex; gap: 2rem; }

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--blue); }

.nav-cta {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--blue);
    color: var(--blue);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.nav-cta:hover { background: var(--blue); color: white; }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px; height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active { opacity: 1; visibility: visible; }

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

.mobile-cta {
    padding: 0.75rem 2rem;
    background: var(--blue);
    color: white !important;
    border-radius: 0.25rem;
    margin-top: 1rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    color: white;
}

.btn svg { transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: rgba(106, 206, 252, 0.9); color: rgb(0,0,0); }
.btn-primary:hover { background: rgba(106, 206, 252, 0.9); }

.btn-outline {
    border: 1px solid rgba(15, 23, 42, 0.25);
    color: var(--text-primary);
    background: transparent;
}
.btn-outline:hover { background: rgba(15, 23, 42, 0.05); }

.btn-navy { background: var(--blue); color: white; }
.btn-navy:hover { background: var(--blue-dark); }

.btn-outline-orange {
    border: 1px solid #ea580c;
    color: #ea580c;
    background: transparent;
}
.btn-outline-orange:hover { background: rgba(234, 88, 12, 0.1); }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    width: 100%;
    height: 115vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 1; /* visible by default */
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7), rgba(59,130,246,0.3));
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    opacity: 1; /* visible by default */
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 1;
}

.label-line {
    width: 72px; height: 1px;
    background: rgba(15, 23, 42, 0.2);
}

.hero-label span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 5rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ========================================
   CAPABILITY TRIPTYCH
   ======================================== */
.capabilities {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: transparent;
}

.capability-strips { display: flex; height: 100%; }

.capability-strip {
    position: relative;
    height: 100%;
    overflow: hidden;
    flex: 1;
}

.capability-strip:nth-child(1) { flex: 1.03; }
.capability-strip:nth-child(2) { flex: 1; }

.strip-image { position: absolute; inset: 0; }

.strip-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.02); }
}

.strip-image::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.2);
}

.strip-content {
    position: absolute;
    bottom: 8vh; left: 2.5vw;
    width: 80%;
    z-index: 4;
    opacity: 1; /* always visible */
}

.strip-content h3 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    color: rgb(0,0,0);
    margin-bottom: 0.75rem;
    white-space: pre-line;
    /* white background pill so text reads over any image */
    background: rgba(255,255,255,0.75);
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 0.25rem;
}

.strip-content p {
    font-size: 0.875rem;
    color: rgba(0,0,0,0.9);
    line-height: 1.6;
    background: rgba(255,255,255,0.65);
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
}

.capability-strip:not(:last-child)::after {
    content: '';
    position: absolute; right: 0; top: 0;
    width: 1px; height: 100%;
    background: rgba(15,23,42,0.1);
    z-index: 5;
}

/* ========================================
   DISCIPLINES SECTION
   ======================================== */
.disciplines {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.disciplines-bg { position: absolute; inset: 0; z-index: 1; }

.disciplines-bg img { width: 100%; height: 100%; object-fit: cover; }

.disciplines-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7), rgba(59,130,246,0.2));
}

.disciplines-content {
    position: relative;
    z-index: 4;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    overflow: visible;
    opacity: 1;
}

.disciplines-content h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: rgb(0,0,0);
    margin-bottom: 1.5rem;
}

.disciplines-content p {
    font-size: 1rem;
    color: rgba(0,0,0,0.9);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Services Reveal */
.services-reveal-container {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    gap: 0;
}

.services-btn {
    position: relative; z-index: 2;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    white-space: nowrap; overflow: hidden;
}

.services-btn .btn-text { display: inline-block; transition: opacity 0.3s ease; }

.services-list {
    position: relative;
    max-width: 0; opacity: 0; overflow: hidden;
    transform: translateX(-20px);
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    border: 1px solid transparent;
    margin-left: 0;
}

.services-list ul {
    list-style: none; padding: 0.8rem; margin: 0; min-width: 400px;
}

.services-list li {
    color: var(--text-secondary); font-size: 0.9rem; line-height: 1.3;
    padding: 0.5rem 0; padding-left: 1.25rem;
    position: relative; opacity: 0;
    transform: translateX(10px); transition: all 0.3s ease;
}

.services-list li::before {
    content: '→'; position: absolute; left: 0; top: 0.5rem;
    color: var(--blue); font-size: 0.75rem;
}

.services-list li:not(:last-child) { border-bottom: 1px solid var(--border-color); }

.services-reveal-container:hover .services-btn {
    transform: scale(0.95); background: var(--blue-dark);
}
.services-reveal-container:hover .services-btn .btn-text { opacity: 0.8; }
.services-reveal-container:hover .services-list {
    max-width: 500px; opacity: 1; transform: translateX(0);
    margin-left: 1rem; border-color: var(--border-color);
}
.services-reveal-container:hover .services-list li { opacity: 1; transform: translateX(0); }
.services-reveal-container:hover .services-list li:nth-child(1) { transition-delay: 0.10s; }
.services-reveal-container:hover .services-list li:nth-child(2) { transition-delay: 0.15s; }
.services-reveal-container:hover .services-list li:nth-child(3) { transition-delay: 0.20s; }
.services-reveal-container:hover .services-list li:nth-child(4) { transition-delay: 0.25s; }
.services-reveal-container:hover .services-list li:nth-child(5) { transition-delay: 0.30s; }
.services-reveal-container:hover .services-list li:nth-child(6) { transition-delay: 0.35s; }

@media (max-width: 768px) {
    .services-reveal-container { flex-direction: column; width: 100%; }
    .services-list {
        position: static; max-width: 100%; max-height: 0;
        transform: translateY(-10px); margin-left: 0; margin-top: 0;
    }
    .services-list ul { min-width: unset; width: 100%; }
    .services-reveal-container:hover .services-list {
        max-width: 100%; max-height: 1200px;
        transform: translateY(0); margin-left: 0; margin-top: 1rem;
    }
    .services-reveal-container:hover .services-btn { width: 100%; justify-content: center; }
}

/* ========================================
   QUALITY SYSTEMS
   ======================================== */
.quality {
    position: relative;
    width: 100%; height: 100vh;
    overflow: hidden; display: flex; align-items: center;
}

.quality-bg { position: absolute; inset: 0; z-index: 1; }
.quality-bg img { width: 100%; height: 100%; object-fit: cover; }

.quality-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.8), rgba(255,255,255,0.5));
}

.quality-content {
    position: relative; z-index: 4;
    max-width: 1400px; margin: 0 auto;
    padding: 0 2rem; width: 100%; opacity: 1;
}

.quality-content h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--text-primary); margin-bottom: 1.5rem;
}

.quality-content p {
    font-size: 1rem; color: var(--text-secondary);
    max-width: 450px; margin-bottom: 2rem; line-height: 1.7;
}

/* ========================================
   INDUSTRIES SERVED
   ======================================== */
.industries {
    position: relative;
    width: 100%; height: 100vh;
    overflow: hidden; display: flex;
    align-items: center; justify-content: flex-end;
}

.industries-bg { position: absolute; inset: 0; z-index: 1; }
.industries-bg img { width: 100%; height: 100%; object-fit: cover; }

.industries-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to left, rgba(255,255,255,0.9), rgba(255,255,255,0.6), rgba(59,130,246,0.2));
}

.industries-content {
    position: relative; z-index: 4;
    max-width: 1400px; margin: 0 auto;
    padding: 0 2rem; width: 100%; text-align: right; opacity: 1;
}

.industries-content h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: rgb(0,0,0); margin-bottom: 1.5rem;
}

.industries-content p {
    font-size: 1rem; color: rgba(0,0,0,0.9);
    max-width: 450px; margin-bottom: 2rem;
    line-height: 1.7; margin-left: auto;
}

/* ========================================
   PARTNERSHIP CTA
   ======================================== */
.partnership {
    position: relative;
    width: 100%; height: 100vh;
    overflow: hidden; display: flex; align-items: center;
}

.partnership-bg { position: absolute; inset: 0; z-index: 1; }
.partnership-bg img { width: 100%; height: 100%; object-fit: cover; }

.partnership-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.6), rgba(59,130,246,0.3));
}

.partnership-content {
    position: relative; z-index: 4;
    max-width: 1400px; margin: 0 auto;
    padding: 0 2rem; width: 100%; opacity: 1;
}

.partnership-content h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: rgb(0,0,0); margin-bottom: 1.5rem;
}

.partnership-content p {
    font-size: 1rem; color: rgba(0,0,0,0.9);
    max-width: 450px; margin-bottom: 2rem; line-height: 1.7;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about { padding: 8rem 0; background: rgba(255,255,255,0.5); }

.about-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; margin-bottom: 4rem;
}

.about-text .section-label {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}

.about-text h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--text-primary); margin-bottom: 1.5rem;
}

.about-text p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 2rem; }

.about-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; align-content: start;
}

.stat-card {
    padding: 1.5rem; background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    opacity: 1;
}

.stat-value {
    font-family: var(--font-display); font-size: 2rem;
    font-weight: 700; color: var(--blue); margin-bottom: 0.5rem;
}

.stat-label { font-size: 0.875rem; color: var(--text-secondary); }

.facility-image {
    position: relative; width: 100%; height: 50vh;
    border-radius: 0.5rem; overflow: hidden;
}

.facility-image img { width: 100%; height: 100%; object-fit: cover; }

.facility-caption { position: absolute; bottom: 1.5rem; left: 1.5rem; }

.facility-caption span {
    font-size: 0.75rem; color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 0.12em;
}

.facility-caption p { color: rgb(255,255,255); margin-top: 0.5rem; font-size: 1.125rem; }

/* ========================================
   EQUIPMENT GALLERY
   ======================================== */
.equipment { padding: 8rem 0; background: rgba(255,255,255,0.7); }

.equipment-container {
    max-width: 1400px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}

.equipment-header { opacity: 1; }

.equipment-header .section-label {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}

.label-line.bg-orange { background: #ea580c; }

.equipment-header h2 {
    font-size: clamp(2rem, 3vw, 3rem); color: var(--text-primary); margin-bottom: 1rem;
}

.equipment-header p { color: var(--text-secondary); }

.equipment-cards { display: flex; flex-direction: column; gap: 1rem; }

.equipment-card {
    display: flex; gap: 1rem; padding: 1rem;
    background: white; border: 1px solid var(--border-color);
    border-radius: 0.5rem; cursor: pointer;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
}

.equipment-card-link { text-decoration: none; display: block; color: inherit; }

.equipment-card-link:hover .equipment-card {
    border-color: var(--blue);
    transform: translateX(5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.card-image {
    width: 120px; height: 90px;
    border-radius: 0.25rem; overflow: hidden; flex-shrink: 0;
}

.card-image img { width: 100%; height: 100%; object-fit: cover; }

.card-content { display: flex; flex-direction: column; justify-content: center; }

.card-icon { color: var(--blue); margin-bottom: 0.5rem; }

.card-content h3 {
    font-size: 1rem; color: var(--text-primary);
    margin-bottom: 0.25rem; transition: color 0.3s ease;
}

.equipment-card:hover .card-content h3 { color: var(--blue); }

.card-content p { font-size: 0.875rem; color: var(--text-secondary); }

/* ========================================
   PROCESS WORKFLOW
   ======================================== */
.process {
    position: relative; width: 100%; height: 100vh;
    overflow: hidden; display: flex;
    align-items: center; justify-content: flex-end;
}

.process-bg { position: absolute; inset: 0; z-index: 1; }
.process-bg img { width: 100%; height: 100%; object-fit: cover; }

.process-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to left, rgba(255,255,255,0.9), rgba(255,255,255,0.6), rgba(59,130,246,0.2));
}

.process-content {
    position: relative; z-index: 4;
    max-width: 1400px; margin: 0 auto;
    padding: 0 2rem; width: 100%; text-align: right; opacity: 1;
}

.process-content h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--text-primary); margin-bottom: 2rem;
}

.process-steps {
    display: flex; flex-direction: column; gap: 1.5rem;
    margin-bottom: 2rem; margin-left: auto; max-width: 400px;
}

.process-step { display: flex; gap: 1rem; text-align: left; opacity: 1; }

.step-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(37,99,235,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); flex-shrink: 0;
}

.step-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; }

.step-number { font-family: var(--font-mono); font-size: 0.75rem; color: var(--blue); }

.step-content h3 { font-size: 1rem; color: var(--text-primary); }
.step-content p  { font-size: 0.875rem; color: var(--text-secondary); }

/* ========================================
   CERTIFICATIONS
   ======================================== */
.certifications {
    position: relative; width: 100%; height: 100vh;
    overflow: hidden; display: flex; align-items: center;
}

.certifications-bg { position: absolute; inset: 0; z-index: 1; }
.certifications-bg img { width: 100%; height: 100%; object-fit: cover; }

.certifications-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.8), rgba(255,255,255,0.5), rgba(59,130,246,0.2));
}

.certifications-content {
    position: relative; z-index: 4;
    max-width: 1400px; margin: 0 auto;
    padding: 0 2rem; width: 100%; opacity: 1;
}

.certifications-content h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: rgb(0,0,0); margin-bottom: 2rem;
}

.certifications-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1rem; max-width: 400px; margin-bottom: 2rem;
}

.cert-card { padding: 1rem; background: var(--blue); border-radius: 0.5rem; }
.cert-card svg { color: white; margin-bottom: 0.5rem; }
.cert-card h3 { font-size: 0.875rem; color: white; margin-bottom: 0.25rem; }
.cert-card p  { font-size: 0.75rem; color: rgba(255,255,255,0.8); }

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact { padding: 8rem 0; background: rgba(255,255,255,0.8); }

.contact-container {
    max-width: 1400px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}

.contact-form-section { opacity: 1; }

.contact-form-section .section-label {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}

.contact-form-section h2 {
    font-size: clamp(3rem, 3vw, 3rem); color: var(--text-primary); margin-bottom: 2rem;
}

.contact-info { margin-bottom: 2rem; font-size: 1.1rem; }

.contact-item { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; }

.contact-item svg {
    color: var(--blue); margin-top: 0.25rem; flex-shrink: 0;
    width: 28px; height: 28px;
}

.contact-item p { color: var(--text-secondary); font-size: 1.25rem; line-height: 1.6; }

.contact-map {
    position: relative; border-radius: 0.5rem; overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); opacity: 1;
}

.contact-map img { width: 100%; height: 100%; object-fit: cover; }

.map-card {
    position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
    padding: 1rem; background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px); border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    display: flex; align-items: center; gap: 0.75rem;
}

.map-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(37,99,235,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); flex-shrink: 0;
}

.map-info strong { display: block; color: var(--text-primary); font-size: 0.875rem; }
.map-info span   { color: var(--text-secondary); font-size: 0.75rem; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 4rem 0 2rem;
    background: rgba(255,255,255,0.9);
    border-top: 1px solid var(--border-color);
}

.footer-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
}

.footer-brand p { color: var(--text-secondary); font-size: 0.875rem; }

.footer-links h4,
.footer-contact h4 { font-size: 1rem; color: var(--text-primary); margin-bottom: 1rem; }

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    color: var(--text-secondary); text-decoration: none;
    font-size: 0.875rem; transition: color 0.3s ease;
    display: flex; align-items: center; gap: 0.5rem;
}

.footer-links a::before {
    content: ''; width: 0; height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid var(--blue);
    opacity: 0; transition: all 0.3s ease;
}

.footer-links a:hover { color: var(--blue); }
.footer-links a:hover::before { opacity: 1; }

.footer-contact p { color: var(--text-secondary); font-size: 0.875rem; margin-bottom: 0.25rem; }
.footer-address { font-size: 0.75rem !important; margin-top: 1rem; }

.footer-bottom {
    padding-top: 2rem; border-top: 1px solid var(--border-color);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}

.footer-bottom p { color: var(--text-muted); font-size: 0.75rem; }

.footer-legal { display: flex; gap: 1.5rem; }

.footer-legal a {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.75rem; transition: color 0.3s ease;
}

.footer-legal a:hover { color: var(--text-secondary); }

/* ========================================
   PROJECTS SECTION
   ======================================== */
.projects { padding: 8rem 0; background: rgba(255,255,255,0.6); backdrop-filter: blur(10px); }

.projects-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.projects-header { text-align: center; margin-bottom: 4rem; }

.projects-header .section-label {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-bottom: 1.5rem;
}

.projects-header h2 {
    font-size: clamp(2rem, 3vw, 3rem); color: var(--text-primary); margin-bottom: 1rem;
}

.projects-header p {
    color: var(--text-secondary); font-size: 1.125rem;
    max-width: 600px; margin: 0 auto;
}

.projects-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.project-card-link { text-decoration: none; display: block; color: inherit; }

.project-card {
    background: white; border-radius: 1rem; overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    height: 100%; display: flex; flex-direction: column;
}

.project-card-link:hover .project-card {
    transform: translateY(-8px);
    border-color: var(--blue);
    box-shadow: 0 20px 40px -15px rgba(37,99,235,0.2);
}

.project-card-image { position: relative; width: 100%; height: 300px; overflow: hidden; }

.project-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.project-card-link:hover .project-card-image img { transform: scale(1.05); }

.project-card-content { padding: 2rem; flex: 1; display: flex; flex-direction: column; }

.project-card-content h3 {
    font-size: 1.5rem; color: var(--text-primary);
    margin-bottom: 1rem; transition: color 0.3s ease;
}

.project-card-link:hover .project-card-content h3 { color: var(--blue); }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-btn { display: flex; }

    .about-grid, .equipment-container, .contact-container {
        grid-template-columns: 1fr;
    }

    .about-stats { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }

    .capability-strips { flex-direction: column; }
    .capability-strip  { height: 33.33%; }
    .strip-content     { bottom: 1rem; left: 1rem; width: 90%; }

    .certifications-grid { grid-template-columns: 1fr; }

    .disciplines-content, .quality-content,
    .partnership-content, .certifications-content { padding: 0 1.5rem; }

    .industries-content, .process-content {
        text-align: left; padding: 0 1.5rem;
    }

    .industries-content p, .process-content p { margin-left: 0; }
    .process-steps { margin-left: 0; }

    .projects-cards { grid-template-columns: 1fr; gap: 2rem; }
    .project-card-image { height: 250px; }

    .projects { padding: 4rem 0; }
    .project-card-content { padding: 1.5rem; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* Selection */
::selection { background: rgba(37,99,235,0.3); color: var(--text-primary); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ========================================
   ADDITIONAL COMPONENTS
   ======================================== */
:root {
    --glow-orange: rgba(234,88,12,0.4);
    --tech-blue: #f0f9ff;
    --border-dim: rgba(15,23,42,0.1);
}

.tech-team {
    background: linear-gradient(to bottom, #ffffff 0%, #e0f2fe 100%);
    min-height: 100vh; padding: 40px;
    overflow-x: hidden; color: var(--text-primary);
}

.hud-container {
    max-width: 1200px; margin: 0 auto; position: relative;
    border: 1px solid var(--border-dim); padding: 40px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.hud-header { border-bottom: 1px solid var(--border-dim); padding-bottom: 20px; margin-bottom: 60px; }

.back-link { color: var(--blue); text-decoration: none; font-size: 0.8rem; letter-spacing: 2px; }

.hud-title h1 { font-size: clamp(1.5rem, 5vw, 3rem); font-weight: 800; margin: 0; }

.hud-node {
    background: rgba(255,255,255,0.5); border-left: 4px solid var(--blue);
    padding: 20px; position: relative;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.hud-node:hover {
    background: rgba(37,99,235,0.05);
    box-shadow: -10px 0 20px rgba(37,99,235,0.2);
    transform: translateX(10px);
}

.hud-node .label { font-size: 0.65rem; color: var(--blue); display: block; margin-bottom: 10px; opacity: 0.7; }

.main-frame { width: fit-content; margin: 0 auto; padding: 30px 60px; }

.status-bar { height: 2px; background: var(--blue); width: 40px; margin-top: 15px; }

.tier-1::after, .tier-2::after {
    content: ''; display: block; width: 2px; height: 40px;
    background: linear-gradient(to bottom, var(--blue), transparent);
    margin: 0 auto;
}

.matrix-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2px; background: var(--border-dim);
    border: 1px solid var(--border-dim); margin-top: 40px;
}

.dept-node { background: white; border-left: none; border-bottom: 1px solid var(--border-dim); }
.dept-node.active { border-top: 2px solid var(--blue); }

.supervisor-tag {
    font-size: 0.6rem; margin-top: 15px; padding: 4px 8px;
    background: rgba(37,99,235,0.1); color: var(--blue); width: fit-content;
}

.floor-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 60px; }

.stat-box {
    border: 1px solid var(--border-dim); padding: 10px 20px;
    font-size: 0.7rem; background: rgba(255,255,255,0.5);
}

.stat-box::before { content: '■'; color: var(--blue); margin-right: 10px; }

.scanline {
    position: fixed; top: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(37,99,235,0.03) 50%, transparent 100%);
    background-size: 100% 4px; pointer-events: none; z-index: 10;
    animation: scan 8s linear infinite;
}

@keyframes scan { from { transform: translateY(-100%); } to { transform: translateY(100%); } }

/* Gallery Page */
.gallery-page { background: linear-gradient(to bottom, #ffffff 0%, #dbeafe 100%); min-height: 100vh; color: var(--text-primary); font-family: 'Inter', sans-serif; }

.gallery-header {
    padding: 2rem 4rem; border-bottom: 1px solid rgba(37,99,235,0.2);
    display: flex; justify-content: space-between; align-items: center;
}

.gallery-title { font-size: 2rem; font-weight: 300; letter-spacing: -0.02em; }
.gallery-title span { color: var(--blue); }

.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem; padding: 4rem; max-width: 1600px; margin: 0 auto;
}

.gallery-item {
    position: relative; background: white; border-radius: 0.5rem;
    overflow: hidden; border: 1px solid rgba(15,23,42,0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(37,99,235,0.3);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.gallery-item-image { width: 100%; height: 280px; object-fit: cover; display: block; }

.gallery-item-label {
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0.9));
    position: absolute; bottom: 0; left: 0; right: 0;
}

.gallery-item-label h3 { margin: 0 0 0.25rem; font-size: 1.125rem; color: var(--text-primary); font-weight: 500; }
.gallery-item-label p  { margin: 0; font-size: 0.875rem; color: var(--text-secondary); font-family: monospace; }

@media (max-width: 768px) {
    .gallery-grid   { grid-template-columns: 1fr; padding: 2rem; }
    .gallery-header { padding: 1.5rem 2rem; }
}