/* =============================================================
   KEPRO INDIA — STYLESHEET
   -------------------------------------------------------------
   Loaded AFTER Bootstrap 5.3, so rules here override Bootstrap's
   defaults. Bootstrap supplies grid/container, navbar structure,
   dropdown, accordion and carousel mechanics; everything visual
   is customised here to feel like a bespoke industrial brand,
   not a stock Bootstrap theme.

   1. Fonts               10. Trust Strip        19. Testimonials
   2. Root Variables       11. About              20. FAQ (Accordion)
   3. Reset / Base         12. Products            21. Final CTA
   4. Container / Section  13. Industries          22. Contact
   5. Buttons              14. Process             23. Footer
   6. Top Bar               15. Why Us              24. Animations
   7. Navbar                 16. Statistics          25. Responsive
   8. Mega Menu               17. Projects
   9. Hero / Carousel          18. Quality
   ============================================================= */
/* -------------------------------------------------------------
   1. FONTS
------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800&display=swap');


/* -------------------------------------------------------------
   2. ROOT VARIABLES
------------------------------------------------------------- */
:root {
    --primary-color: #322540;
    --primary-dark: #21182b;
    --primary-light: #49365a;

    --secondary-color: #f28d2c;
    --secondary-dark: #d97418;
    --secondary-light: #ffad5c;

    --white: #ffffff;
    --black: #111111;

    --text-dark: #202020;
    --text-medium: #5f5f5f;
    --text-light: #8a8a8a;

    --bg-light: #f5f5f6;
    --bg-soft: #faf9fb;

    --border-color: #e7e5e9;

    --shadow-sm: 0 6px 20px rgba(50, 37, 64, 0.08);
    --shadow-md: 0 15px 40px rgba(50, 37, 64, 0.12);
    --shadow-lg: 0 25px 70px rgba(50, 37, 64, 0.16);

    --container-width: 1240px;

    --radius-sm: 2px;
    --radius-md: 3px;
    --radius-lg: 4px;

    --transition: 0.35s ease;

    /* Be Vietnam Pro */
    --font-body: 'Be Vietnam Pro', -apple-system, 'Segoe UI', sans-serif;
    --font-display: 'Be Vietnam Pro', -apple-system, 'Segoe UI', sans-serif;

    /* Bootstrap variables */
    --bs-primary: var(--primary-color);
    --bs-body-font-family: var(--font-body);
    --bs-body-color: var(--text-dark);
    --bs-link-color: var(--primary-color);
    --bs-link-hover-color: var(--secondary-dark);
}

/* -------------------------------------------------------------
   3. RESET / BASE
------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
}

main {
    /* overflow-x: hidden; */
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.05;
    color: var(--primary-color);
    letter-spacing: 0.2px;
}

p {
    color: var(--text-dark);
    line-height: 1.7;
}

:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 3px;
}

/* -------------------------------------------------------------
   4. CONTAINER / SECTION HELPERS
------------------------------------------------------------- */
@media (min-width: 1400px) {
    .container {
        max-width: var(--container-width);
    }
}

.section-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-dark);
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--secondary-color);
    display: inline-block;
}

.section-heading {
    font-size: clamp(22px, 2.6vw, 34px);
    text-transform: uppercase;
    color: var(--primary-color);
}

.section-head {
    margin-bottom: 22px;
    max-width: 720px;
}

.section-head-light .section-heading {
    color: var(--white);
}

.section-head-light .section-label {
    color: var(--secondary-light);
}

/* -------------------------------------------------------------
   5. BUTTONS
------------------------------------------------------------- */
.btn {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
    border: 1.5px solid transparent;
}

.btn i {
    font-size: 13px;
    transition: transform var(--transition);
}

.btn:hover i {
    transform: translateX(4px);
}

.kepro-btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.kepro-btn-secondary:hover {
    background: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.kepro-btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.kepro-btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transform: translateY(-2px);
}

.kepro-btn-outline-dark {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--border-color);
}

.kepro-btn-outline-dark:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 11px 20px;
    font-size: 12px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--primary-color);
    border-bottom: 1.5px solid var(--secondary-color);
    padding-bottom: 4px;
    transition: color var(--transition);
}

.link-arrow i {
    font-size: 12px;
    transition: transform var(--transition);
}

.link-arrow:hover {
    color: var(--secondary-dark);
}

.link-arrow:hover i {
    transform: translateX(5px);
}

.link-arrow-light {
    color: var(--white);
    border-color: var(--secondary-light);
}

.link-arrow-light:hover {
    color: var(--secondary-light);
}

/* -------------------------------------------------------------
   6. TOP BAR
------------------------------------------------------------- */
.topbar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    font-size: 12.5px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.62);
}

.topbar-left i {
    color: var(--secondary-color);
    font-size: 11px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-tagline {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary-light);
}

.topbar-right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
}

.topbar-right a:hover {
    color: var(--secondary-light);
}

.topbar-right i {
    font-size: 11px;
    color: var(--secondary-color);
}

/* -------------------------------------------------------------
   7. NAVBAR (Bootstrap navbar, heavily restyled)
------------------------------------------------------------- */
.kepro-navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    z-index: 1030;
    transition: box-shadow var(--transition);
}

.kepro-navbar.is-scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar-inner {
    display: flex;
    align-items: center;
    height: 86px;
    transition: height var(--transition);
    flex-wrap: wrap;
}

.kepro-navbar.is-scrolled .navbar-inner {
    height: 66px;
}

.kepro-brand {
    padding: 0;
    margin-right: 32px;
}

.kepro-brand img {
    height: 40px;
    width: auto;
    transition: height var(--transition);
}

.kepro-navbar.is-scrolled .kepro-brand img {
    height: 34px;
}

.kepro-toggler {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    width: 44px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: none !important;
    transition: border-color var(--transition), background var(--transition);
}

.kepro-toggler:hover {
    border-color: var(--secondary-color);
}

.kepro-toggler:focus {
    box-shadow: none;
}

.kepro-toggler-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

/* Bootstrap sets aria-expanded="true" on the toggler when the
   collapse is open — use it to morph the bars into an X. */
.kepro-toggler[aria-expanded="true"] {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

.kepro-toggler[aria-expanded="true"] .kepro-toggler-bar {
    background: var(--white);
}

.kepro-toggler[aria-expanded="true"] .kepro-toggler-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.kepro-toggler[aria-expanded="true"] .kepro-toggler-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.kepro-toggler[aria-expanded="true"] .kepro-toggler-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.kepro-nav {
    gap: 4px;
}

.kepro-nav .nav-link {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark) !important;
    padding: 10px 14px !important;
    position: relative;
    transition: color var(--transition);
}

.kepro-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.kepro-nav .nav-link:hover,
.kepro-nav .nav-link.active {
    color: var(--secondary-dark) !important;
}

.kepro-nav .nav-link:hover::after,
.kepro-nav .nav-link.active::after {
    transform: scaleX(1);
}

.kepro-nav .dropdown-toggle::after {
    display: none;
}

.nav-caret {
    font-size: 10px;
    margin-left: 5px;
    color: var(--text-light);
    transition: transform var(--transition), color var(--transition);
}

.kepro-nav .nav-link:hover .nav-caret,
.kepro-nav .nav-link.active .nav-caret {
    color: var(--secondary-dark);
}

.dropdown-toggle[aria-expanded="true"] .nav-caret {
    transform: rotate(180deg);
    color: var(--secondary-dark);
}

.kepro-nav-cta {
    margin-left: 12px;
    white-space: nowrap;
}

/* -------------------------------------------------------------
   8. MEGA MENU (standard Bootstrap dropdown, plus simple CSS-only
   hover-to-open on desktop — no JS needed for the hover behaviour;
   Bootstrap's own click/keyboard toggle still works as a fallback.)
------------------------------------------------------------- */
.kepro-mega-menu {
    width: 620px;
    max-width: 92vw;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 28px;
}

/* Desktop-only: open on hover in addition to Bootstrap's click toggle. */
@media (min-width: 992px) {
    .kepro-nav .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        pointer-events: none;
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    }

    .kepro-nav .dropdown:hover>.dropdown-menu,
    .kepro-nav .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.mega-col-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--primary-color);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}

.kepro-mega-menu .dropdown-item {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-medium);
    padding: 6px 0;
    background: transparent;
    transition: color var(--transition);
}

.kepro-mega-menu .dropdown-item:hover,
.kepro-mega-menu .dropdown-item:focus {
    color: var(--secondary-dark);
    background: transparent;
}

/* -------------------------------------------------------------
   9. HERO / CAROUSEL — split-screen design
   -------------------------------------------------------------
   A solid-colour panel (copy) beside a photograph, rather than a
   full-bleed image with a dark overlay. This reads as a distinct,
   branded engineering identity instead of a generic photo hero.
------------------------------------------------------------- */
.hero-carousel-wrap {
    position: relative;
    background: var(--primary-dark);
}

.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    position: relative;
    min-height: 660px;
    color: var(--white);
}

/* IMPORTANT: display must stay scoped to Bootstrap's own active/transition
   classes. Setting display:flex on the bare .carousel-item selector would
   override Bootstrap's display:none on inactive slides, causing all slides
   to render stacked on top of each other instead of one at a time. */
.hero-carousel .carousel-item.active,
.hero-carousel .carousel-item-next,
.hero-carousel .carousel-item-prev {
    display: flex;
    align-items: center;
}

.hero-panel {
    position: relative;
    z-index: 2;
    max-width: 620px;
    display: flex;
    align-items: center;
    padding: 72px clamp(24px, 6vw, 90px);
}

.hero-panel-content {
    max-width: 540px;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(33, 24, 43, 0.95) 0%, rgba(33, 24, 43, 0.86) 32%, rgba(33, 24, 43, 0.45) 58%, rgba(33, 24, 43, 0.08) 82%);
}

.hero-image-corner {
    position: absolute;
    width: 26px;
    height: 26px;
    border: 2px solid var(--secondary-color);
    z-index: 2;
}

.hero-image-corner-tl {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.hero-image-corner-br {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.4px;
    color: var(--secondary-light);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    display: inline-block;
}

.hero-heading {
    font-size: clamp(36px, 4.6vw, 62px);
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.02;
    margin-bottom: 20px;
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 28px;
    font-size: 15.5px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-mini-stats {
    display: flex;
    gap: 36px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-mini-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-mini-stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

/* Shared nav row: counter + progress + arrows, in normal flow so it
   can never visually collide with anything else (no absolute overlap). */
.hero-nav-row {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 22px clamp(24px, 5vw, 72px);
    background: linear-gradient(0deg, rgba(20, 15, 26, 0.75) 0%, rgba(20, 15, 26, 0.35) 60%, transparent 100%);
}

.hero-progress-count {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--white);
}

.hero-progress-track {
    width: 140px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--secondary-color);
    transition: width 6s linear;
}

.hero-arrows {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.hero-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 13px;
    transition: background var(--transition), border-color var(--transition);
}

.hero-arrow-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}


/* -------------------------------------------------------------
   10. TRUST STRIP
------------------------------------------------------------- */
.trust-strip {
    background: var(--primary-color);
    overflow: hidden;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip-track {
    display: flex;
    gap: 28px;
    white-space: nowrap;
    animation: marquee 26s linear infinite;
    width: max-content;
}

.trust-strip-track span {
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.trust-strip-track .dot {
    color: var(--secondary-color);
    font-weight: 700;
}

/* -------------------------------------------------------------
   11. ABOUT
------------------------------------------------------------- */
.about {
    padding: 52px 0 40px;
    background: var(--white);
}

.about-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 460px;
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 460px;
}

.about-badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 22px 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-badge-number {
    font-family: var(--font-display);
    font-size: 40px;
    line-height: 1;
}

.about-badge-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 1.4;
}

.about-copy p {
    margin-bottom: 16px;
    font-size: 15.5px;
    color: var(--text-dark);
    line-height: 1.75;
}

.about-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border-color);
}

.capability i {
    font-size: 26px;
    color: var(--secondary-color);
    margin-bottom: 14px;
    display: block;
}

.capability h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.capability p {
    font-size: 14px;
}

.about-v2 {
    padding: 80px 0;
}

.about-media-v2 {
    position: relative;
    padding: 26px 40px 40px 0;
}

.about-media-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 44px;
    right: 0;
    bottom: 0;
    /* background: var(--bg-light); */
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-media-back,
.about-media-front {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-media-back {
    width: 78%;
}

.about-media-back img,
.about-media-front img {
    transition: transform 0.6s ease;
}

.about-media-v2:hover img {
    transform: scale(1.06);
}

.about-media-back img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.about-media-front {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58%;
    border: 6px solid var(--white);
}

.about-media-front img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.about-badge-v2 {
    position: absolute;
    top: 30px;
    /* left: 60; */
    right: 10px;
    background: var(--secondary-color);
    color: var(--white);
    width: 116px;
    height: 116px;
    /* border-radius: 50%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-badge-v2 .about-badge-number {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.about-badge-v2 .about-badge-number small {
    font-size: 16px;
}

.about-badge-v2 .about-badge-text {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    line-height: 1.3;
    margin-top: 4px;
}

.about-lead {
    font-size: 15.5px;
    color: var(--text-medium);
    line-height: 1.8;
    margin: 18px 0 28px;
    max-width: 560px;
}

.about-feature-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 8px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-color);
}

.about-feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-feature i {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(242, 141, 44, 0.12);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-top: 3px;
}

.about-feature h3 {
    font-size: 16.5px;
    text-transform: none;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.about-feature p {
    font-size: 13.5px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991.98px) {
    .about-media-v2 {
        margin-bottom: 40px;
        padding: 20px 24px 24px 0;
    }
}

/* -------------------------------------------------------------
   11B. GET A QUOTE BAR
------------------------------------------------------------- */
.section-label-light {
    color: var(--secondary-light);
}

.quote-bar {
    background: var(--primary-dark);
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 14px);
    padding: 40px 0;
    overflow: hidden;
}

.quote-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.quote-bar-media {
    position: relative;
    flex: none;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    overflow: visible;
}

.quote-bar-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.25);
    display: block;
}

.quote-bar-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    box-shadow: 0 0 0 0 rgba(242, 141, 44, 0.55);
    animation: kp-play-pulse 2.2s ease-out infinite;
}

@keyframes kp-play-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 141, 44, 0.55);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(242, 141, 44, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(242, 141, 44, 0);
    }
}

@media (max-width: 767.98px) {
    .quote-bar-media {
        display: none;
    }
}

.quote-bar-text h2 {
    color: var(--white);
    font-size: clamp(22px, 2.4vw, 30px);
    text-transform: uppercase;
    line-height: 1.15;
    margin: 0;
}

.quote-bar-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.quote-bar-phone-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex: none;
    animation: kp-phone-ring 2.6s ease-in-out infinite;
}

.quote-bar-phone-text {
    display: flex;
    flex-direction: column;
}

.quote-bar-phone-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.quote-bar-phone-text strong {
    color: var(--white);
    font-size: 19px;
    font-weight: 700;
    white-space: nowrap;
}

@keyframes kp-phone-ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    5%,
    15% {
        transform: rotate(-12deg);
    }

    10%,
    20% {
        transform: rotate(12deg);
    }

    25% {
        transform: rotate(0deg);
    }
}

@media (max-width: 767.98px) {
    .quote-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .quote-bar-phone {
        border-left: none;
        padding-left: 0;
    }
}

/* -------------------------------------------------------------
   12. PRODUCTS
------------------------------------------------------------- */
.products {
    padding: 52px 0;
    background: var(--bg-soft);
}

.product-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}

.product-category-nav a {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 10px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: 40px;
    color: var(--text-medium);
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.product-category-nav a:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-dark);
    background: var(--white);
}

.product-feature {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 56px;
}

.product-feature-media {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.product-feature:hover .product-feature-media img {
    transform: scale(1.05);
}

.product-feature-content {
    padding: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--secondary-dark);
    margin-bottom: 14px;
}

.product-feature-tag i {
    font-size: 15px;
}

.product-feature-content h3 {
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.product-feature-content>p {
    font-size: 15px;
    margin-bottom: 24px;
    max-width: 440px;
}

.spec-list {
    margin-bottom: 28px;
    border-top: 1px solid var(--border-color);
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 13.5px;
}

.spec-list li span:first-child {
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11.5px;
}

.spec-list li span:last-child {
    color: var(--primary-color);
    font-weight: 700;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
    height: 100%;
}

.product-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.product-card-media {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 18px;
    aspect-ratio: 4/3;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-icon {
    position: absolute !important;
    z-index: 5 !important;
    display: flex !important;
    top: 14px;
    left: 290px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: rgba(33, 24, 43, 0.82);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 14px rgba(33, 24, 43, 0.35);
    color: var(--white) !important;
    opacity: 1 !important;
    visibility: visible !important;
    border-radius: 50%;
    font-size: 15px;
    line-height: 1;
    transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.product-card-icon i {
    color: var(--white) !important;
    font-style: normal !important;
}

.product-card:hover .product-card-icon {
    background: var(--secondary-color);
}

.product-card-cat {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
}

.product-card-title {
    font-size: 21px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--primary-color) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.product-card-desc {
    font-size: 13.5px;
    margin-bottom: 16px;
}

/* -------------------------------------------------------------
   13. INDUSTRIES
------------------------------------------------------------- */
.industries {
    background: var(--primary-dark);
    padding: 52px 0 0;
    overflow: hidden;
}

.industries .container {
    padding-bottom: 0;
}

.industry-panels {
    display: flex;
    height: 540px;
    width: 100%;
}

.industry-panel {
    position: relative;
    flex: 1;
    overflow: hidden;
    transition: flex 0.5s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.industry-panel:last-child {
    border-right: none;
}

.industry-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(33, 24, 43, 0.92) 0%, rgba(50, 37, 64, 0.55) 45%, rgba(50, 37, 64, 0.35) 100%);
}

.industry-panel-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 18px;
    color: var(--white);
    z-index: 2;
}

.industry-panel-content i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
}

.industry-panel-content h3 {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.industry-panel-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height var(--transition), opacity var(--transition), margin var(--transition);
}

.industry-panel-content .link-arrow {
    font-size: 11px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height var(--transition), opacity var(--transition), margin var(--transition);
}

.industry-panels:hover .industry-panel {
    flex: 0.75;
}

.industry-panel:hover {
    flex: 2.1 !important;
}

.industry-panel:hover .industry-panel-content p,
.industry-panel:hover .industry-panel-content .link-arrow {
    max-height: 60px;
    opacity: 1;
    margin-top: 8px;
}

.industry-panel:hover img {
    transform: scale(1.06);
}

.industry-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 12px 0 56px;
}

.industry-card-v2 {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.industry-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0%;
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    transition: height 0.45s cubic-bezier(.65, 0, .35, 1);
    z-index: -1;
}

.industry-card-v2:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-color);
}

.industry-card-v2:hover::before {
    height: 100%;
}

.industry-card-v2 i {
    font-size: 26px;
    color: var(--secondary-color);
    margin-bottom: 18px;
    display: block;
    transition: color 0.35s ease;
}

.industry-card-v2:hover i {
    color: var(--white);
}

.industry-card-v2 h3 {
    font-size: 17px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.industry-card-v2 p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
    margin-bottom: 18px;
    transition: color 0.35s ease;
}

.industry-card-v2:hover p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991.98px) {
    .industry-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .industry-card-grid {
        grid-template-columns: 1fr;
    }
}

/* Industries page grid variant (image cards, not panels) */
.industry-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3.4;
    color: var(--white);
    display: flex;
    align-items: flex-end;
}

.industry-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-card .industry-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(50, 37, 64, 0.92) 0%, rgba(50, 37, 64, 0.25) 60%, rgba(50, 37, 64, 0.05) 100%);
    transition: background var(--transition);
}

.industry-card:hover img {
    transform: scale(1.07);
}

.industry-card:hover .industry-card-overlay {
    background: linear-gradient(0deg, rgba(217, 116, 24, 0.55) 0%, rgba(50, 37, 64, 0.55) 70%);
}

.industry-card-content {
    position: relative;
    z-index: 2;
    padding: 26px;
}

.industry-card-content i {
    color: var(--secondary-light);
    font-size: 22px;
    margin-bottom: 10px;
    display: block;
}

.industry-card-content h3 {
    color: var(--white);
    font-size: 21px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.industry-card-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13.5px;
    margin-bottom: 14px;
}

/* -------------------------------------------------------------
   14. ENGINEERING PROCESS
------------------------------------------------------------- */
.process {
    padding: 52px 0;
    background: var(--white);
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
    padding-top: 40px;
}

.timeline-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border-color);
}

.timeline-track-fill {
    height: 100%;
    width: 0%;
    background: var(--secondary-color);
    transition: width 0.4s ease;
}

.timeline-step {
    padding-top: 28px;
    position: relative;
    opacity: 0.45;
    transition: opacity var(--transition);
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 1px var(--border-color);
    transition: background var(--transition), box-shadow var(--transition);
}

.timeline-step.is-active {
    opacity: 1;
}

.timeline-step.is-active::before {
    background: var(--secondary-color);
    box-shadow: 0 0 0 1px var(--secondary-color);
}

.timeline-step i {
    color: var(--secondary-dark);
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
}

.timeline-num {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--secondary-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.timeline-step h3 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 12.5px;
}

/* -------------------------------------------------------------
   15. WHY US
------------------------------------------------------------- */
.why-us {
    background: var(--primary-color);
    padding: 52px 0;
}

.why-us-statement h2 {
    color: var(--white);
    font-size: clamp(32px, 3.6vw, 48px);
    text-transform: uppercase;
    line-height: 1.08;
}

.why-us-statement h2 span {
    color: var(--secondary-light);
}

.why-point i {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    display: block;
     text-align: center;
}

.why-point h3 {
    color: var(--white);
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    text-align: center;
}

.why-point p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13.5px;
}

/* -------------------------------------------------------------
   16. STATISTICS
------------------------------------------------------------- */
.statistics {
    background: var(--bg-light);
    padding: 44px 0;
}

.stat {
    text-align: center;
    border-left: 1px solid var(--border-color);
}

.stat:first-child,
.stat.no-border {
    border-left: none;
}

.stat-number,
.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(44px, 5.5vw, 72px);
    color: var(--primary-color);
    line-height: 1;
}

.stat-suffix {
    color: var(--secondary-color);
    font-size: clamp(22px, 2.6vw, 32px);
}

.stat p {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--text-medium);
    margin-top: 10px;
}

/* -------------------------------------------------------------
   17. PROJECTS / APPLICATIONS
------------------------------------------------------------- */
.projects {
    padding: 52px 0;
    background: var(--white);
}

.project-card-media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3.2;
    margin-bottom: 20px;
}

.project-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-card-media img {
    transform: scale(1.08);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(33, 24, 43, 0.55), transparent 55%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px;
}

.project-card-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), background var(--transition);
}

.project-card:hover .project-card-arrow {
    transform: scale(1.1);
    background: var(--secondary-dark);
}

.project-card-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary-dark);
    margin-bottom: 8px;
}

.project-card-cat i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.project-card h3 {
    font-size: 21px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 13.5px;
}

/* -------------------------------------------------------------
   18. QUALITY
------------------------------------------------------------- */
.quality {
    padding: 56px 0 0;
    background: var(--white);
}

.quality-strip {
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 36px clamp(20px, 6vw, 60px);
    gap: 20px;
}

.quality-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.quality-strip-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    background: var(--white);
    padding: 4px 8px;
    border-radius: 2px;
}

.quality-strip-item i {
    font-size: 32px;
    color: var(--secondary-color);
}

.quality-strip-item div {
    display: flex;
    flex-direction: column;
}

.quality-strip-item strong {
    color: var(--white);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.quality-strip-item span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.quality-strip-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 767.98px) {
    .quality-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .quality-strip-divider {
        display: none;
    }
}

.quality-text p {
    font-size: 15px;
    margin-top: 18px;
}

.quality-marks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.quality-mark {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 24px 16px;
    text-align: center;
    transition: border-color var(--transition), transform var(--transition);
}

.quality-mark:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.quality-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.quality-mark img {
    max-height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
    filter: grayscale(0.15);
}

.quality-mark small {
    font-size: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-light);
}

/* -------------------------------------------------------------
   19. TESTIMONIALS (Bootstrap Carousel, restyled)
------------------------------------------------------------- */
.trust {
    padding: 52px 0;
    background: var(--white);
}

/* Two-row clientele grid (homepage) — controlled, no auto-scroll marquee */
.clientele-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.clientele-logo {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    opacity: 1;
    transition: filter var(--transition), opacity var(--transition), border-color var(--transition), transform var(--transition);
}

.clientele-logo img {
    max-height: 92px;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.clientele-logo:hover {
    opacity: 1;
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.client-marquee {
    overflow: hidden;
    margin-bottom: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border-color);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.client-marquee:hover .client-marquee-track {
    animation-play-state: paused;
}

.client-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    height: 130px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    opacity: 1;
    transition: background var(--transition), opacity var(--transition);
}

.client-logo img {
    max-height: 88px;
    width: auto;
    height: auto;
    max-width: 170px;
    object-fit: contain;
}

.client-logo:hover {
    background: var(--bg-soft);
    opacity: 1;
}

.testimonial-carousel {
    max-width: 760px;
    margin: 0 auto;
}

.testimonial-carousel .carousel-item {
    padding: 0 20px;
    text-align: center;
}

.testimonial-quote {
    color: var(--secondary-color);
    font-size: 30px;
    margin-bottom: 14px;
}

.testimonial-carousel p.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.4vw, 27px);
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 22px;
}

.testimonial-footer strong {
    display: block;
    font-size: 15px;
    color: var(--primary-color);
}

.testimonial-footer span {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-carousel .carousel-indicators {
    position: static;
    margin-top: 30px;
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border-color);
    opacity: 1;
    border: none;
    transition: background var(--transition), transform var(--transition);
}

.testimonial-carousel .carousel-indicators .active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* -------------------------------------------------------------
   20. FAQ (Bootstrap Accordion, restyled)
------------------------------------------------------------- */
.faq {
    padding: 52px 0;
    background: var(--bg-soft);
}

.faq-heading-wrap h2 {
    font-size: clamp(32px, 3.4vw, 46px);
}

.faq-cert-wrap .section-heading,
.faq-content-wrap .section-heading {
    font-size: clamp(22px, 2.4vw, 30px);
}

.faq-intro {
    color: var(--text-medium);
    font-size: 14.5px;
    line-height: 1.75;
    max-width: 420px;
    margin-top: 16px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 420px;
}

.cert-tile {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cert-tile:hover {
    transform: translateY(-4px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.cert-tile img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(15%);
}

.cert-tile-icon {
    flex-direction: column;
    gap: 8px;
}

.cert-tile-icon i {
    font-size: 20px;
    color: var(--secondary-color);
}

.cert-tile-icon span {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--text-medium);
    text-align: center;
}

@media (max-width: 575.98px) {
    .cert-grid {
        max-width: none;
    }
}

.faq-accordion .accordion-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    margin-bottom: 14px;
    transition: border-color var(--transition);
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: var(--secondary-color);
}

.faq-accordion .accordion-button {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15.5px;
    color: var(--primary-color);
    padding: 22px 24px;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--primary-color);
}

.faq-accordion .accordion-button::after {
    background-image: none;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f067';
    color: var(--secondary-color);
    font-size: 14px;
    transition: transform var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
    transform: rotate(180deg);
}

.faq-accordion .accordion-body {
    padding: 0 24px 22px;
    font-size: 14.5px;
    color: var(--text-dark);
}

/* -------------------------------------------------------------
   21. FINAL CTA
------------------------------------------------------------- */
/* -------------------------------------------------------------
   Our Presence Across India
------------------------------------------------------------- */
.presence-section {
    padding: 72px 0;
    background: var(--white);
}

.presence-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 12px;
}

.presence-strip::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border-color) 0 8px, transparent 8px 14px);
    z-index: 0;
}

.presence-strip-item {
    position: relative;
    z-index: 1;
    padding: 0 16px;
    text-align: center;
}

.presence-strip-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--secondary-color);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-dark);
    transition: background var(--transition), color var(--transition);
}

.presence-strip-item:hover .presence-strip-num {
    background: var(--secondary-color);
    color: var(--white);
}

.presence-strip-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    display: block;
}

.presence-strip-item h3 {
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.presence-strip-item p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 767.98px) {
    .presence-strip {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 36px;
    }

    .presence-strip::before {
        display: none;
    }
}

.presence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 12px;
}

.kp-india-map {
    display: flex;
    justify-content: center;
}

.kp-india-map svg {
    max-width: 380px;
    width: 100%;
    height: auto;
}

.presence-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.presence-card i {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.presence-card h3 {
    color: var(--white);
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.presence-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12.5px;
    margin: 0;
}

.presence-card:hover {
    background: rgba(242, 141, 44, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-4px);
}

.final-cta {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(rgba(7, 20, 30, 0.55), rgba(7, 20, 30, 0.55)), url('../images/hero-crane.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--secondary-color);
}

.final-cta-content h2 {
    color: #0e194f !important
}

.final-cta-content>p {
    color: #000 !important;
}

.final-cta-note {
    color: rgba(255, 255, 255, 0.65) !important;
}

.final-cta-content .kepro-btn-outline-light {
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.final-cta-content .kepro-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--white) !important;
}

.final-cta-content .kp-btn-outline {
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.final-cta-media {
    display: none;
}

.final-cta-overlay {
    display: none;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: clamp(36px, 5vw, 58px);
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.final-cta-content>p {
    color: var(--text-medium);
    font-size: 17px;
    margin-bottom: 38px;
}

.final-cta-content .hero-actions {
    justify-content: center;
    margin-bottom: 24px;
}

.final-cta-note {
    font-size: 12.5px;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.final-cta-content .kepro-btn-outline-light {
    color: var(--primary-color);
    border-color: var(--border-color);
}

.final-cta-content .kepro-btn-outline-light:hover {
    border-color: var(--secondary-color);
    background: var(--bg-light);
    color: var(--primary-color);
}

.final-cta-content .kp-btn-outline {
    color: var(--primary-color);
    border-color: var(--border-color);
}


/* -------------------------------------------------------------
   22. CONTACT
------------------------------------------------------------- */
.contact-hero {
    padding: 30px 0 32px;
    background: var(--primary-dark);
    color: var(--white);
}

.contact-hero h1 {
    color: var(--white);
    font-size: clamp(38px, 5vw, 60px);
    text-transform: uppercase;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    margin-top: 16px;
    font-size: 15.5px;
}

.contact-section {
    padding: 44px 0;
    background: var(--white);
}

/* Dedicated spacing for the two contact-page sections — built
   specifically for this page rather than reusing generic padding
   + inline-style overrides, so the page doesn't carry more height
   (and therefore scroll) than it needs to. */
.contact-locations-section {
    padding: 44px 0 24px;
    background: var(--white);
}

.contact-form-section {
    padding: 8px 0 44px;
    background: var(--white);
}

.contact-info h2 {
    font-size: clamp(28px, 3.2vw, 38px);
    text-transform: uppercase;
    margin-bottom: 26px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-detail i {
    color: var(--secondary-color);
    font-size: 18px;
    width: 24px;
    margin-top: 2px;
}

.contact-detail strong {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 42px;
    border: 1px solid var(--border-color);
}

.form-label {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    padding: 13px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 14.5px;
    color: var(--text-dark);
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(242, 141, 44, 0.15);
}

.form-note {
    font-size: 12.5px;
    color: var(--text-light);
    margin-top: 14px;
}

.form-alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-alert.success {
    background: #e9f7ee;
    color: #1e7d3b;
    border: 1px solid #b9e6c6;
}

.form-alert.error {
    background: #fdecec;
    color: #b4231f;
    border: 1px solid #f5c2c0;
}

.contact-map-frame {
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* -------------------------------------------------------------
   23. FOOTER
------------------------------------------------------------- */
.site-footer {
    position: relative;
    background: url('../images/facility.jpg');
    background-size: cover;
    background-position: center;
    color: rgba(255, 255, 255, 0.65);
    padding-top: 48px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 26px;
    flex-wrap: wrap;
}

.footer-statement {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.4vw, 42px);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
}

.footer-grid {
    padding: 32px 0;
}

.footer-logo {
    height: 32px;
    margin-bottom: 14px;
}

.footer-col-brand p {
    font-size: 14.5px;
    color: rgb(255, 255, 255);
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 14px;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
}

.footer-social a i {
    color: inherit !important;
    display: inline-block;
    width: 16px;
    text-align: center;
    line-height: 1;
}

.footer-col-title {
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    font-size: 14.5px;
    padding: 4px 0;
    color: rgb(255, 255, 255);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--secondary-light);
}

.footer-address,
.footer-hours {
    font-size: 14.5px;
    padding: 4px 0;
    color: rgb(255, 255, 255);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.footer-col i {
    color: var(--secondary-color);
    width: 14px;

    margin-top: 8px;
    margin-left: 11px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14.5px;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom p {
    color: #fff;
}

.footer-legal {
    display: flex;
    gap: 22px;
}

.footer-legal a:hover {
    color: var(--secondary-light);
}

.back-to-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition), background var(--transition);
    z-index: 400;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-dark);
}

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 86px;
    /* top: auto; */
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 400;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: whatsappPulse 2.4s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

.topbar-whatsapp {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.15);
    padding: 5px 12px;
    border-radius: 30px;
    color: #6fe3a0 !important;
    font-weight: 700;
}

.topbar-whatsapp:hover {
    background: rgba(37, 211, 102, 0.28);
    color: #8ef0b8 !important;
}

.topbar-whatsapp i {
    color: #6fe3a0;
}

/* -------------------------------------------------------------
   24. ANIMATIONS
------------------------------------------------------------- */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* -------------------------------------------------------------
   25. RESPONSIVE
   Bootstrap breakpoints: sm 576 / md 768 / lg 992 / xl 1200 / xxl 1400
   Brief also asks for 1920/1600/1440/1366/1280/1024/480/375 checks —
   handled via the fluid clamp() typography above plus these rules.
------------------------------------------------------------- */

/* 1920px / 1600px — cap hero image height so it never looks stretched */
@media (min-width: 1600px) {

    .hero-carousel .carousel-item,
    .hero-image {
        min-height: 720px;
    }
}

/* 1200px and below (Bootstrap xl) */
@media (max-width: 1199.98px) {
    .hero-panel {
        flex: 0 0 60%;
        max-width: 60%;
    }
}

/* 991.98px and below (Bootstrap lg) — mobile navigation, stacked grids */
@media (max-width: 991.98px) {
    .clientele-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .navbar-inner {
        height: 72px;
    }

    .kepro-navbar.is-scrolled .navbar-inner {
        height: 72px;
    }

    .navbar-collapse {
        background: var(--white);
        margin-top: 14px;
        padding: 18px 4px 22px;
        border-top: 1px solid var(--border-color);
    }

    .kepro-nav .nav-link::after {
        display: none;
    }

    .kepro-nav .nav-link {
        padding: 12px 6px !important;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
    }

    .kepro-nav-cta {
        margin: 16px 6px 0;
        justify-content: center;
    }

    .kepro-mega-menu {
        position: static !important;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        border: none;
        padding: 8px 6px 8px 18px;
        margin-top: 0;
    }

    /* Hero: full-width image with panel overlaid; on mobile, darken
       the whole image (not just a side gradient) so text stays legible */
    .hero-carousel .carousel-item {
        min-height: 560px;
    }

    .hero-panel {
        max-width: 100%;
        padding: 48px clamp(20px, 6vw, 40px);
    }

    .hero-image-scrim {
        background: linear-gradient(180deg, rgba(33, 24, 43, 0.55) 0%, rgba(33, 24, 43, 0.88) 55%, rgba(33, 24, 43, 0.95) 100%);
    }

    .hero-mini-stats {
        gap: 24px;
    }

    .hero-nav-row {
        padding: 14px clamp(20px, 6vw, 40px);
    }

    .about-capabilities {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-feature {
        grid-template-columns: 1fr;
    }

    .product-feature-media {
        min-height: 320px;
    }

    .industry-panels {
        flex-wrap: wrap;
        height: auto;
    }

    .industry-panel {
        flex: 1 1 50%;
        height: 300px;
    }

    .industry-panels:hover .industry-panel,
    .industry-panel:hover {
        flex: 1 1 50% !important;
    }

    .timeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 40px;
    }

    .timeline-track {
        display: none;
    }

    .why-us .row>div {
        margin-bottom: 40px;
    }

    .stat {
        border-left: none;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
        margin-bottom: 20px;
    }

    .quality-grid,
    .contact-grid {
        text-align: left;
    }
}

/* 767.98px and below (Bootstrap md) — tablet portrait */
@media (max-width: 767.98px) {
    .topbar-inner {
        font-size: 11.5px;
    }

    .topbar-right {
        gap: 14px;
    }

    .topbar-tagline {
        display: none !important;
    }

    .clientele-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-heading {
        font-size: clamp(36px, 10vw, 56px);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .section-heading {
        font-size: clamp(28px, 7vw, 40px);
    }

    .about {
        padding: 80px 0 60px;
    }

    .about-media {
        min-height: 320px;
    }

    .about-media img {
        min-height: 320px;
    }

    .products,
    .process,
    .why-us,
    .projects,
    .quality,
    .trust,
    .faq {
        padding: 80px 0;
    }

    .product-feature-content {
        padding: 30px 24px;
    }

    .industry-panel {
        flex: 1 1 100%;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form {
        padding: 26px;
    }
}

/* 575.98px and below (Bootstrap sm) — mobile */
@media (max-width: 575.98px) {

    .topbar-left span,
    .topbar-tagline {
        display: none;
    }

    .quality-marks {
        grid-template-columns: 1fr 1fr;
    }

    .client-logo {
        padding: 16px 22px;
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* 480px and 375px — small mobile fine-tuning */
@media (max-width: 480px) {
    .hero-heading {
        font-size: 32px;
    }

    .spec-panel-value {
        font-size: 28px;
    }

    .btn {
        padding: 13px 22px;
        font-size: 12px;
    }

    .footer-statement {
        font-size: 24px;
    }

    .stats-row .col-6 {
        margin-bottom: 24px;
    }
}

/* =============================================================
   V2 REDESIGN — new visual architecture
   -------------------------------------------------------------
   Distinct component system layered on top of the base file.
   Sharp corners (not pill-rounded), large editorial type, high
   contrast dark/white blocking — deliberately different from
   the earlier rounded-card system above.
   ============================================================= */

/* ---- HEADER ---- */
.kp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    transition: box-shadow var(--transition), height var(--transition);
}

.kp-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(33, 24, 43, 0.08);
}

.kp-header-inner {
    display: flex;
    align-items: center;
    gap: 25px;
    height: 92px;
    transition: height var(--transition);
}

.kp-header.is-scrolled .kp-header-inner {
    height: 70px;
}

.kp-logo img {
    height: 64px;
    width: auto;
    max-width: none;
    transition: height var(--transition);
}

.kp-header.is-scrolled .kp-logo img {
    height: 52px;
}

.kp-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-right: auto;
    margin-left: 16px;
}

.kp-nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: color var(--transition);
}

.kp-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background: var(--secondary-color);
    transition: width var(--transition);
}

.kp-nav-link:hover,
.kp-nav-link.is-active {
    color: var(--secondary-dark);
}

.kp-nav-link:hover::after,
.kp-nav-link.is-active::after {
    width: 100%;
}

.kp-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.kp-header-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 9px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 2px;
    transition: border-color var(--transition), color var(--transition);
}

.kp-header-whatsapp i {
    color: #25D366;
    font-size: 17px;
}

.kp-header-whatsapp:hover {
    border-color: #25D366;
    color: #1a9e4e;
}

.kp-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--primary-color);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.4s ease;
}

.kp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    left: -12%;
    width: 124%;
    background: var(--secondary-color);
    transform: translateX(-100%) skewX(-14deg);
    transition: transform 0.5s cubic-bezier(.65, 0, .35, 1);
    z-index: -1;
}

.kp-cta:hover::before {
    transform: translateX(0) skewX(-14deg);
}

.kp-cta:hover {
    color: var(--white);
}

.kp-cta i {
    transition: transform 0.4s cubic-bezier(.65, 0, .35, 1);
}

.kp-cta:hover i {
    transform: translateX(5px);
}

.kp-cta:active {
    transform: scale(0.97);
}

/* Rounded pill CTA — icon circle expands to fill the button on hover */
.kp-cta-pill {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 6px 6px 26px;
    border-radius: 50px;
    transition: color 0.5s ease, box-shadow 0.5s ease;
}

.kp-cta-pill .icon-circle {
    position: relative;
    z-index: 2;
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(.65, 0, .35, 1), background 0.5s ease, color 0.5s ease;
}

.kp-cta-pill::before {
    content: '';
    position: absolute;
    top: 6px;
    bottom: 6px;
    right: 6px;
    width: 42px;
    border-radius: 50px;
    /* background: linear-gradient(100deg, var(--secondary-dark), var(--secondary-color) 45%, var(--secondary-light)); */
    transition: width 0.5s cubic-bezier(.65, 0, .35, 1);
    /* z-index: 1; */

}

/* diagonal shine sweep across the fill on hover */
.kp-cta-pill::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -60%;
    width: 40%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-20deg);
    transition: left 0.8s ease;
    z-index: 1;
    pointer-events: none;
}

.kp-cta-pill:hover::after {
    left: 130%;
}

.kp-cta-pill:hover {
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.kp-cta-pill:hover::before {
    width: calc(100% - 12px);
}

.kp-cta-pill:hover .icon-circle {
    transform: rotate(-45deg) scale(1.05);
    background: var(--primary-dark);
    color: var(--white);
}

.kp-cta-pill:active {
    transform: scale(0.97);
}

.kp-cta-pill-light {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(213, 180, 13, 0.652);
    color:#d97418;
}

.kp-cta-pill-light:hover {
    color: var(--white);
    border: 1.5px solid rgba(195, 191, 169, 0.173);
}

.kp-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
}

.kp-toggler span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    transition: transform var(--transition), opacity var(--transition);
    margin: 0 auto;
}

.kp-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.kp-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.kp-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.kp-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 88vw);
    height: 100vh;
    background: var(--primary-dark);
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.kp-mobile-nav.is-open {
    transform: translateX(0);
}

.kp-mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.kp-mobile-nav-head img {
    height: 30px;
    filter: brightness(0) invert(1);
}

.kp-mobile-nav-head button {
    color: var(--white);
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
}

.kp-mobile-nav nav {
    display: flex;
    flex-direction: column;
    padding: 8px 24px;
}

.kp-mobile-nav nav a {
    color: var(--white);
    font-weight: 700;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.4px;
}

.kp-mobile-nav-foot {
    padding: 20px 24px;
    margin-top: auto;
}

.kp-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.6);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.kp-mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991.98px) {
    .kp-nav {
        display: none;
    }

    .kp-header-whatsapp span {
        display: none;
    }

    .kp-header-actions>.kp-cta {
        display: none;
    }

    .kp-toggler {
        display: flex;
    }
}

/* ---- HERO v2 ---- */
.kp-hero {
    background: var(--primary-dark);
    overflow: hidden;
}

.kp-hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
    padding: 72px 0 56px;
}

.kp-hero-label {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--secondary-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.kp-hero-label span {
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    display: inline-block;
}

.kp-hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    font-size: clamp(48px, 6vw, 96px);
    line-height: 0.98;
    margin-bottom: 26px;
}

.kp-hero-sub {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16.5px;
    max-width: 460px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.kp-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.kp-hero-actions .kp-cta {
    background: var(--secondary-color);
}

.kp-hero-actions .kp-cta:hover {
    background: var(--secondary-dark);
}

.kp-btn-outline {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: 2px;
    transition: border-color 0.4s ease, color 0.4s ease;
}

.kp-btn-outline::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: var(--secondary-color);
    transition: height 0.4s cubic-bezier(.65, 0, .35, 1);
    z-index: -1;
}

.kp-btn-outline:hover {
    border-color: var(--secondary-color);
    color: var(--white);
}

.kp-btn-outline:hover::before {
    height: 100%;
}

.kp-btn-outline:active {
    transform: scale(0.97);
}

.kp-btn-outline i {
    transition: transform 0.4s cubic-bezier(.65, 0, .35, 1);
}

.kp-btn-outline:hover i {
    transform: translateX(4px);
}

.kp-hero-media {
    position: relative;
}

.kp-hero-media img {
    width: 100%;
    aspect-ratio: 4/3.2;
    object-fit: cover;
    border-radius: 4px;
}

.kp-hero-tag {
    position: absolute;
    background: rgba(20, 15, 26, 0.85);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kp-hero-tag span {
    color: var(--secondary-color);
    font-family: var(--font-display);
    font-size: 15px;
}

.kp-hero-tag-1 {
    top: 10%;
    left: -18px;
}

.kp-hero-tag-2 {
    top: 46%;
    right: -18px;
}

.kp-hero-tag-3 {
    bottom: 8%;
    left: -18px;
}

.kp-hero-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.kp-hero-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.kp-hero-stat {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.kp-hero-stat .stat-number,
.kp-hero-stat .stat-suffix {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--white);
}

.kp-hero-stat .stat-suffix {
    color: var(--secondary-color);
}

.kp-hero-stat p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0 10px;
    align-self: center;
}

.kp-hero-certs {
    display: flex;
    gap: 28px;
}

.kp-hero-certs span {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 14px;
    font-family: var(--font-display);
    border-left: 2px solid var(--secondary-color);
    padding-left: 12px;
}

@media (max-width: 991.98px) {
    .kp-hero-grid {
        grid-template-columns: 1fr;
        padding: 40px 0 32px;
    }

    .kp-hero-tag {
        position: static;
        margin-top: 12px;
        display: inline-flex;
        margin-right: 10px;
    }

    .kp-hero-media {
        display: flex;
        flex-direction: column;
    }

    .kp-hero-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 56px;
    }
}

/* ---- PRODUCT SHOWCASE v2 — large editorial rows ---- */
.kp-showcase {
    padding: 72px 0 40px;
    background: var(--white);
}

.kp-showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    border-top: 1px solid var(--border-color);
}

.kp-showcase-row.is-reverse {
    grid-template-columns: 1fr 1fr;
}

.kp-showcase-row.is-reverse .kp-showcase-media {
    order: 2;
}

.kp-showcase-row.is-reverse .kp-showcase-content {
    order: 1;
}

.kp-showcase-media {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.kp-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.kp-showcase-row:hover .kp-showcase-media img {
    transform: scale(1.04);
}

.kp-showcase-content {
    padding: 56px clamp(24px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-left: 3px solid transparent;
    transition: border-color var(--transition);
}

.kp-showcase-row:hover .kp-showcase-content {
    border-left-color: var(--secondary-color);
}

.kp-showcase-row.is-reverse .kp-showcase-content {
    border-left: none;
    border-right: 3px solid transparent;
}

.kp-showcase-row.is-reverse:hover .kp-showcase-content {
    border-right-color: var(--secondary-color);
}

.kp-showcase-num {
    font-family: var(--font-display);
    font-size: 60px;
    color: var(--border-color);
    line-height: 1;
    margin-bottom: 8px;
    transition: color var(--transition);
}

.kp-showcase-row:hover .kp-showcase-num {
    color: var(--secondary-light);
}

.kp-showcase-cat {
    color: var(--secondary-dark);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.kp-showcase-content h3 {
    font-size: clamp(28px, 3vw, 42px);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.kp-showcase-desc {
    font-size: 15px;
    color: var(--text-dark);
    max-width: 460px;
    margin-bottom: 24px;
}

.kp-showcase-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 28px;
    max-width: 460px;
}

.kp-showcase-specs div {
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
}

.kp-showcase-specs span {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 4px;
}

.kp-showcase-specs strong {
    font-size: 13.5px;
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 767.98px) {

    .kp-showcase-row,
    .kp-showcase-row.is-reverse {
        grid-template-columns: 1fr;
    }

    .kp-showcase-row.is-reverse .kp-showcase-media,
    .kp-showcase-row.is-reverse .kp-showcase-content {
        order: initial;
    }

    .kp-showcase-media {
        min-height: 260px;
    }

    .kp-showcase-content {
        padding: 32px 22px;
    }

    .kp-showcase-specs {
        grid-template-columns: 1fr 1fr;
    }
}
.kp-hero-full {
    position: relative;
    background: var(--primary-dark);
}

.kp-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    max-height: 900px;
    overflow: hidden;
}

.kp-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.kp-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    /* inactive slides can't intercept clicks */
    transition: opacity 1s ease;
}

.kp-slide.is-active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
    /* only the visible slide is clickable */
}

.kp-slide img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    object-position: center;
    display: block;
}

.kp-slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    /* overlay must never block clicks underneath/above */
}

.kp-slide-content {
    position: absolute;
    z-index: 4;
    max-width: 740px;
    padding: 0 clamp(24px, 6vw, 100px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease 0.2s, visibility 0.6s ease 0.2s;
}

.kp-slide.is-active .kp-slide-content {
    opacity: 1;
    visibility: visible;
}

.kp-slide-content.pos-bottom-left {
    left: 0;
    /* bottom: 2%; */
    top: 65%;
    text-align: left;
}

.kp-slide-content.pos-bottom-right {
    right: 0;
    bottom: 14%;
    text-align: right;
}

.kp-slide-content.pos-bottom-center {
    left: 50%;
    /* bottom: 14%; */
    transform: translateX(-50%);
    text-align: center;
    top: 45%;
}

.kp-slide-content.pos-center-left {
    left: 50%;
    top: 75%;
    transform: translateY(-50%);
    text-align: left;
}

.kp-slide-content.pos-center-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
}

.kp-slide-content.pos-top-left {
    left: 0;
    top: 16%;
    text-align: left;
}

.kp-slide-content.pos-top-right {
    right: 0;
    top: 16%;
    text-align: right;
}

.kp-slide-content .kp-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
}

.kp-slide-content.pos-bottom-right .kp-hero-actions,
.kp-slide-content.pos-center-right .kp-hero-actions,
.kp-slide-content.pos-top-right .kp-hero-actions {
    justify-content: flex-end;
}

.kp-slide-content.pos-bottom-center .kp-hero-actions {
    justify-content: center;
}

.kp-slider-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(20, 15, 26, 0.4);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
}

.kp-slider-arrow:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.kp-slider-prev {
    left: 24px;
}

.kp-slider-next {
    right: 24px;
}

.kp-slider-dots {
    position: absolute;
    z-index: 5;
    right: clamp(24px, 6vw, 100px);
    bottom: 6%;
    display: flex;
    gap: 10px;
}

.kp-slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.kp-slider-dots button.is-active {
    background: var(--secondary-color);
    transform: scale(1.25);
}

@media (max-width: 991.98px) {
    .kp-slider-arrow {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 6%;
        transform: none;
    }

    .kp-slider-prev {
        left: auto;
        right: 80px;
    }

    .kp-slider-next {
        right: 24px;
    }

    .kp-slide-content {
        top: auto !important;
        right: auto !important;
        bottom: 20% !important;
        left: 0 !important;
        transform: none !important;
        text-align: left !important;
        max-width: 100%;
    }

    .kp-slide-content .kp-hero-actions {
        justify-content: flex-start !important;
    }
}

@media (max-width: 767.98px) {
    .kp-slider {
        height: 78vh;
        min-height: 480px;
    }

    .kp-slide-content {
        bottom: 22% !important;
    }

    .kp-slider-arrow {
        width: 38px;
        height: 38px;
        bottom: 8%;
    }

    .kp-slider-prev {
        right: 76px;
    }

    .kp-slider-next {
        right: 20px;
    }

    .kp-slider-dots {
        display: none;
    }
}

/* ---- MEGA MENU v2 ---- */
.kp-nav-item {
    position: relative;
}

.kp-nav-link i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform var(--transition);
}

.kp-has-mega:hover .kp-nav-link i {
    transform: rotate(180deg);
}

.kp-mega {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(8px);
    width: 640px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(33, 24, 43, 0.16);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 28px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.kp-has-mega:hover .kp-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.kp-mega-col p {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--primary-color);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}

.kp-mega-col a {
    display: block;
    font-size: 13px;
    color: var(--text-dark);
    padding: 6px 0;
    transition: color var(--transition);
}

.kp-mega-col a:hover {
    color: var(--secondary-dark);
}

.kp-mega-all {
    color: var(--secondary-dark) !important;
    font-weight: 700;
    margin-top: 6px;
}

@media (max-width: 991.98px) {
    .kp-mega {
        display: none;
    }
}

/* ---- CLIENTELE WALL — two continuously scrolling rows ---- */
.kp-wall-row {
    overflow: hidden;
    padding: 8px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.kp-wall-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.kp-wall-left .kp-wall-track {
    animation: wallScrollLeft 40s linear infinite;
}

.kp-wall-right .kp-wall-track {
    animation: wallScrollRight 40s linear infinite;
}

.kp-wall-row:hover .kp-wall-track {
    animation-play-state: paused;
}

.kp-wall-logo {
    flex: 0 0 auto;
    width: 220px;
    height: 132px;
    /* background: var(--bg-light); */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    opacity: 1;
    transition: opacity var(--transition);
}

.kp-wall-logo img {
    max-width: 100%;
    max-height: 88px;
    width: auto;
    height: auto;
    object-fit: cover;
}

.kp-wall-logo:hover {
    opacity: 1;
}

@keyframes wallScrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333%);
    }
}

@keyframes wallScrollRight {
    from {
        transform: translateX(-33.333%);
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 575.98px) {
    .kp-wall-logo {
        width: 130px;
        height: 78px;
        padding: 12px;
    }
}

/* ---- WHY KEPRO v2 — editorial numbered rows ---- */
.kp-why {
    background: var(--primary-dark);
    padding: 80px 0;
}

.kp-why-head {
    max-width: 640px;
    margin-bottom: 48px;
}

.kp-why-head h2 {
    color: var(--white);
    font-size: clamp(28px, 3.4vw, 42px);
    text-transform: uppercase;
    line-height: 1.15;
}

.kp-why-head h2 span {
    color: var(--secondary-color);
}

.kp-why-row {
    display: grid;
    grid-template-columns: 90px 1fr 60px;
    align-items: center;
    gap: 24px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transition: padding-left var(--transition);
}

.kp-why-list .kp-why-row:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.kp-why-row:hover {
    padding-left: 12px;
}

.kp-why-num {
    font-family: var(--font-display);
    font-size: 40px;
    color: rgba(255, 255, 255, 0.28);
    transition: color var(--transition);
}

.kp-why-row:hover .kp-why-num {
    color: var(--secondary-color);
}

.kp-why-body h3 {
    color: var(--white);
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.kp-why-body p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
    max-width: 520px;
}

.kp-why-row i {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.2);
    justify-self: end;
    transition: color var(--transition);
}

.kp-why-row:hover i {
    color: var(--secondary-light);
}

@media (max-width: 575.98px) {
    .kp-why-row {
        grid-template-columns: 50px 1fr;
    }

    .kp-why-row i {
        display: none;
    }
}

/* ---- Mobile submenu (Products accordion) ---- */
.kp-mobile-submenu-wrap {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kp-mobile-submenu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    font-weight: 700;
    padding: 15px 0;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.4px;
    background: transparent;
    border: none;
}

.kp-mobile-submenu-toggle i {
    font-size: 12px;
    transition: transform var(--transition);
    color: var(--secondary-color);
}

.kp-mobile-submenu-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.kp-mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    display: flex;
    flex-direction: column;
}

.kp-mobile-submenu.is-open {
    max-height: 800px;
}

.kp-mobile-submenu p {
    color: var(--secondary-light);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 12px 0 4px;
}

.kp-mobile-submenu a {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500 !important;
    text-transform: none !important;
    font-size: 13.5px !important;
    padding: 8px 0 !important;
    border-bottom: none !important;
}

.kp-mobile-submenu-all {
    color: var(--secondary-color) !important;
    font-weight: 700 !important;
}




/* ---- TOP UTILITY BAR ---- */
.kp-topbar {
    background: var(--primary-dark);
}

.kp-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.kp-topbar-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.kp-topbar-location i {
    color: var(--secondary-color);
}

.kp-topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.kp-topbar-right a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.kp-topbar-right a:hover {
    color: var(--secondary-light);
}

.kp-topbar-right i {
    color: var(--secondary-color);
    font-size: 11px;
}

.kp-topbar-whatsapp {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.kp-topbar-whatsapp i {
    color: var(--white) !important;
    font-size: 13px;
}

.kp-topbar-whatsapp:hover {
    background: #1fb856;
}

@media (max-width: 767.98px) {
    .kp-topbar-location {
        display: none;
    }

    .kp-topbar-right a:not(.kp-topbar-whatsapp) {
        display: none;
    }

    .kp-topbar-inner {
        justify-content: flex-end;
        gap: 10px;
    }
}

/* -------------------------------------------------------------
   PRODUCT SHOWCASE — single unified card (white image zone + navy text zone)
------------------------------------------------------------- */
.kp-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.kp-product-card {
    display: block;
    text-decoration: none;
    border-radius: 26px;
    overflow: hidden;
    /* keeps image + title zone inside ONE rounded shape */
    box-shadow: 0 8px 24px rgba(13, 19, 51, 0.1);
}

/* top zone — white, holds the image */
.kp-product-card-media {
    position: relative;
    background: #ffffff;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.kp-product-card-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    /* overrides your global reset's max-width:100% */
    object-fit: cover;
    object-position: center;
    display: block;
}

/* bottom zone — navy, holds the title */
.kp-product-card-title {
    background: #0d1333;
    padding: 22px 16px;
    text-align: center;
}

.kp-product-card-title h3 {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.2px;
    line-height: 1.35;
}

/* mark a card "active" for the orange-title look */
.kp-product-card.active .kp-product-card-title h3 {
    color: var(--secondary-color);
}

@media (max-width: 991.98px) {
    .kp-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .kp-product-grid {
        grid-template-columns: 1fr;
    }

    .kp-product-card-media {
        height: 220px;
    }
}