/* ============================================================
   Keep TechIN — New B2B theme (inspired by itdevicesonline.com)
   Loaded AFTER style.css to override the legacy look.
   ============================================================ */

:root {
    --brand-navy: #0f1d36;
    --brand-navy-2: #16264a;
    --brand-blue: #2bb6e6;
    --brand-blue-dark: #1d8fb2;
    --brand-accent: #ff7a00;
    --text-dark: #1f2937;
    --text-body: #4b5563;
    --text-muted: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f7f9fc;
    --bg-soft: #eef2f7;
    --border-soft: #e5e9f0;
    --shadow-sm: 0 2px 6px rgba(15, 29, 54, .06);
    --shadow-md: 0 8px 24px rgba(15, 29, 54, .08);
    --shadow-lg: 0 18px 40px rgba(15, 29, 54, .12);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: all .25s ease;
}

/* ---------- Base resets that override style.css ---------- */
body {
    font-family: 'Poppins', sans-serif !important;
    color: var(--text-body) !important;
    background: var(--bg-white) !important;
    font-size: 15px;
    line-height: 1.65;
}

a { color: var(--brand-blue); transition: var(--transition); }
a:hover { color: var(--brand-blue-dark); text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.kt-section { padding: 80px 0; }
.kt-section-tight { padding: 50px 0; }
.kt-section-light { background: var(--bg-light); }

.kt-section-head { text-align: center; margin-bottom: 48px; }

/* Standard helper for "View All" button rows under card grids */
.kt-section-foot { text-align: center; margin-top: 16px; }

/* Card grid wrapper — adds reliable vertical gap between wrapped rows */
.kt-grid > [class*="col-"] { margin-bottom: 30px; }
.kt-grid { margin-bottom: -30px; } /* offset the last row's mb so section padding stays accurate */
.kt-section-head .kt-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-blue);
    margin-bottom: 10px;
}
.kt-section-head h2 {
    font-size: 34px;
    margin: 0 0 10px;
    color: var(--text-dark);
}
.kt-section-head p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 15px;
}

/* ---------- Buttons ---------- */
.btn-kt {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .3px;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}
.btn-kt-primary {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
}
.btn-kt-primary:hover {
    background: var(--brand-blue-dark);
    border-color: var(--brand-blue-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-kt-outline {
    background: transparent;
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}
.btn-kt-outline:hover {
    background: var(--brand-blue);
    color: #fff;
}
.btn-kt-light {
    background: #fff;
    color: var(--brand-navy);
    border-color: #fff;
}
.btn-kt-light:hover { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }
.btn-kt-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.55);
}
.btn-kt-ghost:hover { background: #fff; color: var(--brand-navy); border-color: #fff; }

/* ============================================================
   1. TOP BAR
   ============================================================ */
.kt-topbar {
    background: var(--brand-navy);
    color: rgba(255,255,255,.85);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.kt-topbar a {
    color: rgba(255,255,255,.85);
    margin-right: 18px;
    text-decoration: none;
}
.kt-topbar a:hover { color: var(--brand-blue); }
.kt-topbar i { margin-right: 6px; color: var(--brand-blue); }
.kt-topbar .kt-topbar-right { text-align: right; }
.kt-topbar .kt-topbar-right a:last-child { margin-right: 0; }

.kt-topbar-social {
    display: inline-flex;
    gap: 6px;
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px solid rgba(255,255,255,.15);
}
.kt-topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    margin-right: 0 !important;
    font-size: 11px;
    transition: var(--transition);
}
.kt-topbar-social a:hover {
    background: var(--brand-blue);
    color: #fff;
}
.kt-topbar-social a i { margin-right: 0; color: inherit; }

/* ============================================================
   2. HEADER + MEGA MENU
   ============================================================ */
.kt-header {
    background: #fff;
    box-shadow: 0 1px 0 var(--border-soft);
    position: relative;
    z-index: 999;
}
.kt-header.kt-header-stuck {
    position: fixed;
    top: 0; left: 0; right: 0;
    box-shadow: var(--shadow-md);
    animation: ktSlideDown .25s ease;
}
@keyframes ktSlideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}
.kt-header-inner {
    display: flex;
    align-items: center;
    padding: 14px 0;
    gap: 24px;
}
.kt-logo img { max-height: 72px; width: auto; }
.kt-header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.kt-nav {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.kt-nav > li { position: relative; }
.kt-nav > li > a {
    display: block;
    padding: 14px 16px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}
.kt-nav > li > a:hover,
.kt-nav > li.kt-active > a {
    color: var(--brand-blue);
    border-bottom-color: var(--brand-blue);
}
.kt-nav .kt-caret {
    margin-left: 4px;
    font-size: 10px;
    opacity: .7;
}

/* Mega panel */
.kt-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 720px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-top: 3px solid var(--brand-blue);
}
.kt-nav > li:hover > .kt-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.kt-mega-narrow { min-width: 280px; }
.kt-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 24px;
}
.kt-mega-grid a {
    display: block;
    padding: 8px 10px;
    color: var(--text-body);
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
}
.kt-mega-grid a:hover {
    background: var(--bg-light);
    color: var(--brand-blue);
}
.kt-mega-title {
    grid-column: 1 / -1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-soft);
    margin-bottom: 6px;
}

/* Header right actions */
.kt-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.kt-header-actions .kt-icon-btn {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.kt-header-actions .kt-icon-btn:hover {
    background: var(--brand-blue);
    color: #fff;
}
.kt-quote-btn {
    background: var(--brand-blue);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}
.kt-quote-btn:hover {
    background: var(--brand-navy);
    color: #fff;
    box-shadow: var(--shadow-md);
}
.kt-quote-btn i { margin-right: 6px; }

/* Attention-grabbing pulse for "Quick Quote" CTA */
.kt-blink {
    position: relative;
    animation: kt-pulse 1.8s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(43,182,230,.6);
}
.kt-blink:hover { animation: none; }

@keyframes kt-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(43,182,230,.55), 0 4px 12px rgba(43,182,230,.25); transform: scale(1); }
    50%  { box-shadow: 0 0 0 12px rgba(43,182,230,0),  0 6px 18px rgba(43,182,230,.35); transform: scale(1.04); }
    100% { box-shadow: 0 0 0 0 rgba(43,182,230,0),    0 4px 12px rgba(43,182,230,.25); transform: scale(1); }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .kt-blink { animation: none; }
}

/* Mobile toggle */
.kt-mobile-toggle {
    display: none;
    background: var(--brand-navy);
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 18px;
}

/* ---------- Search popover ---------- */
.kt-search-pop {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 16px;
    border-radius: var(--radius);
    width: 360px;
    display: none;
    z-index: 100;
}
.kt-search-pop.kt-open { display: block; }
.kt-search-pop form { display: flex; }
.kt-search-pop input {
    flex: 1;
    border: 1px solid var(--border-soft);
    border-radius: 6px 0 0 6px;
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
}
.kt-search-pop input:focus { border-color: var(--brand-blue); }
.kt-search-pop button {
    background: var(--brand-blue);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

/* ============================================================
   3. HERO
   ============================================================ */
.kt-hero {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-2) 60%, #1c3868 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.kt-hero::before {
    content: "";
    position: absolute;
    top: -120px; right: -120px;
    width: 460px; height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43,182,230,.20) 0%, transparent 70%);
}
.kt-hero::after {
    content: "";
    position: absolute;
    bottom: -180px; left: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43,182,230,.15) 0%, transparent 70%);
}
.kt-hero .carousel-item { min-height: 520px; }
.kt-hero-row {
    display: flex;
    align-items: center;
    min-height: 520px;
    padding: 60px 0;
    position: relative;
    z-index: 2;
}
.kt-hero-text { color: #fff; }
.kt-hero-eyebrow {
    display: inline-block;
    background: rgba(43,182,230,.15);
    color: var(--brand-blue);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.kt-hero-text h1 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin: 0 0 18px;
}
.kt-hero-text p {
    font-size: 17px;
    color: rgba(255,255,255,.8);
    margin-bottom: 28px;
    max-width: 560px;
}
.kt-hero-ctas .btn-kt { margin-right: 10px; }
.kt-hero-img {
    text-align: right;
    position: relative;
}
.kt-hero-img img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
}
.kt-hero .carousel-indicators {
    bottom: 18px;
    margin: 0;
    z-index: 3;
}
.kt-hero .carousel-indicators li {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    margin: 0 5px;
    transition: var(--transition);
}
.kt-hero .carousel-indicators .active {
    background: var(--brand-blue);
    width: 32px;
    border-radius: 5px;
}
.kt-hero .carousel-control-prev,
.kt-hero .carousel-control-next {
    width: 5%;
    opacity: .6;
}
.kt-hero .carousel-control-prev:hover,
.kt-hero .carousel-control-next:hover { opacity: 1; }

/* ============================================================
   4. VALUE PROPOSITIONS
   ============================================================ */
.kt-value-strip {
    background: #fff;
    padding: 80px 0;
}
.kt-value-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius);
    transition: var(--transition);
    height: 100%;
}
.kt-value-card:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}
.kt-value-icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 14px rgba(43,182,230,.35);
}
.kt-value-body h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text-dark);
}
.kt-value-body p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

/* ============================================================
   5. EXPERT / CONNECT CTA BANNER
   ============================================================ */
.kt-expert {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue-dark) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow-lg);
    margin: 0 0 40px;
    position: relative;
    overflow: hidden;
}
.kt-expert::after {
    content: "";
    position: absolute;
    right: -80px; top: 50%;
    transform: translateY(-50%);
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.kt-expert h3 {
    font-size: 30px;
    color: #fff;
    margin: 0 0 10px;
    font-weight: 800;
}
.kt-expert p {
    color: rgba(255,255,255,.85);
    margin: 0;
    max-width: 600px;
}
.kt-expert .kt-expert-cta { flex-shrink: 0; position: relative; z-index: 2; }

/* ============================================================
   6. FEATURED CATEGORIES GRID
   ============================================================ */
.kt-cat-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.kt-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    text-decoration: none;
    color: inherit;
}
.kt-cat-thumb {
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.kt-cat-thumb img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: var(--transition);
}
.kt-cat-card:hover .kt-cat-thumb img { transform: scale(1.05); }
.kt-cat-body {
    padding: 22px 24px 24px;
}
.kt-cat-body h4 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text-dark);
}
.kt-cat-body p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0 0 12px;
    min-height: 42px;
}
.kt-cat-link {
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 14px;
}
.kt-cat-link i { margin-left: 4px; transition: var(--transition); }
.kt-cat-card:hover .kt-cat-link i { transform: translateX(4px); }

/* ============================================================
   7. SERVICES BLOCK
   ============================================================ */
.kt-service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    text-align: center;
    border: 1px solid var(--border-soft);
    height: 100%;
    transition: var(--transition);
}
.kt-service-card:hover {
    border-color: var(--brand-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.kt-service-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(43,182,230,.12), rgba(43,182,230,.05));
    color: var(--brand-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 18px;
    transition: var(--transition);
}
.kt-service-card:hover .kt-service-icon {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
    color: #fff;
    transform: rotate(-5deg);
}
.kt-service-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text-dark);
}
.kt-service-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* ============================================================
   8. BRAND CAROUSEL
   ============================================================ */
.kt-brand-strip {
    background: var(--bg-light);
    padding: 80px 0;
}
.kt-brand-item {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    height: 90px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 16px;
    margin: 0 8px;
    transition: var(--transition);
}
.kt-brand-item:hover {
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.kt-brand-item img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(60%) opacity(.85);
    transition: var(--transition);
}
.kt-brand-item:hover img { filter: grayscale(0) opacity(1); }
.kt-brand-strip .owl-nav { display: none; }
.kt-brand-strip .owl-dots { text-align: center; margin-top: 20px; }
.kt-brand-strip .owl-dots .owl-dot span {
    width: 10px; height: 10px;
    background: var(--border-soft);
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    transition: var(--transition);
}
.kt-brand-strip .owl-dots .owl-dot.active span,
.kt-brand-strip .owl-dots .owl-dot:hover span {
    background: var(--brand-blue);
    width: 24px;
    border-radius: 5px;
}

/* ============================================================
   9. NEWSLETTER
   ============================================================ */
.kt-newsletter {
    background: var(--brand-navy);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.kt-newsletter::before {
    content: "";
    position: absolute;
    top: -120px; right: -120px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43,182,230,.18) 0%, transparent 70%);
}
.kt-newsletter-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}
.kt-newsletter h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 10px;
}
.kt-newsletter p {
    color: rgba(255,255,255,.8);
    max-width: 580px;
    margin: 0 auto 26px;
}
.kt-newsletter form {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    background: #fff;
    border-radius: 50px;
    padding: 6px;
    box-shadow: var(--shadow-lg);
}
.kt-newsletter input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 20px;
    font-size: 15px;
    outline: none;
    color: var(--text-dark);
}
.kt-newsletter button {
    background: var(--brand-blue);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}
.kt-newsletter button:hover { background: var(--brand-blue-dark); }

/* ============================================================
   10. FOOTER
   ============================================================ */
.kt-footer {
    background: var(--brand-navy);
    color: rgba(255,255,255,.7);
    padding: 60px 0 0;
}
.kt-footer h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}
.kt-footer h5::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 3px;
    background: var(--brand-blue);
    border-radius: 2px;
}
.kt-footer p { color: rgba(255,255,255,.7); font-size: 14px; }
.kt-footer ul { list-style: none; padding: 0; margin: 0; }
.kt-footer ul li { margin-bottom: 10px; }
.kt-footer ul li a {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}
.kt-footer ul li a:hover { color: var(--brand-blue); padding-left: 6px; }
.kt-footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255,255,255,.75);
}
.kt-footer-contact-item i {
    color: var(--brand-blue);
    margin-top: 4px;
}
.kt-footer-contact-item a { color: rgba(255,255,255,.75); text-decoration: none; }
.kt-footer-contact-item a:hover { color: var(--brand-blue); }
.kt-footer-logo img { max-height: 70px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.kt-footer-social { display: flex; gap: 10px; margin-top: 16px; }
.kt-footer-social a {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    transition: var(--transition);
}
.kt-footer-social a:hover {
    background: var(--brand-blue);
    transform: translateY(-3px);
}
.kt-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 40px;
    padding: 22px 0;
    font-size: 13px;
}
.kt-footer-bottom a { color: rgba(255,255,255,.75); }
.kt-footer-bottom a:hover { color: var(--brand-blue); }
.kt-footer-bottom .kt-bottom-links a { margin-left: 18px; }

/* ============================================================
   PRODUCT / CATEGORY CARDS (inner pages reuse)
   ============================================================ */
.kt-product-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.kt-product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}
.kt-product-thumb {
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}
.kt-product-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.kt-product-thumb .kt-product-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--brand-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.kt-product-body {
    padding: 18px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.kt-product-brand {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.kt-product-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px;
    line-height: 1.4;
    flex: 1;
}
.kt-product-title a { color: inherit; text-decoration: none; }
.kt-product-title a:hover { color: var(--brand-blue); }
.kt-product-meta {
    margin-bottom: 8px;
}
.kt-product-partno {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-body);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11.5px;
}
.kt-product-partno strong { color: var(--text-dark); }

.kt-product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 14px;
}
.kt-product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-blue);
}
.kt-stock-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 600;
    color: #0a6a37;
    background: #e6f7ed;
    padding: 3px 8px;
    border-radius: 50px;
    white-space: nowrap;
}
.kt-stock-pill i { font-size: 11px; }
.kt-product-cta {
    display: block;
    text-align: center;
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 13px;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
}
.kt-product-cta:hover {
    background: var(--brand-blue);
    color: #fff;
}

/* ============================================================
   BRAND PAGE — Search + A-Z filter
   ============================================================ */
.kt-brand-filter {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    margin-bottom: 36px;
    box-shadow: var(--shadow-sm);
}
.kt-brand-search-wrap {
    position: relative;
    margin-bottom: 18px;
    max-width: 520px;
}
.kt-brand-search-wrap > i.fas.fa-search {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
    pointer-events: none;
}
.kt-brand-search {
    width: 100%;
    border: 1px solid var(--border-soft);
    border-radius: 50px;
    padding: 11px 44px 11px 42px;
    font-size: 14px;
    outline: none;
    background: var(--bg-light);
    transition: var(--transition);
}
.kt-brand-search:focus {
    border-color: var(--brand-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(43,182,230,.12);
}
.kt-brand-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-soft);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: var(--transition);
}
.kt-brand-clear:hover { background: var(--brand-blue); color: #fff; }

.kt-az-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}
.kt-az-btn {
    min-width: 36px;
    height: 36px;
    border: 1px solid var(--border-soft);
    background: #fff;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    padding: 0 10px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.kt-az-btn:hover:not(.kt-az-disabled):not(.kt-az-active) {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}
.kt-az-btn.kt-az-active {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
    box-shadow: 0 4px 10px rgba(43,182,230,.3);
}
.kt-az-btn.kt-az-disabled {
    color: var(--border-soft);
    cursor: not-allowed;
    opacity: .55;
}
.kt-brand-meta {
    font-size: 13px;
    color: var(--text-muted);
}
.kt-brand-meta #ktBrandCount {
    font-weight: 700;
    color: var(--text-dark);
}

@media (max-width: 575.98px) {
    .kt-brand-filter { padding: 16px 14px; }
    .kt-az-btn { min-width: 30px; height: 30px; font-size: 12px; padding: 0 6px; }
}

/* ============================================================
   VISION / MISSION CARDS (About page)
   ============================================================ */
.kt-vm-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    height: 100%;
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.kt-vm-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--brand-blue), var(--brand-blue-dark));
}
.kt-vm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.kt-vm-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    box-shadow: 0 8px 18px rgba(43,182,230,.3);
}
.kt-vm-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--text-dark);
}
.kt-vm-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.kt-page-head {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-2) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.kt-page-head h1 {
    color: #fff;
    font-size: 36px;
    margin: 0 0 8px;
}
.kt-page-head .kt-crumbs {
    color: rgba(255,255,255,.7);
    font-size: 14px;
}
.kt-page-head .kt-crumbs a { color: var(--brand-blue); }

/* ============================================================
   RFQ PAGE
   ============================================================ */
.kt-rfq-wrap { padding: 80px 0; }
.kt-rfq-form {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.kt-rfq-form h3 {
    margin: 0 0 20px;
    font-size: 24px;
}
.kt-rfq-form .form-control {
    border-radius: 8px;
    border: 1px solid var(--border-soft);
    padding: 12px 14px;
    height: auto;
    font-size: 14px;
    margin-bottom: 14px;
}
.kt-rfq-form .form-control:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(43,182,230,.12);
}
.kt-rfq-side {
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue-dark));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    height: 100%;
}
.kt-rfq-side h3 { color: #fff; margin: 0 0 20px; }
.kt-rfq-side .kt-footer-contact-item { color: rgba(255,255,255,.85); }
.kt-rfq-side .kt-footer-contact-item a { color: rgba(255,255,255,.85); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---------- Tablet & below (switch to mobile-menu mode) ---------- */
@media (max-width: 991.98px) {
    /* Header layout */
    .kt-header-inner { gap: 10px; padding: 12px 0; position: relative; }
    .kt-logo img { max-height: 60px; }
    .kt-mobile-toggle { display: inline-flex; align-items: center; }

    /* Hide desktop CTA */
    .kt-quote-btn { display: none !important; }

    /* Mobile Quick Quote button (inside slide-down menu) */
    .kt-mobile-quote-btn {
        display: block;
        margin: 14px 0 6px;
        padding: 14px 18px;
        background: var(--brand-blue);
        color: #fff;
        text-align: center;
        font-weight: 700;
        font-size: 14px;
        border-radius: 10px;
        text-decoration: none;
        box-shadow: 0 6px 16px rgba(43,182,230,.3);
        transition: var(--transition);
    }
    .kt-mobile-quote-btn:hover,
    .kt-mobile-quote-btn:focus {
        background: var(--brand-navy);
        color: #fff;
        text-decoration: none;
        transform: translateY(-1px);
    }
    .kt-mobile-quote-btn i { margin-right: 8px; }

    /* Slide-down nav panel */
    .kt-header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #fff;
        box-shadow: var(--shadow-md);
        padding: 8px 16px 16px;
        z-index: 999;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        flex: none;
        border-top: 1px solid var(--border-soft);
    }
    .kt-header-nav.kt-open { display: block; }

    .kt-nav { flex-direction: column; align-items: stretch; gap: 0; }
    .kt-nav > li { width: 100%; position: relative; }
    .kt-nav > li > a {
        padding: 14px 12px;
        border-bottom: 1px solid var(--border-soft);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .kt-nav > li.kt-active > a { background: var(--bg-light); }
    .kt-caret { transition: transform .2s; opacity: .55; }
    .kt-nav > li.kt-mobile-open > a .kt-caret { transform: rotate(180deg); opacity: 1; }

    /* Mega panel inline on mobile */
    .kt-mega {
        position: static;
        transform: none;
        min-width: 0;
        box-shadow: none;
        border-top: none;
        background: var(--bg-light);
        padding: 4px 12px 12px;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    .kt-nav > li.kt-mobile-open > .kt-mega { display: block; }
    .kt-mega-grid { grid-template-columns: 1fr; gap: 0; }
    .kt-mega-grid a {
        padding: 10px 6px;
        border-bottom: 1px solid rgba(0,0,0,.05);
        font-size: 14px;
    }
    .kt-mega-grid a:last-child { border-bottom: none; }
    .kt-mega-title { padding: 10px 0 6px; margin-bottom: 0; border: none; }

    /* Hero / sections */
    .kt-hero-text h1 { font-size: 34px; }
    .kt-hero-row, .kt-hero .carousel-item { min-height: 380px; }
    .kt-hero-row { padding: 50px 0; }
    .kt-section { padding: 60px 0; }
    .kt-value-strip, .kt-brand-strip, .kt-newsletter { padding: 60px 0; }
    .kt-section-head { margin-bottom: 40px; }
    .kt-section-head h2 { font-size: 26px; }
    .kt-expert { padding: 36px; flex-direction: column; text-align: center; gap: 18px; }
    .kt-expert h3 { font-size: 24px; }
    .kt-expert::after { display: none; }
}

/* ---------- Phone ---------- */
@media (max-width: 767.98px) {
    /* Hero — hide right image, smaller type */
    .kt-hero-img { display: none; }
    .kt-hero-text h1 { font-size: 26px; line-height: 1.2; }
    .kt-hero-text p { font-size: 14px; margin-bottom: 22px; }
    .kt-hero-eyebrow { font-size: 11px; margin-bottom: 12px; }
    .kt-hero-row, .kt-hero .carousel-item { min-height: 320px; }
    .kt-hero-row { padding: 36px 0; }
    .kt-hero-ctas .btn-kt { padding: 10px 22px; font-size: 13px; margin-bottom: 8px; }
    .kt-hero .carousel-indicators { bottom: 10px; }

    /* Section padding */
    .kt-section { padding: 48px 0; }
    .kt-section-head { margin-bottom: 32px; }
    .kt-section-head h2 { font-size: 22px; }
    .kt-section-head p { font-size: 14px; }
    .kt-eyebrow { font-size: 11px; }

    /* Value props */
    .kt-value-strip { padding: 48px 0; }
    .kt-value-card { padding: 14px; }
    .kt-value-icon { width: 48px; height: 48px; font-size: 18px; border-radius: 12px; }
    .kt-value-body h5 { font-size: 15px; }
    .kt-value-body p { font-size: 13px; }

    /* Expert CTA */
    .kt-expert { padding: 28px 22px; margin: 36px 0; border-radius: 14px; }
    .kt-expert h3 { font-size: 22px; }
    .kt-expert p { font-size: 14px; }

    /* Categories */
    .kt-cat-thumb { height: 180px; }
    .kt-cat-body { padding: 18px 18px 20px; }
    .kt-cat-body h4 { font-size: 17px; }
    .kt-cat-body p { font-size: 13px; min-height: 0; }

    /* Services */
    .kt-service-card { padding: 24px 20px; }
    .kt-service-icon { width: 60px; height: 60px; font-size: 24px; }
    .kt-service-card h4 { font-size: 16px; }
    .kt-service-card p { font-size: 13px; }

    /* Brand strip */
    .kt-brand-strip { padding: 48px 0; }
    .kt-brand-item { height: 76px; padding: 12px; }
    .kt-brand-item img { max-height: 40px; }

    /* Newsletter */
    .kt-newsletter { padding: 48px 0; }
    .kt-newsletter h3 { font-size: 22px; }
    .kt-newsletter p { font-size: 14px; }
    .kt-newsletter form { flex-direction: column; background: transparent; padding: 0; box-shadow: none; }
    .kt-newsletter input { background: #fff; border-radius: 50px; margin-bottom: 10px; padding: 14px 20px; }
    .kt-newsletter button { width: 100%; padding: 14px 20px; }

    /* Topbar — centered when visible (it's hidden by d-md-block, but just in case) */
    .kt-topbar { text-align: center; font-size: 12px; }
    .kt-topbar a { margin: 0 6px; }
    .kt-topbar .kt-topbar-right { text-align: center; margin-top: 6px; }

    /* Page header */
    .kt-page-head { padding: 40px 0; }
    .kt-page-head h1 { font-size: 24px; }
    .kt-page-head .kt-crumbs { font-size: 13px; }

    /* Footer */
    .kt-footer { padding: 40px 0 0; }
    .kt-footer h5 { margin-bottom: 16px; }
    .kt-footer-bottom { margin-top: 24px; padding: 18px 0; text-align: center; }
    .kt-footer-bottom .text-md-right { text-align: center !important; margin-top: 12px; }
    .kt-footer-bottom .kt-bottom-links a { margin: 0 8px; }

    /* RFQ */
    .kt-rfq-form, .kt-rfq-side { padding: 24px; }
    .kt-rfq-form h3 { font-size: 20px; }

    /* Product cards more compact */
    .kt-product-thumb { height: 160px; padding: 14px; }
    .kt-product-body { padding: 14px 14px 16px; }
    .kt-product-title { font-size: 14px; }
    .kt-product-price { font-size: 16px; }

    /* Search popover full-width on phone */
    .kt-search-pop {
        position: fixed;
        top: 72px;
        left: 12px; right: 12px;
        width: auto;
    }

    /* Buttons a touch smaller */
    .btn-kt { padding: 10px 22px; font-size: 13px; }
}

/* ---------- Very small phones ---------- */
@media (max-width: 374.98px) {
    .kt-hero-text h1 { font-size: 22px; }
    .kt-hero-text p { font-size: 13px; }
    .kt-section-head h2 { font-size: 20px; }
    .kt-expert h3 { font-size: 20px; }
    .kt-newsletter h3 { font-size: 20px; }
    .kt-logo img { max-height: 50px; }
    .kt-icon-btn { width: 36px; height: 36px; }
    .kt-mobile-toggle { padding: 8px 12px; font-size: 16px; }
    .kt-cat-thumb { height: 150px; }
}

/* ============================================================
   Legacy wrappers reset (so old style.css doesn't fight us)
   ============================================================ */
.header_section,
.footer_section,
.slider_section,
.hero_area {
    background: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
}
