@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
    --navy: #0a1628;
    --steel: #1e3a5f;
    --gold: #c9a84c;
    --light-gold: #e8c96d;
    --grey: #8892a4;
    --white: #f5f7fa;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f7fa;
    color: #222;
}

/* NAVBAR */
#mainNavbar {
    background-color: var(--navy);
    border-bottom: 2px solid var(--gold);
    padding: 12px 0;
}

.brand-main {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.brand-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    color: #aaa;
    display: block;
    letter-spacing: 3px;
}

.nav-link {
    color: #ccc !important;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
    padding: 6px 12px !important;
}

.nav-link:hover,
.nav-link.dropdown-toggle:focus {
    color: var(--gold) !important;
}

/* NAVBAR DROPDOWNS */
.nav-item.dropdown {
    position: relative;
}

/* Hidden by default, shown on hover (desktop) */
.dropdown-menu-dark-custom {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    background-color: #0d1f3c;
    border: 1px solid #1e3a5f;
    border-top: 2px solid var(--gold);
    border-radius: 0 0 4px 4px;
    padding: 4px 0;
    min-width: 210px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    list-style: none;
    margin: 0;
}

.nav-item.dropdown:hover .dropdown-menu-dark-custom {
    display: block;
}

.nav-caret {
    font-size: 0.65rem;
    vertical-align: middle;
    margin-left: 2px;
    transition: transform 0.2s;
}

.nav-item.dropdown:hover .nav-caret {
    transform: rotate(180deg);
}

.dropdown-menu-dark-custom .dropdown-item {
    display: block;
    color: #c0cad8;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 18px 10px 15px;
    border-left: 3px solid transparent;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.dropdown-menu-dark-custom .dropdown-item:hover {
    background-color: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    border-left-color: var(--gold);
}

/* Mobile — always visible as indented list */
@media (max-width: 991px) {
    .dropdown-menu-dark-custom {
        display: block;
        position: static;
        background: transparent;
        border: none;
        border-left: 2px solid var(--gold);
        border-radius: 0;
        padding: 0;
        margin: 2px 0 6px 14px;
        box-shadow: none;
        min-width: unset;
    }
    .dropdown-menu-dark-custom .dropdown-item {
        padding: 6px 12px;
        font-size: 0.78rem;
        border-left: none;
    }
    .dropdown-menu-dark-custom .dropdown-item:hover {
        background: transparent;
        color: var(--gold);
    }
}

/* FOOTER */
.footer {
    background-color: var(--navy);
    border-top: 2px solid var(--gold);
    color: #c0cad8;
}

.footer-brand {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 1rem;
}

.footer-heading {
    color: #ffffff;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-link {
    color: #c0cad8;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 2;
    display: block;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-divider {
    border-color: #1e3a5f;
}

.footer p,
.footer .text-muted {
    color: #c0cad8 !important;
}

.footer .small {
    color: #c0cad8 !important;
}

.footer h5,
.footer h6 {
    color: #ffffff;
}


/* ── HERO ── */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, #0d2244 60%, #122a4a 100%);
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-tagline {
    color: var(--gold);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    letter-spacing: 1px;
}

.gold { color: var(--gold); }

.hero-subtitle {
    color: #a0b0c8;
    font-size: 1.1rem;
    max-width: 580px;
    line-height: 1.7;
    margin-top: 16px;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 28px;
    border: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
}

.btn-gold:hover {
    background-color: var(--light-gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* ── HERO ANIMATIONS ── */

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Canvas fills the hero */
#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Text entrance — staggered fade up */
.hero-anim-1, .hero-anim-2, .hero-anim-3, .hero-anim-4 {
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
}
.hero-anim-1 { animation-delay: 0.2s; }
.hero-anim-2 { animation-delay: 0.5s; }
.hero-anim-3 { animation-delay: 0.8s; }
.hero-anim-4 { animation-delay: 1.1s; }

/* ── STATS STRIP ── */
.stats-strip {
    background-color: var(--steel);
    padding: 28px 0;
    border-bottom: 2px solid var(--gold);
}

.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
}

.stat-label {
    color: #a0b0c8;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.stat-item {
    padding: 10px 0;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

/* ── SECTION COMMON ── */
.section-tag {
    color: var(--gold);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ── ABOUT CARDS ── */
.about-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-card {
    background: #fff;
    border: 1px solid #e0e8f0;
    border-left: 3px solid var(--gold);
    padding: 20px;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.about-card i {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.about-card h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.about-card p {
    font-size: 0.82rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ── SERVICES ── */
.services-section {
    background-color: #eef2f7;
}

.service-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 4px;
    border-top: 3px solid var(--gold);
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 14px;
}

.service-card h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, var(--navy), var(--steel));
    border-top: 3px solid var(--gold);
}

.cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.cta-sub {
    color: #a0b0c8;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}











/* ── PAGE HEADER ── */
.page-header {
    background: linear-gradient(135deg, var(--navy), var(--steel));
    border-bottom: 3px solid var(--gold);
    padding: 60px 0 40px;
    color: #fff;
}

.page-header-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.page-header-sub {
    color: #a0b0c8;
    font-size: 1rem;
    margin: 0;
}

.breadcrumb-dark .breadcrumb-item a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb-dark .breadcrumb-item.active,
.breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before {
    color: #a0b0c8;
}

/* ── SERVICES LISTING CARDS ── */
.service-detail-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #dde4ef;
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    color: inherit;
}

.sdc-icon {
    font-size: 2.2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.sdc-body h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.sdc-body p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.sdc-link {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ── SERVICE DETAIL ALTERNATING LAYOUT ── */
.svc-section-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.svc-img-placeholder {
    width: 100%;
    height: 300px;
    background: #eef2f7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #c0cad8;
}

/* ── SERVICE DETAIL PAGES ── */
.lead-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.service-sub-section {
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e8f0;
}

.service-sub-section:last-of-type {
    border-bottom: none;
}

.sub-service-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.image-placeholder-row {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.img-placeholder {
    flex: 1;
    min-width: 200px;
    min-height: 180px;
    background: #eef2f7;
    border: 2px dashed #c0cad8;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8892a4;
    font-size: 0.8rem;
    gap: 8px;
}

.img-placeholder i {
    font-size: 2rem;
    color: #c0cad8;
}

/* ── MATERIAL TESTING ── */
.test-category-card {
    background: #fff;
    border: 1px solid #dde4ef;
    border-top: 3px solid var(--gold);
    border-radius: 4px;
    padding: 24px;
    text-align: center;
    height: 100%;
}

.test-category-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.test-category-card h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.test-category-card p {
    font-size: 0.84rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.equipment-table thead {
    background-color: var(--navy);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.equipment-table tbody tr:hover {
    background-color: #f0f5fb;
}

.equipment-table td, .equipment-table th {
    font-size: 0.84rem;
    vertical-align: middle;
    padding: 10px 12px;
}

.test-type {
    background-color: #eef2f7;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* ── OPTRONICS ── */
.nvg-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nvg-list li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.nvg-list li i {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.lab-facility-chip {
    background: #eef2f7;
    border: 1px solid #c0cad8;
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lab-facility-chip i {
    color: var(--gold);
}

/* ── GENERAL ENGINEERING ── */
.gen-eng-card {
    background: #fff;
    border: 1px solid #dde4ef;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.gen-eng-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.gen-eng-img-placeholder {
    height: 200px;
    background: #eef2f7;
    border-bottom: 2px dashed #c0cad8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8892a4;
    font-size: 0.8rem;
    gap: 8px;
}

.gen-eng-img-placeholder i {
    font-size: 2.5rem;
    color: #c0cad8;
}

.gen-eng-body {
    padding: 20px;
}

.gen-eng-body h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.gen-eng-body p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ── BACK BUTTON ── */
.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 2px;
    background: transparent;
    transition: all 0.2s;
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: #fff;
}


/* ── PRODUCTS CATEGORY CARDS ── */
.prod-category-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #dde4ef;
    border-top: 4px solid var(--gold);
    border-radius: 4px;
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.prod-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    color: inherit;
}

.pcc-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.pcc-count {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 6px;
}

.pcc-body h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.pcc-body p {
    font-size: 0.86rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* ── PRODUCT LISTING CARDS ── */
.prod-card {
    background: #fff;
    border: 1px solid #dde4ef;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.prod-card-img {
    height: 200px;
    background: #eef2f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a0b0c8;
    font-size: 0.8rem;
    gap: 8px;
    border-bottom: 2px dashed #c0cad8;
}

.prod-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.prod-card-img i {
    font-size: 2.5rem;
    color: #c0cad8;
}

.prod-card-body {
    padding: 20px;
}

.prod-card-body h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.prod-card-body p {
    font-size: 0.84rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 14px;
}

.btn-sm.btn-gold {
    padding: 7px 18px;
    font-size: 0.8rem;
}

/* ── PRODUCT DETAIL PAGE ── */
.product-detail-img {
    height: 380px;
    background: #eef2f7;
    border: 2px dashed #c0cad8;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8892a4;
    font-size: 0.9rem;
    gap: 10px;
}

.product-detail-img i {
    font-size: 3.5rem;
    color: #c0cad8;
}

.specs-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 6px;
    margin-bottom: 12px;
}

.specs-table td {
    font-size: 0.85rem;
    padding: 8px 12px;
    vertical-align: top;
    border-color: #e8eef5;
}

.spec-key {
    font-weight: 600;
    color: var(--navy);
    width: 40%;
    background-color: #f5f8fc;
}

.spec-val {
    color: #444;
}

/* ════════════════════════════════════════
   RESPONSIVE STYLES
   ════════════════════════════════════════ */

/* ── Tablet  (≤ 991px) ── */
@media (max-width: 991px) {

    /* Hero */
    .hero-section { min-height: 70vh; }
    .hero-content  { padding: 60px 0; }

    /* Navbar — dropdowns always visible inside collapsed menu */
    .nav-item.dropdown { position: static; }

    /* About card grid becomes single column */
    .about-card-grid { grid-template-columns: 1fr 1fr; }

    /* Service alternating layout — stack vertically */
    .svc-section-img,
    .svc-img-placeholder { height: 240px; }

    /* Product detail image */
    .product-detail-img {
        height: 280px;
        margin-bottom: 8px;
    }

    /* Specs table key column */
    .spec-key { width: 45%; }
}

/* ── Large phones / small tablets  (≤ 767px) ── */
@media (max-width: 767px) {

    /* Hero */
    .hero-section  { min-height: 60vh; }
    .hero-content  { padding: 50px 20px; }
    .hero-title    { font-size: clamp(2.2rem, 9vw, 3.2rem); }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-buttons  { display: flex; flex-direction: column; gap: 12px; }
    .hero-buttons .btn { width: 100%; text-align: center; margin: 0 !important; }

    /* Page header */
    .page-header { padding: 40px 0 28px; }

    /* Section titles */
    .section-title { font-size: 1.9rem; }
    .cta-title     { font-size: 1.9rem; }

    /* About card grid — 1 column on phones */
    .about-card-grid { grid-template-columns: 1fr; }

    /* Stats */
    .stat-number { font-size: 1.9rem; }
    .stat-item   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:last-child { border-bottom: none; }

    /* Service cards */
    .service-card { padding: 22px 18px; }

    /* Service detail images */
    .svc-section-img,
    .svc-img-placeholder { height: 200px; }

    /* Service sub-section spacing */
    .service-sub-section { margin-bottom: 32px; padding-bottom: 28px; }
    .sub-service-title   { font-size: 1.4rem; }

    /* Lead text */
    .lead-text { font-size: 0.95rem; }

    /* Product category card */
    .prod-category-card { padding: 22px 18px; }
    .pcc-body h4        { font-size: 1.25rem; }

    /* Product listing card image */
    .prod-card-img,
    .prod-card-img img  { height: 170px; }

    /* Product detail page */
    .product-detail-img { height: 230px; }

    /* Specs table — remove fixed key width on small screens */
    .spec-key { width: auto; min-width: 120px; }

    /* CTA buttons */
    .cta-section .btn {
        display: block;
        width: 100%;
        margin: 6px 0 !important;
    }

    /* Footer */
    .footer { text-align: center; }

    /* About page — trading tiles */
    .col-6 > [style*="background:#f5f7fa"] { padding: 20px 12px !important; }
}

/* ── Small phones  (≤ 480px) ── */
@media (max-width: 480px) {

    /* Hero */
    .hero-section  { min-height: 55vh; }
    .hero-title    { font-size: clamp(1.9rem, 10vw, 2.8rem); }
    .hero-tagline  { font-size: 0.75rem; letter-spacing: 3px; }

    /* Page header */
    .page-header        { padding: 32px 0 22px; }
    .page-header-title  { font-size: clamp(1.6rem, 8vw, 2.4rem); }
    .page-header-sub    { font-size: 0.88rem; }

    /* Breadcrumb — smaller */
    .breadcrumb { font-size: 0.78rem; }

    /* Navbar brand */
    .brand-main { font-size: 1.1rem; }
    .brand-sub  { font-size: 0.65rem; }

    /* Sections */
    .section-title { font-size: 1.6rem; }
    .section-tag   { font-size: 0.72rem; }

    /* Stats strip */
    .stats-strip   { padding: 20px 0; }
    .stat-number   { font-size: 1.7rem; }
    .stat-label    { font-size: 0.7rem; }

    /* Product/solution cards */
    .prod-card-body h5  { font-size: 1rem; }
    .pcc-body h4        { font-size: 1.15rem; }
    .pcc-icon           { font-size: 2rem; }

    /* Specs table */
    .specs-table td { font-size: 0.78rem; padding: 6px 8px; }
    .spec-key       { min-width: 100px; }

    /* Detail page buttons — stack */
    .d-flex.gap-3.flex-wrap { flex-direction: column; }
    .d-flex.gap-3.flex-wrap .btn { width: 100%; }

    /* Service images */
    .svc-section-img,
    .svc-img-placeholder { height: 170px; }

    /* About card */
    .about-card { padding: 16px; }

    /* Lab chips */
    .lab-facility-chip { font-size: 0.76rem; padding: 8px 10px; }

    /* NVG list */
    .nvg-list li { font-size: 0.82rem; }

    /* CTA */
    .cta-title { font-size: 1.5rem; }
    .cta-sub   { font-size: 0.9rem; }
}
