/* =========================================================
   KALPANA ENTERPRISES
   MAIN STYLESHEET
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: #080a0b;
    color: #f5f5f5;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --black: #080a0b;

    --black-soft: #0d1011;

    --white: #f5f5f5;

    --muted: #91a0ad;

    --line: #20272b;

    --cyan: #08bce9;

    --cyan-bright: #11d1f5;

    --container: 1380px;

}


/* =========================================================
   GLOBAL
========================================================= */

.section-container {

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;

}


/* =========================================================
   KALPANA ENTERPRISES HEADER
========================================================= */

.site-header {

    width: 100%;

    background: #080a0b;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    position: relative;

    z-index: 9999;

}


/* =========================================================
   HEADER INNER
========================================================= */

.header-inner {

    width: 100%;

    min-height: 125px;

    padding: 0 4.5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


/* =========================================================
   LOGO
========================================================= */

.site-branding {

    flex: 0 0 auto;

    display: flex;

    align-items: center;

}


.site-logo-link {

    display: flex;

    align-items: center;

    text-decoration: none;

    line-height: 0;

}


.site-logo {

    display: block;

    width: 420px;

    height: auto;

    max-width: 100%;

    object-fit: contain;

}


/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation {

    display: flex;

    align-items: center;

    gap: 60px;

    margin-left: 40px;

    

}


.main-navigation a {

    position: relative;

    color: #f4f4f4;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    font-weight: 500;

    line-height: 1;

    white-space: nowrap;

    letter-spacing: 0.2px;

    transition:
        color 0.25s ease;

}


.main-navigation a:hover {

    color: #00c8f5;

}


/* =========================================================
   NAVIGATION HOVER LINE
========================================================= */

.main-navigation a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -10px;

    width: 0;

    height: 2px;

    background: #00c8f5;

    transition: width 0.25s ease;

}


.main-navigation a:hover::after {

    width: 100%;

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-button {

    display: none;

    width: 46px;

    height: 46px;

    padding: 10px;

    border: 1px solid rgba(0, 200, 245, 0.35);

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

}


.mobile-menu-button span {

    display: block;

    width: 22px;

    height: 2px;

    background: #ffffff;

    transition: 0.25s ease;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .header-inner {

        min-height: 105px;

        padding: 0 30px;

        gap: 25px;

    }


    .site-logo {

        width: 310px;

    }


    .main-navigation {

        gap: 25px;

    }


    .main-navigation a {

        font-size: 14px;

    }

}


/* =========================================================
   SMALL TABLET / MOBILE
========================================================= */

@media (max-width: 800px) {

    .header-inner {

        min-height: 90px;

        padding: 0 22px;

    }


    .site-logo {

        width: 270px;

    }


    .main-navigation {

        display: none;

    }


    .mobile-menu-button {

        display: flex;

        flex: 0 0 auto;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 500px) {

    .header-inner {

        min-height: 78px;

        padding: 0 18px;

    }


    .site-logo {

        width: 220px;

    }


    .mobile-menu-button {

        width: 42px;

        height: 42px;

    }

}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    position: relative;

    min-height: 720px;

    overflow: hidden;

    border-bottom: 1px solid var(--line);

}


.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .45;

    background-image:

        linear-gradient(
            rgba(30, 40, 44, .45) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(30, 40, 44, .45) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    pointer-events: none;

}


.hero-top-line {

    position: absolute;

    top: 58px;

    left: 30px;

    right: 30px;

    display: flex;

    justify-content: space-between;

    z-index: 5;

    font-family: monospace;

    font-size: 11px;

    letter-spacing: .2em;

    color: #93a3ae;

}


.hero-top-line i {

    display: inline-block;

    width: 8px;

    height: 8px;

    background: var(--cyan);

    border-radius: 50%;

    margin-right: 18px;

}


/* SLIDES */

.hero-carousel {

    position: relative;

    width: 100%;

    height: 720px;

}


.hero-slide {

    position: absolute;

    inset: 0;

    padding: 180px 80px 80px;

    display: grid;

    grid-template-columns: 55% 45%;

    align-items: center;

    opacity: 0;

    transform: translateX(30px);

    pointer-events: none;

    transition:

        opacity .7s ease,

        transform .7s ease;

}


.hero-slide.active {

    opacity: 1;

    transform: translateX(0);

    pointer-events: auto;

}


.hero-content {

    position: relative;

    z-index: 4;

}


.section-label {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 38px;

    color: var(--cyan);

    font-family: monospace;

    font-size: 11px;

    letter-spacing: .25em;

}


.section-label span {

    display: inline-block;

    width: 60px;

    height: 1px;

    background: var(--cyan);

}


.hero-content h1 {

    margin: 0;

    font-size: clamp(
        64px,
        7vw,
        116px
    );

    line-height: .9;

    letter-spacing: -.055em;

    font-weight: 800;

}


.hero-content h1 strong {

    color: var(--cyan);

}


.hero-content p {

    margin: 48px 0 32px;

    max-width: 680px;

    color: #91a4b0;

    font-size: 19px;

    line-height: 1.8;

}


.hero-buttons {

    display: flex;

    align-items: center;

    gap: 30px;

}


/* HERO IMAGE */

.hero-image-placeholder {

    height: 440px;

    border: 1px solid #202b30;

    background:

        radial-gradient(
            circle at center,
            rgba(8, 188, 233, .08),
            transparent 60%
        );

    display: flex;

    align-items: center;

    justify-content: center;

    color: #3e555f;

    font-family: monospace;

    letter-spacing: .25em;

}


.placeholder-text {

    border: 1px dashed #31434b;

    padding: 20px 30px;

    font-size: 11px;

}


/* BUTTONS */

.btn-primary {

    display: inline-flex;

    align-items: center;

    gap: 22px;

    padding: 17px 24px;

    background: var(--cyan);

    color: #061014;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .08em;

    transition:

        transform .25s ease,

        background .25s ease;

}


.btn-primary:hover {

    background: var(--cyan-bright);

    transform: translateY(-2px);

}


.btn-secondary {

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .08em;

    border-bottom: 1px solid #64727a;

    padding-bottom: 8px;

}


.hero-controls {

    position: absolute;

    bottom: 50px;

    right: 80px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 20px;

}


.hero-controls button {

    width: 48px;

    height: 48px;

    border: 1px solid #354148;

    background: transparent;

    color: white;

    cursor: pointer;

    transition: .25s ease;

}


.hero-controls button:hover {

    border-color: var(--cyan);

    color: var(--cyan);

}


.hero-counter {

    font-family: monospace;

    font-size: 12px;

    letter-spacing: .2em;

    color: #7f919c;

}


.current-slide {

    color: var(--cyan);

}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {

    padding: 150px 0;

    border-bottom: 1px solid var(--line);

}


.section-heading-row {

    display: grid;

    grid-template-columns: 1.5fr 1fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 70px;

}


.section-heading-row h2,
.partners-heading h2,
.excellence-heading h2,
.support-section h2,
.quote-section h2 {

    margin: 0;

    font-size: clamp(
        48px,
        5vw,
        78px
    );

    line-height: .95;

    letter-spacing: -.05em;

}


.section-heading-row h2 strong,
.partners-heading h2 strong,
.excellence-heading h2 strong,
.support-section h2 strong,
.quote-section h2 strong {

    color: var(--cyan);

}


.section-heading-row > p {

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;

    margin: 0;

}


.product-carousel-wrapper {

    position: relative;

}


.product-carousel {

    display: flex;

    gap: 20px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;

}


.product-carousel::-webkit-scrollbar {

    display: none;

}


.product-card {

    min-width: 330px;

    flex: 0 0 330px;

    border: 1px solid var(--line);

    background: #0c0f10;

    padding: 18px;

    transition:

        transform .3s ease,

        border-color .3s ease;

}


.product-card:hover {

    transform: translateY(-8px);

    border-color: var(--cyan);

}


.product-image {

    height: 250px;

    background: #111617;

    border: 1px solid #20282c;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #52636b;

    font-family: monospace;

    font-size: 10px;

    letter-spacing: .2em;

}


.product-number {

    margin-top: 22px;

    color: var(--cyan);

    font-family: monospace;

    font-size: 11px;

}


.product-card h3 {

    margin: 10px 0;

    font-size: 24px;

}


.product-card p {

    color: var(--muted);

    line-height: 1.6;

}


.product-card a {

    display: inline-block;

    margin-top: 12px;

    color: var(--cyan);

    font-family: monospace;

    font-size: 11px;

    letter-spacing: .12em;

}


.product-prev,
.product-next {

    position: absolute;

    top: -110px;

    width: 48px;

    height: 48px;

    background: transparent;

    border: 1px solid #354148;

    color: white;

    cursor: pointer;

    z-index: 5;

}


.product-prev {

    right: 65px;

}


.product-next {

    right: 0;

}


.product-prev:hover,
.product-next:hover {

    color: var(--cyan);

    border-color: var(--cyan);

}


/* =========================================================
   PARTNERS
========================================================= */

.partners-section {

    padding: 150px 0;

    border-bottom: 1px solid var(--line);

}


.partners-heading {

    max-width: 850px;

    margin-bottom: 80px;

}


.partners-heading p {

    max-width: 650px;

    margin-top: 35px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;

}


.partners-grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid var(--line);

    border-left: 1px solid var(--line);

}


.partner-logo {

    min-height: 150px;

    border-right: 1px solid var(--line);

    border-bottom: 1px solid var(--line);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

}


.partner-placeholder {

    width: 100%;

    height: 90px;

    border: 1px dashed #34444b;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #657781;

    font-family: monospace;

    font-size: 10px;

    letter-spacing: .15em;

    transition: .3s ease;

}


.partner-placeholder:hover {

    color: var(--cyan);

    border-color: var(--cyan);

}


/* =========================================================
   STANDARDS
========================================================= */

.standards-section {

    border-bottom: 1px solid var(--line);

}


.standards-container {

    width: min(
        calc(100% - 80px),
        1200px
    );

    min-height: 180px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 50px;

}


.standard-item {

    display: flex;

    align-items: center;

    gap: 20px;

}


.standard-icon {

    color: var(--cyan);

    font-size: 25px;

}


.standard-item span {

    display: block;

    font-family: monospace;

    font-size: 12px;

    letter-spacing: .2em;

}


.standard-item small {

    display: block;

    margin-top: 8px;

    color: #56666e;

    font-family: monospace;

    font-size: 9px;

    letter-spacing: .15em;

}


.standard-divider {

    height: 35px;

    width: 1px;

    background: #303a3e;

}



/* =========================================================
   SUPPORT
========================================================= */

.support-section {

    padding: 150px 0;

    border-bottom: 1px solid var(--line);

}


.support-grid {

    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr;

    gap: 20px;

}


.support-grid > div:first-child {

    padding-right: 60px;

}


.support-section h2 {

    margin-bottom: 30px;

}


.support-section p {

    color: var(--muted);

    line-height: 1.8;

    max-width: 620px;

}


.support-box {

    border: 1px solid var(--line);

    padding: 35px;

    min-height: 260px;

    background: #0b0e0f;

    transition: .3s ease;

}


.support-box:hover {

    border-color: var(--cyan);

    transform: translateY(-5px);

}


.support-box span {

    color: var(--cyan);

    font-family: monospace;

    font-size: 10px;

    letter-spacing: .2em;

}


.support-box h3 {

    margin-top: 70px;

    font-size: 24px;

}


/* =========================================================
   QUOTE
========================================================= */

.quote-section {

    padding: 150px 0;

    background: #0b0e0f;

}


.quote-grid {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 100px;

}


.quote-section h2 {

    margin-bottom: 30px;

}


.quote-section p {

    color: var(--muted);

    line-height: 1.8;

}


.quote-form {

    border: 1px solid var(--line);

    padding: 45px;

    background: #080a0b;

}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}


.form-field {

    margin-bottom: 25px;

}


.form-field label {

    display: block;

    margin-bottom: 10px;

    color: #8a9aa3;

    font-family: monospace;

    font-size: 10px;

    letter-spacing: .15em;

}


.form-field input,
.form-field textarea,
.form-field select {

    width: 100%;

    border: 1px solid #2b363b;

    background: #101415;

    color: white;

    padding: 15px;

    outline: none;

}


.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {

    border-color: var(--cyan);

}


.form-field textarea {

    resize: vertical;

}


.quote-submit {

    border: 0;

    background: var(--cyan);

    color: #061014;

    padding: 18px 25px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .1em;

    cursor: pointer;

}


.quote-submit span {

    margin-left: 20px;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background: #050707;

    padding: 70px 0 30px;

}


.footer-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    padding-bottom: 60px;

    border-bottom: 1px solid var(--line);

}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 20px;

}


.footer-ke {

    font-size: 38px;

    letter-spacing: -.08em;

}


.footer-brand strong {

    display: block;

    font-size: 18px;

}


.footer-brand span {

    display: block;

    margin-top: 5px;

    color: #63737c;

    font-size: 9px;

    letter-spacing: .1em;

}


.footer-tagline {

    color: #66757d;

    font-family: monospace;

    font-size: 11px;

    letter-spacing: .2em;

    line-height: 1.7;

    text-align: right;

}


.footer-tagline strong {

    color: var(--cyan);

}


.footer-bottom {

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    color: #56646b;

    font-family: monospace;

    font-size: 9px;

    letter-spacing: .1em;

}


/* =========================================================
   DEFAULT PAGE
========================================================= */

.default-page {

    min-height: 600px;

    padding: 120px 0;

}


.default-page h1 {

    font-size: 60px;

}


.post-body {

    color: var(--muted);

    line-height: 1.8;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {


    .main-navigation {

        gap: 20px;

    }


    .header-search input {

        width: 200px;

    }


    .hero-slide {

        grid-template-columns: 1fr;

        padding: 150px 50px 100px;

    }


    .hero-image-placeholder {

        display: none;

    }


    .section-heading-row,
    .excellence-heading {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .partners-grid {

        grid-template-columns: repeat(3, 1fr);

    }


    .support-grid {

        grid-template-columns: 1fr 1fr;

    }


    .support-grid > div:first-child {

        grid-column: 1 / -1;

    }


    .quote-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }

}


@media (max-width: 800px) {


    .section-container,
    .header-inner {

        width: min(
            calc(100% - 40px),
            var(--container)
        );

    }


    .main-navigation,
    .power-badge,
    .header-search {

        display: none;

    }


    .mobile-menu-button {

        display: block;

    }


    




    .products-section,
    .partners-section,
    .excellence-section,
    .support-section,
    .quote-section {

        padding: 100px 0;

    }


    .partners-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .standards-container {

        width: calc(100% - 40px);

        grid-template-columns: 1fr;

        padding: 50px 0;

        gap: 30px;

    }


    .standard-divider {

        display: none;

    }


    .excellence-row {

        grid-template-columns: 80px 1fr;

        gap: 20px;

        padding: 30px 0;

    }


    .excellence-arrow {

        display: none;

    }


    .excellence-number .counter {

        font-size: 38px;

    }


    .support-grid {

        grid-template-columns: 1fr;

    }


    .support-grid > div:first-child {

        grid-column: auto;

        padding-right: 0;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .quote-form {

        padding: 25px;

    }


    .footer-top,
    .footer-bottom {

        flex-direction: column;

        gap: 30px;

    }


    .footer-tagline {

        text-align: left;

    }

}


@media (max-width: 500px) {


    .brand-text {

        display: none;

    }


    .hero-content h1 {

        font-size: 48px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

    }


    .product-card {

        min-width: 285px;

        flex-basis: 285px;

    }


    .partners-grid {

        grid-template-columns: 1fr;

    }


    .section-heading-row h2,
    .partners-heading h2,
    .excellence-heading h2,
    .support-section h2,
    .quote-section h2 {

        font-size: 43px;

    }

}

/* =========================================================
   KALPANA - GLOBAL PARTNERS
   ========================================================= */

.global-partners {
    width: 100%;
    padding: 120px 8%;
    background: #080a0b;
    overflow: hidden;
}

.global-partners .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    color: #00c8f5;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;

    margin-bottom: 28px;
}

.global-partners .label-line {
    width: 45px;
    height: 1px;
    background: #00c8f5;
}

.partners-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.partners-heading h2 {
    margin: 0;

    color: #f5f5f5;
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.partners-heading h2 span {
    color: #00c8f5;
}

.partners-heading p {
    max-width: 650px;
    margin: 28px auto 0;

    color: #87939d;
    font-size: 16px;
    line-height: 1.7;
}


/* BRAND GRID */

.brand-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid rgba(255,255,255,0.08);
    border-left: 1px solid rgba(255,255,255,0.08);
}

.brand-card {
    min-height: 145px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.brand-card span {
    width: 80%;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px dashed rgba(0,200,245,0.25);

    color: #64717a;

    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;

    transition: all 0.3s ease;
}

.brand-card:hover {
    background: rgba(0,200,245,0.035);
}

.brand-card:hover span {
    color: #00c8f5;
    border-color: rgba(0,200,245,0.6);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .global-partners {
        padding: 75px 18px;
    }

    .global-partners .section-label {
        font-size: 9px;
        letter-spacing: 3px;
        margin-bottom: 22px;
    }

    .global-partners .label-line {
        width: 28px;
    }

    .partners-heading {
        margin-bottom: 38px;
    }

    .partners-heading h2 {
        font-size: clamp(36px, 11vw, 54px);
        line-height: 0.98;
        letter-spacing: -1.5px;
    }

    .partners-heading p {
        font-size: 13px;
        line-height: 1.6;
        margin-top: 18px;
        padding: 0 8px;
    }

    /*
     * IMPORTANT:
     * 15 brands become 2 columns on mobile.
     * This dramatically reduces vertical scrolling.
     */

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-card {
        min-height: 95px;
        padding: 12px;
    }

    .brand-card span {
        width: 90%;
        height: 52px;

        font-size: 8px;
        letter-spacing: 2px;
    }

}


/* Very small phones */

@media (max-width: 380px) {

    .global-partners {
        padding-left: 12px;
        padding-right: 12px;
    }

    .brand-card {
        min-height: 82px;
        padding: 8px;
    }

    .brand-card span {
        height: 45px;
        font-size: 7px;
        letter-spacing: 1.5px;
    }

}

/* =========================================================
   HEADER - RESPONSIVE
   ========================================================= */

.header-inner {
    width: 100%;
    min-height: 108px;
    padding: 0 5%;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: #080a0b;
    border-bottom: 1px solid rgba(255,255,255,0.08);

    position: relative;
    z-index: 1000;
}


/* LOGO */

.site-branding {
    flex-shrink: 0;
}

.site-branding a {
    display: flex;
    align-items: center;
    gap: 14px;

    text-decoration: none;
    color: #fff;
}

.brand-ke {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: -3px;
    color: #f5f5f5;
}

.brand-text {
    display: flex;
    flex-direction: column;

    padding-left: 14px;
    border-left: 1px solid rgba(255,255,255,0.25);
}

.brand-text strong {
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

.brand-text small {
    margin-top: 5px;

    color: #68747d;
    font-size: 7px;
    letter-spacing: 1px;
}


/* NAVIGATION */

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;

    margin-left: auto;
}

.main-navigation a {
    color: #f1f1f1;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.main-navigation a:hover {
    color: #00c8f5;
}


/* POWER BADGE */

.power-badge {
    width: 74px;
    height: 74px;

    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #00c8f5;

    border-radius: 16px;

    color: #071014;

    text-align: center;
}

.power-badge span {
    font-size: 7px;
    letter-spacing: 3px;
    font-weight: 600;
}

.power-badge strong {
    margin-top: 5px;

    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
}


/* MOBILE BUTTON */

.mobile-menu-button {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    background: transparent;

    border: 1px solid rgba(255,255,255,0.2);

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 18px;
    height: 1px;

    background: #f5f5f5;

    transition: all 0.25s ease;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .header-inner {
        padding: 0 4%;
        gap: 20px;
    }

    .main-navigation {
        gap: 22px;
    }

    .main-navigation a {
        font-size: 13px;
    }

    .power-badge {
        width: 64px;
        height: 64px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .header-inner {
        min-height: 92px;

        padding: 0 18px;

        gap: 12px;
    }


    /* LOGO */

    .site-branding a {
        gap: 10px;
    }

    .brand-ke {
        font-size: 29px;
        letter-spacing: -2px;
    }

    .brand-text {
        padding-left: 10px;
    }

    .brand-text strong {
        font-size: 13px;
    }

    .brand-text small {
        font-size: 6px;
        letter-spacing: 0.7px;
    }


    /* HIDE DESKTOP NAV */

    .main-navigation {
        display: none;

        position: absolute;

        top: 92px;
        left: 0;

        width: 100%;

        padding: 18px;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        background: #080a0b;

        border-top: 1px solid rgba(255,255,255,0.08);
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .main-navigation a {
        display: block;

        padding: 16px 8px;

        font-size: 14px;

        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .main-navigation a:last-child {
        border-bottom: none;
    }


    /* SHOW MOBILE BUTTON */

    .mobile-menu-button {
        display: flex;
    }


    /* POWER BADGE */

    .power-badge {
        display: none;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .header-inner {
        padding: 0 14px;
    }

    .brand-ke {
        font-size: 25px;
    }

    .brand-text strong {
        font-size: 11px;
    }

    .brand-text small {
        font-size: 5px;
    }

    .mobile-menu-button {
        width: 42px;
        height: 42px;
    }

}

/* =========================================================
   INDUSTRIAL EXCELLENCE
   ========================================================= */

.industrial-excellence {
    width: 100%;
    background: #080a0b;
    padding: 140px 8%;
    overflow: hidden;
}

.excellence-container {
    max-width: 1250px;
    margin: 0 auto;
}


/* LABEL */

.excellence-label {
    display: flex;
    align-items: center;
    gap: 14px;

    color: #00c8f5;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;

    margin-bottom: 70px;
}

.excellence-label .label-line {
    width: 64px;
    height: 1px;
    background: #00c8f5;
}


/* INTRO */

.excellence-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(260px, .7fr);
    gap: 100px;

    align-items: start;

    margin-bottom: 100px;
}

.excellence-title h2 {
    margin: 0;

    font-size: clamp(75px, 9vw, 135px);
    line-height: .84;

    font-weight: 800;
    letter-spacing: -5px;

    color: #f5f5f5;
    text-transform: uppercase;
}

.excellence-title h2 span {
    color: #00c8f5;
}


.excellence-description {
    padding-top: 12px;
}

.excellence-description p {
    margin: 0;

    color: #81909b;

    font-size: 20px;
    line-height: 1.8;
}


/* LIST */

.excellence-list {
    border-top: 1px solid rgba(255,255,255,.12);
}


/* ITEM */

.excellence-item {
    display: grid;

    grid-template-columns: 200px minmax(0, 1fr) 80px;

    align-items: center;

    min-height: 240px;

    border-bottom: 1px solid rgba(255,255,255,.12);

    transition:
        background .35s ease,
        padding .35s ease;
}

.excellence-item:hover {
    background: rgba(0,200,245,.025);
    padding-left: 20px;
}


/* NUMBER */

.excellence-number {
    display: flex;
    align-items: center;
}

.counter-number {
    color: #00c8f5;

    font-size: 78px;
    line-height: 1;

    font-weight: 400;

    letter-spacing: -3px;
}


/* CONTENT */

.excellence-content {
    padding: 40px 40px;
}

.excellence-item-label {
    margin-bottom: 14px;

    color: #00c8f5;

    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.excellence-content h3 {
    margin: 0 0 16px;

    color: #f5f5f5;

    font-size: 36px;
    line-height: 1.15;
}

.excellence-content p {
    max-width: 700px;

    margin: 0;

    color: #7f8c96;

    font-size: 18px;
    line-height: 1.75;
}


/* ARROW */

.excellence-arrow {
    color: #00c8f5;

    font-size: 36px;

    text-align: right;

    transition: transform .3s ease;
}

.excellence-item:hover .excellence-arrow {
    transform: translate(5px,-5px);
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .industrial-excellence {
        padding: 85px 20px;
    }

    .excellence-label {
        margin-bottom: 45px;

        font-size: 8px;
        letter-spacing: 3px;
    }

    .excellence-label .label-line {
        width: 35px;
    }


    .excellence-intro {
        display: block;

        margin-bottom: 55px;
    }

    .excellence-title h2 {
        font-size: clamp(48px, 14vw, 70px);

        letter-spacing: -3px;

        line-height: .88;
    }

    .excellence-description {
        margin-top: 35px;
        padding: 0;
    }

    .excellence-description p {
        font-size: 14px;
        line-height: 1.65;
    }


    .excellence-item {
        grid-template-columns: 70px minmax(0,1fr) 30px;

        min-height: 170px;
    }

    .excellence-item:hover {
        padding-left: 0;
    }

    .excellence-number {
        align-self: start;
        padding-top: 35px;
    }

    .counter-number {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .excellence-content {
        padding: 30px 10px;
    }

    .excellence-item-label {
        font-size: 7px;
        letter-spacing: 1.8px;
    }

    .excellence-content h3 {
        font-size: 21px;
    }

    .excellence-content p {
        font-size: 12px;
        line-height: 1.6;
    }

    .excellence-arrow {
        font-size: 20px;
    }

}

/

/* =========================================================
   FINAL LAYOUT FIX
   INDUSTRIAL EXCELLENCE + REQUEST A QUOTE
========================================================= */


/* =========================================================
   INDUSTRIAL EXCELLENCE
========================================================= */

.industrial-excellence {
    width: 100%;
    padding: 140px 6%;
    overflow: hidden;
}

.excellence-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}

.excellence-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
    gap: 80px;
    align-items: start;
    margin-bottom: 100px;
}

.excellence-title {
    min-width: 0;
}

.excellence-title h2 {
    margin: 0;
    max-width: 900px;

    font-size: clamp(58px, 6.5vw, 105px);
    line-height: .86;
    font-weight: 800;
    letter-spacing: -4px;

    color: #f5f5f5;
    text-transform: uppercase;
}

.excellence-title h2 span {
    color: #00c8f5;
}

.excellence-description {
    min-width: 0;
    padding-top: 8px;
}

.excellence-description p {
    max-width: 360px;
    margin: 0;

    color: #81909b;
    font-size: 17px;
    line-height: 1.75;
}


/* EXCELLENCE ITEMS */

.excellence-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 70px;

    align-items: center;
    min-height: 220px;

    border-bottom: 1px solid rgba(255,255,255,.12);

    transition:
        background .35s ease,
        padding .35s ease;
}

.excellence-number {
    display: flex;
    align-items: center;
}

.counter-number {
    color: #00c8f5;
    font-size: 64px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -3px;
}

.excellence-content {
    min-width: 0;
    padding: 35px 40px;
}

.excellence-content h3 {
    margin: 0 0 14px;
    color: #f5f5f5;
    font-size: 30px;
    line-height: 1.1;
}

.excellence-content p {
    max-width: 650px;
    margin: 0;

    color: #7f8c96;
    font-size: 15px;
    line-height: 1.7;
}

.excellence-arrow {
    color: #00c8f5;
    font-size: 30px;
    text-align: right;
}


/


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .excellence-intro {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .excellence-description {
        padding-top: 0;
    }

    .excellence-description p {
        max-width: 650px;
    }

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .quote-form {
        max-width: 900px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .industrial-excellence {
        padding: 90px 20px;
    }

    .excellence-intro {
        display: block;
        margin-bottom: 60px;
    }

    .excellence-title h2 {
        font-size: clamp(48px, 14vw, 72px);
        line-height: .88;
        letter-spacing: -3px;
    }

    .excellence-description {
        margin-top: 35px;
    }

    .excellence-description p {
        font-size: 14px;
        line-height: 1.65;
    }

    .excellence-item {
        grid-template-columns: 65px minmax(0, 1fr);
        min-height: 170px;
    }

    .excellence-number {
        align-self: start;
        padding-top: 32px;
    }

    .counter-number {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .excellence-content {
        padding: 30px 10px;
    }

    .excellence-content h3 {
        font-size: 21px;
    }

    .excellence-content p {
        font-size: 12px;
        line-height: 1.6;
    }

    .excellence-arrow {
        display: none;
    }


    /* QUOTE MOBILE */

    .quote-section {
        padding: 90px 20px;
    }

    .quote-grid {
        display: block;
    }

    .quote-grid h2 {
        max-width: 100%;

        font-size: clamp(45px, 13vw, 68px);
        line-height: .9;
        letter-spacing: -2px;
    }

    .quote-grid > div > p {
        font-size: 14px;
        line-height: 1.65;
    }

    .quote-form {
        width: 100%;
        max-width: none;

        margin-top: 50px;
        padding: 25px 20px;
    }

    .quote-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .quote-form .form-field {
        margin-bottom: 20px;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        padding: 15px;
    }

    .quote-form textarea {
        min-height: 140px;
    }

    .quote-form .quote-submit {
        min-height: 60px;
    }
}

/* =========================================================
   REQUEST A QUOTE - FINAL FIX
   ========================================================= */

.quote-section {
    width: 100%;
    padding: 150px 6%;
    background: #0b0e0f;
    overflow: hidden;
}

.quote-grid {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(560px, 0.85fr);

    gap: 100px;
    align-items: start;
}

/* LEFT CONTENT */

.quote-grid > div {
    min-width: 0;
}

.quote-grid h2 {
    margin: 45px 0 30px;

    max-width: 650px;

    font-size: clamp(55px, 5.8vw, 92px);
    line-height: 0.88;

    font-weight: 800;
    letter-spacing: -4px;

    color: #f5f5f5;
    text-transform: uppercase;
}

.quote-grid h2 strong {
    color: #00c8f5;
    font-weight: 800;
}

.quote-grid > div > p {
    max-width: 560px;
    margin: 0;

    color: #81909b;

    font-size: 17px;
    line-height: 1.7;
}

/* FORM */

.quote-form {
    width: 100%;
    box-sizing: border-box;

    padding: 48px;

    border: 1px solid rgba(255,255,255,0.14);

    background: rgba(255,255,255,0.015);
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px;
    margin-bottom: 24px;
}

.quote-form .form-field {
    min-width: 0;
}

.quote-form label {
    display: block;

    margin-bottom: 9px;

    color: #00c8f5;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    box-sizing: border-box;

    padding: 17px;

    color: #f5f5f5;
    background: #0c1012;

    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 0;

    outline: none;

    font-family: inherit;
    font-size: 14px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: #00c8f5;
}

.quote-form textarea {
    min-height: 170px;
    resize: vertical;
}

.quote-form .quote-submit {
    width: 100%;
    min-height: 65px;

    margin-top: 25px;

    border: none;

    background: #00c8f5;
    color: #071014;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;

    text-transform: uppercase;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* TABLET */

@media (max-width: 1100px) {

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .quote-grid h2 {
        max-width: 800px;
    }

    .quote-form {
        max-width: 900px;
    }
}

/* MOBILE */

@media (max-width: 700px) {

    .quote-section {
        padding: 90px 20px;
    }

    .quote-grid {
        display: block;
    }

    .quote-grid h2 {
        max-width: 100%;

        font-size: clamp(45px, 13vw, 68px);
        line-height: 0.9;
        letter-spacing: -2px;
    }

    .quote-grid > div > p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.65;
    }

    .quote-form {
        width: 100%;
        max-width: none;

        margin-top: 50px;
        padding: 25px 20px;
    }

    .quote-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .quote-form .form-field {
        margin-bottom: 20px;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        padding: 15px;
    }

    .quote-form textarea {
        min-height: 140px;
    }

    .quote-form .quote-submit {
        min-height: 60px;
    }
}

/* =========================================================
   KALPANA ENTERPRISES
   CONTACT PAGE
========================================================= */

.ke-contact-page {
    width: 100%;
    background: #080a0b;
    color: #f5f5f5;
    overflow: hidden;
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.ke-contact-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/* =========================================================
   CONTACT HERO
========================================================= */

.ke-contact-hero {
    padding: 120px 6% 100px;
    background: #080a0b;
}

.ke-contact-label {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 42px;

    color: #00c8f5;

    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.ke-contact-label span {
    width: 60px;
    height: 1px;
    display: block;

    background: #00c8f5;
}

.ke-contact-hero h1 {
    margin: 0;

    max-width: 1000px;

    font-size: clamp(75px, 10vw, 150px);
    line-height: .82;

    font-weight: 800;
    letter-spacing: -7px;

    text-transform: uppercase;
}

.ke-contact-hero h1 strong {
    display: block;
    color: #00c8f5;
}

.ke-contact-hero p {
    max-width: 620px;

    margin: 45px 0 0;

    color: #81909b;

    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   MAIN CONTACT AREA
========================================================= */

.ke-contact-main {
    padding: 80px 6% 150px;
    background: #080a0b;
}

.ke-contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .85fr)
        minmax(540px, 1.15fr);

    gap: 100px;

    align-items: start;
}


/* =========================================================
   LEFT INFORMATION
========================================================= */

.ke-contact-info {
    min-width: 0;
}

.ke-contact-info h2 {
    margin: 40px 0 30px;

    max-width: 650px;

    font-size: clamp(48px, 5vw, 78px);
    line-height: .88;

    font-weight: 800;
    letter-spacing: -4px;

    text-transform: uppercase;
}

.ke-contact-info h2 strong {
    color: #00c8f5;
}

.ke-contact-description {
    max-width: 560px;

    margin: 0;

    color: #81909b;

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.ke-contact-details {
    margin-top: 65px;

    border-top: 1px solid rgba(255,255,255,.12);
}

.ke-contact-detail {
    display: grid;

    grid-template-columns: 55px minmax(0,1fr);

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid rgba(255,255,255,.12);
}

.ke-detail-number {
    color: #00c8f5;

    font-family: monospace;
    font-size: 12px;
    letter-spacing: 1px;
}

.ke-contact-detail small {
    display: block;

    margin-bottom: 8px;

    color: #00c8f5;

    font-size: 9px;
    letter-spacing: 2px;
}

.ke-contact-detail a,
.ke-contact-detail p {
    margin: 0;

    color: #f5f5f5;

    font-size: 15px;
    line-height: 1.6;

    text-decoration: none;
}

.ke-contact-detail a:hover {
    color: #00c8f5;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.ke-contact-form-wrap {
    width: 100%;
    min-width: 0;
}

.ke-contact-form {
    width: 100%;
    box-sizing: border-box;

    padding: 50px;

    border: 1px solid rgba(255,255,255,.14);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.025),
            rgba(255,255,255,.008)
        );
}


/* FORM HEADING */

.ke-contact-form-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 28px;

    margin-bottom: 30px;

    border-bottom: 1px solid rgba(255,255,255,.10);
}

.ke-contact-form-heading span {
    color: #f5f5f5;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.ke-contact-form-heading small {
    color: #00c8f5;

    font-size: 8px;
    letter-spacing: 2px;
}


/* FORM ROW */

.ke-contact-row {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr);

    gap: 22px;

    margin-bottom: 22px;
}


/* FIELD */

.ke-contact-field {
    width: 100%;
    min-width: 0;

    margin-bottom: 22px;
}

.ke-contact-field label {
    display: block;

    margin-bottom: 9px;

    color: #00c8f5;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* INPUTS */

.ke-contact-field input,
.ke-contact-field select,
.ke-contact-field textarea {
    display: block;

    width: 100%;
    box-sizing: border-box;

    padding: 17px 16px;

    border: 1px solid rgba(255,255,255,.14);
    border-radius: 0;

    outline: none;

    background: #0c1012;
    color: #f5f5f5;

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color .25s ease,
        background .25s ease;
}

.ke-contact-field input::placeholder,
.ke-contact-field textarea::placeholder {
    color: #68757e;
}

.ke-contact-field input:focus,
.ke-contact-field select:focus,
.ke-contact-field textarea:focus {
    border-color: #00c8f5;
    background: #0e1315;
}

.ke-contact-field select {
    cursor: pointer;
}

.ke-contact-field textarea {
    min-height: 180px;

    resize: vertical;

    line-height: 1.6;
}


/* =========================================================
   SUBMIT
========================================================= */

.ke-contact-submit {
    width: 100%;

    min-height: 65px;

    margin-top: 5px;

    padding: 15px 25px;

    border: none;

    background: #00c8f5;
    color: #071014;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    font-family: inherit;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease;
}

.ke-contact-submit strong {
    font-size: 20px;
    font-weight: 500;
}

.ke-contact-submit:hover {
    background: #f5f5f5;

    transform: translateY(-2px);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.ke-contact-cta {
    padding: 120px 6%;

    border-top: 1px solid rgba(255,255,255,.10);

    background: #0b0e0f;
}

.ke-contact-cta-inner {
    text-align: center;
}

.ke-contact-cta-inner > span {
    color: #00c8f5;

    font-size: 9px;
    letter-spacing: 4px;
}

.ke-contact-cta h2 {
    margin: 30px 0 15px;

    font-size: clamp(55px, 8vw, 110px);
    line-height: .85;

    font-weight: 800;
    letter-spacing: -5px;

    text-transform: uppercase;
}

.ke-contact-cta h2 strong {
    color: #00c8f5;
}

.ke-contact-cta p {
    margin: 0;

    color: #81909b;

    font-size: 15px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .ke-contact-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .ke-contact-info h2 {
        max-width: 850px;
    }

    .ke-contact-description {
        max-width: 700px;
    }

    .ke-contact-form-wrap {
        max-width: 900px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .ke-contact-hero {
        padding: 85px 20px 70px;
    }

    .ke-contact-main {
        padding: 55px 20px 90px;
    }

    .ke-contact-label {
        margin-bottom: 30px;

        font-size: 8px;
        letter-spacing: 2.5px;
    }

    .ke-contact-label span {
        width: 35px;
    }

    .ke-contact-hero h1 {
        font-size: clamp(55px, 15vw, 82px);

        letter-spacing: -4px;
    }

    .ke-contact-hero p {
        margin-top: 32px;

        font-size: 14px;
        line-height: 1.7;
    }

    .ke-contact-info h2 {
        font-size: clamp(45px, 13vw, 68px);

        letter-spacing: -2px;
    }

    .ke-contact-description {
        font-size: 14px;
    }

    .ke-contact-details {
        margin-top: 45px;
    }

    .ke-contact-form {
        padding: 25px 20px;
    }

    .ke-contact-form-heading {
        display: block;
    }

    .ke-contact-form-heading small {
        display: block;

        margin-top: 10px;
    }

    .ke-contact-row {
        grid-template-columns: 1fr;

        gap: 0;

        margin-bottom: 0;
    }

    .ke-contact-field {
        margin-bottom: 20px;
    }

    .ke-contact-field input,
    .ke-contact-field select,
    .ke-contact-field textarea {
        padding: 15px;
    }

    .ke-contact-field textarea {
        min-height: 140px;
    }

    .ke-contact-submit {
        min-height: 60px;
    }

    .ke-contact-cta {
        padding: 85px 20px;
    }

    .ke-contact-cta h2 {
        font-size: clamp(48px, 14vw, 72px);

        letter-spacing: -3px;
    }

}

/* =========================================================
   KALPANA ENTERPRISES
   PRODUCTS LANDING PAGE
========================================================= */

.ke-products-page {
    width: 100%;
    background: #080a0b;
    color: #f5f5f5;
    overflow: hidden;
}

.ke-products-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/* =========================================================
   PRODUCTS HERO
========================================================= */

.ke-products-hero {
    padding: 125px 6% 105px;
    background: #080a0b;
}

.ke-products-label {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 42px;

    color: #00c8f5;

    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.ke-products-label span {
    width: 60px;
    height: 1px;
    display: block;
    background: #00c8f5;
}

.ke-products-hero h1 {
    margin: 0;

    max-width: 1050px;

    font-size: clamp(75px, 10vw, 150px);
    line-height: .82;

    font-weight: 800;
    letter-spacing: -7px;

    text-transform: uppercase;
}

.ke-products-hero h1 strong {
    display: block;
    color: #00c8f5;
}

.ke-products-hero p {
    max-width: 650px;

    margin: 45px 0 0;

    color: #81909b;

    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   CATEGORY SECTION
========================================================= */

.ke-category-section {
    padding: 70px 6% 150px;
    background: #080a0b;
}

.ke-category-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, .55fr);

    gap: 80px;

    align-items: end;

    margin-bottom: 75px;
}

.ke-small-label {
    display: block;

    margin-bottom: 22px;

    color: #00c8f5;

    font-family: monospace;

    font-size: 10px;
    letter-spacing: 3px;
}

.ke-category-heading h2 {
    margin: 0;

    font-size: clamp(55px, 7vw, 105px);

    line-height: .85;

    font-weight: 800;

    letter-spacing: -5px;

    text-transform: uppercase;
}

.ke-category-heading h2 strong {
    color: #00c8f5;
}

.ke-category-heading > p {
    max-width: 420px;

    margin: 0;

    color: #81909b;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.ke-category-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   CATEGORY CARD
========================================================= */

.ke-category-card {
    display: block;

    min-width: 0;

    color: inherit;

    text-decoration: none;

    border: 1px solid rgba(255,255,255,.12);

    background: #0b0e0f;

    overflow: hidden;

    transition:
        border-color .35s ease,
        transform .35s ease,
        background .35s ease;
}

.ke-category-card:hover {
    border-color: rgba(0,200,245,.55);

    transform: translateY(-6px);

    background: #0d1113;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.ke-category-image {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #0d1113,
            #080a0b
        );

    border-bottom: 1px solid rgba(255,255,255,.08);

    overflow: hidden;
}

.ke-category-image::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            transparent 40%,
            rgba(0,200,245,.045)
        );

    pointer-events: none;
}

.ke-image-placeholder {
    position: relative;

    color: rgba(255,255,255,.22);

    font-family: monospace;

    font-size: 10px;

    letter-spacing: 4px;

    border: 1px dashed rgba(255,255,255,.15);

    padding: 18px 28px;
}


/* NUMBER */

.ke-category-number {
    position: absolute;

    top: 25px;
    right: 28px;

    color: #00c8f5;

    font-family: monospace;

    font-size: 13px;

    letter-spacing: 2px;
}


/* =========================================================
   CARD INFORMATION
========================================================= */

.ke-category-info {
    min-height: 150px;

    padding: 30px 32px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    box-sizing: border-box;
}

.ke-category-info small {
    display: block;

    margin-bottom: 12px;

    color: #00c8f5;

    font-family: monospace;

    font-size: 8px;

    letter-spacing: 2px;
}

.ke-category-info h3 {
    margin: 0;

    color: #f5f5f5;

    font-size: clamp(20px, 2vw, 29px);

    line-height: 1.05;

    font-weight: 600;

    letter-spacing: -1px;

    text-transform: uppercase;
}


/* =========================================================
   ARROW
========================================================= */

.ke-category-arrow {
    flex-shrink: 0;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.14);

    color: #00c8f5;

    font-size: 22px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.ke-category-card:hover .ke-category-arrow {
    background: #00c8f5;

    color: #071014;

    transform: translateX(5px);
}


/* =========================================================
   DESKTOP FEATURE CARDS
========================================================= */

@media (min-width: 1101px) {

    .ke-category-card:nth-child(1),
    .ke-category-card:nth-child(4),
    .ke-category-card:nth-child(7) {
        transform-origin: center;
    }

    .ke-category-card:nth-child(1):hover,
    .ke-category-card:nth-child(4):hover,
    .ke-category-card:nth-child(7):hover {
        transform: translateY(-8px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .ke-products-hero {
        padding: 100px 5% 85px;
    }

    .ke-category-section {
        padding: 55px 5% 110px;
    }

    .ke-category-heading {
        grid-template-columns: 1fr;

        gap: 30px;

        margin-bottom: 55px;
    }

    .ke-category-heading > p {
        max-width: 650px;
    }

    .ke-category-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .ke-products-hero {
        padding: 80px 20px 70px;
    }

    .ke-products-label {
        margin-bottom: 30px;

        font-size: 8px;

        letter-spacing: 2.5px;
    }

    .ke-products-label span {
        width: 35px;
    }

    .ke-products-hero h1 {
        font-size: clamp(55px, 15vw, 82px);

        line-height: .84;

        letter-spacing: -4px;
    }

    .ke-products-hero p {
        margin-top: 32px;

        font-size: 14px;

        line-height: 1.7;
    }


    .ke-category-section {
        padding: 45px 20px 90px;
    }

    .ke-small-label {
        font-size: 8px;

        letter-spacing: 2px;
    }

    .ke-category-heading h2 {
        font-size: clamp(48px, 14vw, 72px);

        letter-spacing: -3px;
    }

    .ke-category-heading > p {
        font-size: 14px;
    }


    .ke-category-grid {
        gap: 18px;
    }


    .ke-category-image {
        aspect-ratio: 4 / 3;
    }


    .ke-category-info {
        min-height: 125px;

        padding: 23px 20px;

        gap: 15px;
    }

    .ke-category-info h3 {
        font-size: 19px;
    }

    .ke-category-info small {
        font-size: 7px;
    }

    .ke-category-arrow {
        width: 42px;
        height: 42px;

        font-size: 18px;
    }

    .ke-category-number {
        top: 18px;
        right: 20px;

        font-size: 11px;
    }

}

/* =========================================================
   KALPANA ENTERPRISES
   CATEGORY 01
   CABLE TERMINATION & CONNECTION
   FINAL CARD VERSION
========================================================= */

.ke-category-page {
    width: 100%;
    background: #080a0b;
    color: #f5f5f5;
    overflow: hidden;
}

.ke-category-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.ke-category-hero {
    width: 100%;
    padding: 125px 6% 105px;
    box-sizing: border-box;
    background: #080a0b;
}

.ke-category-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 42px;

    color: #00c8f5;

    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.ke-category-label span {
    display: block;
    width: 60px;
    height: 1px;
    background: #00c8f5;
}

.ke-category-hero h1 {
    margin: 0;
    max-width: 1100px;

    color: #f5f5f5;

    font-size: clamp(70px, 9vw, 140px);
    line-height: .82;

    font-weight: 800;
    letter-spacing: -7px;

    text-transform: uppercase;
}

.ke-category-hero h1 strong {
    display: block;
    color: #00c8f5;
}

.ke-category-hero p {
    max-width: 620px;
    margin: 42px 0 0;

    color: #81909b;

    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   SUBCATEGORY SECTION
========================================================= */

.ke-subcategory-section {
    width: 100%;
    padding: 75px 6% 150px;
    box-sizing: border-box;

    border-top: 1px solid rgba(255,255,255,.10);

    background: #0b0e0f;
}

.ke-subcategory-heading {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(280px,.5fr);

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;
}

.ke-subcategory-heading > div > span {
    display: block;

    margin-bottom: 20px;

    color: #00c8f5;

    font-family: monospace;

    font-size: 9px;

    letter-spacing: 3px;
}

.ke-subcategory-heading h2 {
    margin: 0;

    color: #f5f5f5;

    font-size: clamp(55px,6vw,95px);

    line-height: .85;

    letter-spacing: -5px;

    text-transform: uppercase;
}

.ke-subcategory-heading h2 strong {
    color: #00c8f5;
}

.ke-subcategory-heading p {
    max-width: 380px;

    margin: 0;

    color: #81909b;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   SUBCATEGORY GRID
========================================================= */

.ke-subcategory-grid {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 22px;

    align-items: start;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.ke-product-card {
    width: 100%;
    min-width: 0;

    border: 1px solid rgba(255,255,255,.12);

    background: #080a0b;

    overflow: hidden;

    box-sizing: border-box;

    transition:
        border-color .3s ease,
        transform .3s ease;
}

.ke-product-card:hover {
    border-color: rgba(0,200,245,.4);

    transform: translateY(-4px);
}

.ke-product-card.active {
    grid-column: 1 / -1;

    border-color: rgba(0,200,245,.6);

    transform: none;
}


/* =========================================================
   COLLAPSED CARD PREVIEW
========================================================= */

.ke-product-card-preview {
    width: 100%;
}


/* =========================================================
   SUBCATEGORY IMAGE
   THIS EXISTS ONLY IN THE COLLAPSED CARD
========================================================= */

.ke-subcategory-image {
    position: relative;

    width: 100%;
    height: 260px;

    display: flex;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    background:
        linear-gradient(
            145deg,
            #151a1d 0%,
            #0d1113 50%,
            #080a0b 100%
        );

    border-bottom: 1px solid rgba(255,255,255,.10);

    overflow: hidden;
}



.ke-subcategory-image::after {
    content: "";

    position: absolute;

    width: 45%;
    height: 45%;

    border: 1px solid rgba(255,255,255,.05);

    transform: rotate(45deg);

    pointer-events: none;
}

.ke-subcategory-image span {
    position: relative;

    z-index: 2;

    padding: 14px 22px;

    border: 1px dashed rgba(255,255,255,.2);

    color: rgba(255,255,255,.4);

    font-family: monospace;

    font-size: 9px;

    letter-spacing: 3px;

    text-transform: uppercase;
}




/* =========================================================
   CARD BUTTON
========================================================= */

.ke-product-card-trigger {
    width: 100%;

    min-height: 110px;

    padding: 22px 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    box-sizing: border-box;

    border: 0;

    background: #080a0b;

    color: #f5f5f5;

    font-family: inherit;

    text-align: left;

    cursor: pointer;
}

.ke-card-info {
    min-width: 0;
}

.ke-card-number {
    display: block;

    margin-bottom: 8px;

    color: #00c8f5;

    font-family: monospace;

    font-size: 10px;

    letter-spacing: 2px;
}

.ke-card-info h3 {
    margin: 0;

    color: #f5f5f5;

    font-size: clamp(20px,2vw,28px);

    line-height: 1.05;

    font-weight: 600;

    letter-spacing: -1px;

    text-transform: uppercase;
}

.ke-card-info p {
    margin: 10px 0 0;

    color: #68757e;

    font-family: monospace;

    font-size: 7px;

    letter-spacing: 2px;
}


/* =========================================================
   ARROW
========================================================= */

.ke-card-arrow {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border: 1px solid rgba(255,255,255,.15);

    color: #00c8f5;

    font-size: 20px;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}

.ke-product-card.active .ke-card-arrow {
    transform: rotate(90deg);

    background: #00c8f5;

    color: #071014;
}


/* =========================================================
   EXPANDED CONTENT
========================================================= */

.ke-product-card-content {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows .45s ease;
}

.ke-product-card.active .ke-product-card-content {
    grid-template-rows: 1fr;
}

.ke-card-inner {
    min-height: 0;

    overflow: hidden;

    padding: 0 40px;

    box-sizing: border-box;
}

.ke-product-card.active .ke-card-inner {
    padding-bottom: 45px;
}


/* =========================================================
   EXPANDED TITLE
========================================================= */

.ke-expanded-title {
    padding: 30px 0;

    border-top: 1px solid rgba(255,255,255,.08);

    color: #00c8f5;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================================
   PRODUCT CAROUSEL
========================================================= */

.ke-product-carousel {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 50px;
}



.ke-product-image {
    width: 100%;

    aspect-ratio: 4 / 3;

    display: flex;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border: 1px solid rgba(255,255,255,.12);

    background:
        linear-gradient(
            145deg,
            #111619,
            #080a0b
        );
}

.ke-product-image span {
    padding: 14px 20px;

    border: 1px dashed rgba(255,255,255,.15);

    color: rgba(255,255,255,.25);

    font-family: monospace;

    font-size: 8px;

    letter-spacing: 2px;
}


/* =========================================================
   CAROUSEL BUTTON
========================================================= */

.ke-carousel-button {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.15);

    background: #080a0b;

    color: #00c8f5;

    font-size: 18px;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease;
}

.ke-carousel-button:hover {
    background: #00c8f5;

    color: #071014;
}


/* =========================================================
   PRODUCT RANGE
========================================================= */

.ke-product-information {
    display: grid;

    grid-template-columns:
        190px minmax(0,1fr);

    gap: 45px;

    padding: 40px 0;

    border-top: 1px solid rgba(255,255,255,.09);

    box-sizing: border-box;
}

.ke-information-label {
    color: #00c8f5;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.ke-product-list {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    column-gap: 45px;
}

.ke-product-list div {
    padding: 13px 0;

    border-bottom: 1px solid rgba(255,255,255,.06);

    color: #aab4bb;

    font-size: 13px;

    line-height: 1.55;
}


/* =========================================================
   AVAILABLE BRANDS
========================================================= */

.ke-available-brands {
    display: grid;

    grid-template-columns:
        190px minmax(0,1fr);

    gap: 45px;

    padding-top: 40px;

    box-sizing: border-box;
}

.ke-brand-logos {
    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 12px;
}

.ke-brand-placeholder {
    min-height: 80px;

    display: flex;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border: 1px solid rgba(255,255,255,.12);

    background: #0b0e0f;

    color: rgba(255,255,255,.25);

    font-family: monospace;

    font-size: 7px;

    letter-spacing: 2px;

    transition:
        border-color .25s ease,
        background .25s ease;
}

.ke-brand-placeholder:hover {
    border-color: rgba(0,200,245,.5);

    background: #0e1315;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .ke-category-hero {
        padding: 100px 5% 80px;
    }

    .ke-subcategory-section {
        padding: 55px 5% 110px;
    }

    .ke-subcategory-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .ke-subcategory-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ke-product-card.active {
        grid-column: 1 / -1;
    }

    .ke-product-information,
    .ke-available-brands {
        grid-template-columns: 1fr;

        gap: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .ke-subcategory-section {
        padding: 45px 0 85px !important;
    }

    .ke-category-label {
        font-size: 8px;

        letter-spacing: 2px;
    }

    .ke-category-label span {
        width: 35px;
    }

    .ke-category-hero h1 {
        font-size: clamp(50px,14vw,75px);

        letter-spacing: -4px;
    }

    .ke-category-hero p {
        font-size: 14px;
    }


    .ke-subcategory-section {
        padding: 45px 20px 85px;
    }

    .ke-subcategory-heading h2 {
        font-size: clamp(45px,13vw,68px);

        letter-spacing: -3px;
    }


    .ke-subcategory-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .ke-product-card.active {
        grid-column: 1;
    }


    /* SUBCATEGORY IMAGE */

    .ke-subcategory-image {
        height: 210px;
    }


    /* CARD */

    .ke-product-card-trigger {
        min-height: 90px;

        padding: 18px 18px;

        gap: 15px;
    }

    .ke-card-info h3 {
        font-size: 18px;

        letter-spacing: -.5px;
    }

    .ke-card-info p {
        font-size: 6px;
    }

    .ke-card-arrow {
        width: 40px;
        height: 40px;

        font-size: 16px;
    }


    /* EXPANDED */

    .ke-card-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .ke-product-card.active .ke-card-inner {
        padding-bottom: 30px;
    }


    /* CAROUSEL */

    .ke-product-carousel {
        margin-bottom: 35px;
    }

    .ke-carousel-track {
        grid-template-columns: 1fr;
    }

     

    .ke-carousel-button {
        position: absolute;

        z-index: 5;

        width: 40px;
        height: 40px;

        background: rgba(8,10,11,.9);
    }

    .ke-carousel-prev {
        left: 8px;
    }

    .ke-carousel-next {
        right: 8px;
    }


    /* PRODUCT RANGE */

    .ke-product-information {
        grid-template-columns: 1fr;

        gap: 22px;

        padding: 30px 0;
    }

    .ke-product-list {
        grid-template-columns: 1fr;
    }

    .ke-product-list div {
        font-size: 12px;
    }


    /* BRANDS */

    .ke-available-brands {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .ke-brand-logos {
        grid-template-columns:
            repeat(3,minmax(0,1fr));

        gap: 8px;
    }

    .ke-brand-placeholder {
        min-height: 65px;
    }

}

/* =========================================================
   HIDE SUBCATEGORY IMAGE WHEN CARD IS OPEN
========================================================= */

.ke-product-card.active .ke-subcategory-image {
    display: none;
}
/* =========================================================
   GLOBAL MOBILE WIDTH FIX
   Removes unwanted right-side blank space
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

@media (max-width: 768px) {

    /* WordPress / theme page wrappers */
    #page,
    #content,
    .site,
    .site-content,
    .content-area,
    .site-main,
    .entry-content,
    .wp-site-blocks,
    .wp-block-group {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Main Kalpana sections */
    .ke-category-page,
    .ke-category-container,
    .ke-category-hero,
    .ke-subcategory-section,
    .ke-contact-page,
    .ke-contact-container,
    .ke-contact-hero,
    .ke-contact-main,
    .ke-products-hero,
    .ke-category-section,
    .global-partners,
    .industrial-excellence,
    .quote-section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Prevent individual elements from creating horizontal overflow */
    img,
    video,
    iframe,
    table {
        max-width: 100%;
    }

    /* Keep the page locked to the phone viewport */
    .site,
    .site-content,
    .site-main,
    .entry-content {
        overflow-x: hidden;
    }
}
/* =========================================================
   CATEGORY PAGE - MOBILE FULL WIDTH FIX
   ========================================================= */

@media (max-width: 768px) {

    .ke-category-page {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .ke-category-container {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .ke-category-hero,
    .ke-subcategory-section {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .ke-subcategory-grid {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .ke-product-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
}

/* =========================================================
   CONTACT DETAILS - PHONE & EMAIL
   ========================================================= */

.ke-contact-detail > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ke-contact-detail > div > a {
    display: block;
    margin-top: 7px;
    line-height: 1.5;
}

.ke-contact-detail > div > a + a {
    margin-top: 5px;
}

.ke-contact-detail > div > p {
    margin: 8px 0 0;
    line-height: 1.7;
}

/* =========================================================
   GOOGLE MAP
========================================================= */

.ke-contact-map {
    padding: 100px 0;
    background: #080a0b;
    border-top: 1px solid rgba(255,255,255,.07);
}

.ke-map-heading {
    margin-bottom: 40px;
}

.ke-map-heading h2 {
    margin: 25px 0 12px;

    color: #f5f5f5;

    font-size: clamp(50px, 6vw, 80px);

    line-height: .9;
    font-weight: 800;
    letter-spacing: -4px;
}

.ke-map-heading h2 strong {
    color: #00c8f5;
}

.ke-map-heading p {
    margin: 0;

    color: #7d8b92;

    font-size: 14px;
}

.ke-map-wrapper {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(0,200,245,.18);

    background: #0d1112;
}

.ke-map-wrapper iframe {
    display: block;

    width: 100%;
    min-height: 450px;

    filter: grayscale(100%) contrast(1.1);

    transition: filter .4s ease;
}

.ke-map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.ke-map-directions {
    display: flex;

    align-items: center;
    justify-content: center;
    gap: 20px;

    width: 100%;

    margin-top: 15px;

    padding: 20px;

    background: #00c8f5;

    color: #061014;

    font-family: monospace;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    text-decoration: none;

    transition: background .3s ease;
}

.ke-map-directions span {
    font-size: 18px;
}

.ke-map-directions:hover {
    background: #f5f5f5;
    color: #061014;
}


/* =========================================================
   MOBILE MAP
========================================================= */

@media (max-width: 700px) {

    .ke-contact-map {
        padding: 75px 0;
    }

    .ke-map-heading h2 {
        font-size: 50px;
        letter-spacing: -3px;
    }

    .ke-map-wrapper iframe {
        min-height: 350px;
    }

}




/* IMAGE */

.ke-collage-image {
    position: relative;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    background: #111617;
}


.ke-collage-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .45s ease;
}


.ke-product-card:hover
.ke-collage-image img {
    transform: scale(1.035);
}


/* =========================================================
   1 IMAGE
========================================================= */

.ke-auto-collage[data-image-count="1"] {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}


/* =========================================================
   2 IMAGES
========================================================= */

.ke-auto-collage[data-image-count="2"] {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
}


/* =========================================================
   3 IMAGES
========================================================= */

.ke-auto-collage[data-image-count="3"] {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.ke-auto-collage[data-image-count="3"]
.ke-collage-image:first-child {
    grid-row: 1 / 3;
}


/* =========================================================
   4 IMAGES
========================================================= */

.ke-auto-collage[data-image-count="4"] {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}


/* =========================================================
   5+ IMAGES
========================================================= */

.ke-auto-collage[data-image-count="5"],
.ke-auto-collage[data-image-count="6"],
.ke-auto-collage[data-image-count="7"],
.ke-auto-collage[data-image-count="8"],
.ke-auto-collage[data-image-count="9"],
.ke-auto-collage[data-image-count="10"] {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
}


/* =========================================================
   NUMBER
========================================================= */

.ke-auto-collage > small {
    position: absolute;

    z-index: 20;

    top: 15px;
    right: 15px;

    padding: 6px 9px;

    background: rgba(8,10,11,.85);

    color: #00c8f5;

    font-family: monospace;

    font-size: 9px;

    letter-spacing: 1.5px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .ke-subcategory-image.ke-auto-collage {
        height: 210px;
    }

}

/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 800px) {

    .site-header {
        position: relative;
    }


    .header-inner {
        position: relative;
    }


    .main-navigation.mobile-menu-open {

        display: flex;

        position: absolute;

        top: 100%;

        left: 0;

        right: 0;

        width: 100%;

        margin: 0;

        padding: 25px 22px 30px;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 0;

        background: #080a0b;

        border-top: 1px solid rgba(255,255,255,.08);

        border-bottom: 1px solid rgba(255,255,255,.08);

        box-shadow: 0 15px 35px rgba(0,0,0,.35);

        z-index: 9998;
    }


    .main-navigation.mobile-menu-open a {

        display: block;

        width: 100%;

        padding: 17px 0;

        color: #f4f4f4;

        font-size: 14px;

        border-bottom: 1px solid rgba(255,255,255,.06);
    }


    .main-navigation.mobile-menu-open a:last-child {

        border-bottom: none;

    }


    .main-navigation.mobile-menu-open a::after {

        display: none;

    }


    /* =====================================================
       HAMBURGER → X
    ====================================================== */

    .mobile-menu-button.menu-open span:nth-child(1) {

        transform: translateY(7px) rotate(45deg);

    }


    .mobile-menu-button.menu-open span:nth-child(2) {

        opacity: 0;

    }


    .mobile-menu-button.menu-open span:nth-child(3) {

        transform: translateY(-7px) rotate(-45deg);

    }

/* =========================================================
   KALPANA ENQUIRY NOTIFICATION
========================================================= */

.ke-enquiry-notification {
    position: relative;
    width: calc(100% - 12%);
    max-width: 1450px;
    margin: 28px auto 0;
    padding: 22px 60px 22px 28px;

    display: flex;
    align-items: center;
    gap: 18px;

    box-sizing: border-box;
    overflow: hidden;

    border: 1px solid rgba(0, 200, 245, 0.45);

    background:
        linear-gradient(
            110deg,
            rgba(0, 200, 245, 0.12),
            rgba(0, 200, 245, 0.025)
        );

    box-shadow:
        0 0 35px rgba(0, 200, 245, 0.08);

    animation:
        ke-enquiry-enter 0.65s
        cubic-bezier(.16, 1, .3, 1)
        both;
}


/* LEFT CYAN LINE */

.ke-enquiry-notification::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 100%;

    background: #00c8f5;
}


/* ANIMATED BOTTOM LINE */

.ke-enquiry-notification::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: #00c8f5;

    transform-origin: left;

    animation:
        ke-enquiry-line 3s
        ease-out forwards;
}


/* =========================================================
   CHECK ICON
========================================================= */

.ke-enquiry-icon {
    width: 46px;
    height: 46px;

    min-width: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #00c8f5;
    border-radius: 50%;

    color: #00c8f5;

    font-size: 20px;
    font-weight: 700;

    animation:
        ke-enquiry-icon-pop .6s
        .15s
        cubic-bezier(.17, .89, .32, 1.49)
        both;
}


/* =========================================================
   CONTENT
========================================================= */

.ke-enquiry-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.ke-enquiry-label {
    color: #00c8f5;

    font-family: monospace;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;
}


.ke-enquiry-content strong {
    color: #ffffff;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.4;
}


.ke-enquiry-content p {
    margin: 0;

    color: #82909a;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.ke-enquiry-close {
    position: absolute;

    right: 18px;
    top: 50%;

    transform: translateY(-50%);

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .15);

    background: transparent;

    color: #8c99a2;

    font-size: 20px;

    cursor: pointer;

    transition:
        border-color .25s ease,
        color .25s ease,
        background .25s ease;
}


.ke-enquiry-close:hover {
    border-color: #00c8f5;

    color: #00c8f5;

    background: rgba(0, 200, 245, .06);
}


/* =========================================================
   ERROR
========================================================= */

.ke-enquiry-error {
    border-color: rgba(255, 90, 90, .45);

    background:
        linear-gradient(
            110deg,
            rgba(255, 90, 90, .10),
            rgba(255, 90, 90, .025)
        );
}


.ke-enquiry-error::before {
    background: #ff7070;
}


.ke-enquiry-error::after {
    background: #ff7070;
}


.ke-enquiry-error .ke-enquiry-icon {
    border-color: #ff7070;
    color: #ff7070;
}


/* =========================================================
   HIDE
========================================================= */

.ke-enquiry-hide {
    animation:
        ke-enquiry-exit .4s
        ease forwards;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes ke-enquiry-enter {

    from {
        opacity: 0;

        transform:
            translateY(-20px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


@keyframes ke-enquiry-exit {

    from {
        opacity: 1;

        transform:
            translateY(0);
    }

    to {
        opacity: 0;

        transform:
            translateY(-15px);
    }
}


@keyframes ke-enquiry-icon-pop {

    0% {
        opacity: 0;

        transform:
            scale(.25);
    }

    70% {
        opacity: 1;

        transform:
            scale(1.12);
    }

    100% {
        opacity: 1;

        transform:
            scale(1);
    }
}


@keyframes ke-enquiry-line {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .ke-enquiry-notification {

        width: calc(100% - 30px);

        margin-top: 18px;

        padding: 18px 48px 18px 18px;

        gap: 13px;
    }


    .ke-enquiry-icon {

        width: 38px;
        height: 38px;

        min-width: 38px;

        font-size: 16px;
    }


    .ke-enquiry-label {

        font-size: 8px;

        letter-spacing: 2px;
    }


    .ke-enquiry-content strong {

        font-size: 13px;
    }


    .ke-enquiry-content p {

        font-size: 11px;
    }


    .ke-enquiry-close {

        right: 10px;

        width: 27px;
        height: 27px;

        font-size: 17px;
    }
}

/* =========================================================
   CATALOG PRODUCT + BRAND IMAGE FIX
   ========================================================= */

/* PRODUCT CAROUSEL */
.ke-product-carousel {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    overflow: hidden;
}


/* PRODUCT TRACK */
.ke-product-carousel .ke-carousel-track {
    width: 100%;

    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;

    gap: 15px;

    overflow: hidden;

    box-sizing: border-box;
}


/* EACH PRODUCT SLIDE */
.ke-product-carousel .ke-product-image {
    flex: 0 0 100% !important;

    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;

    height: 420px;

    display: flex !important;

    align-items: center;
    justify-content: center;

    position: relative;

    box-sizing: border-box;

    overflow: hidden;
}


/* PRODUCT IMAGE */
.ke-product-carousel .ke-product-image img {
    display: block;

    width: auto;
    height: auto;

    max-width: 90%;
    max-height: 90%;

    object-fit: contain;

    object-position: center;
}


/* PRODUCT IMAGE NUMBER */
.ke-product-image-number {
    display: none !important;
}


/* CAROUSEL BUTTONS */
.ke-product-carousel .ke-carousel-button {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 20;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.ke-product-carousel .ke-carousel-prev {
    left: 12px;
}

.ke-product-carousel .ke-carousel-next {
    right: 12px;
}


/* =========================================================
   BRAND LOGOS
   ========================================================= */

.ke-brand-placeholder {
    width: 180px;
    height: 100px;

    min-width: 180px;
    min-height: 100px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 12px;

    box-sizing: border-box;

    overflow: hidden;
}

.ke-brand-placeholder img {
    display: block;

    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 75px;

    object-fit: contain;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .ke-product-carousel .ke-product-image {
        flex: 0 0 100% !important;

        width: 100% !important;
        min-width: 100% !important;

        height: 300px;
    }

    .ke-product-carousel .ke-carousel-track {
        display: flex !important;

        flex-direction: row !important;
        flex-wrap: nowrap !important;

        gap: 15px;

        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: none;
    }

    .ke-product-carousel .ke-carousel-track::-webkit-scrollbar {
        display: none;
    }

    .ke-product-carousel .ke-product-image img {
        max-width: 90%;
        max-height: 90%;
    }

    .ke-product-carousel .ke-carousel-button {
        width: 36px;
        height: 36px;
    }

    .ke-product-carousel .ke-carousel-prev {
        left: 8px;
    }

    .ke-product-carousel .ke-carousel-next {
        right: 8px;
    }


    /* MOBILE BRANDS */

    .ke-brand-placeholder {
        width: 150px;
        height: 95px;

        min-width: 150px;
        min-height: 95px;

        padding: 10px;
    }

    .ke-brand-placeholder img {
        max-width: 100%;
        max-height: 65px;
    }

}

}/* =========================================================
   KALPANA CATEGORY CAROUSEL - FINAL FIX
   ========================================================= */

/* =========================================================
   PRODUCT CAROUSEL
========================================================= */

.ke-product-carousel {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    overflow: hidden;
}

.ke-carousel-track {
    width: 100%;

    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;

    gap: 15px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ke-carousel-track::-webkit-scrollbar {
    display: none;
}

.ke-product-image {
    flex: 0 0 100% !important;

    width: 100% !important;
    min-width: 100% !important;

    aspect-ratio: 4 / 3;

    display: flex !important;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    overflow: hidden;
}

.ke-product-image img {
    width: auto !important;
    height: auto !important;

    max-width: 90% !important;
    max-height: 90% !important;

    object-fit: contain !important;
}


/* REMOVE IMAGE NUMBER */

.ke-product-image-number {
    display: none !important;
}


/* CAROUSEL BUTTON */

.ke-carousel-button {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 10;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.15);

    background: #080a0b;
    color: #00c8f5;

    cursor: pointer;
}

.ke-carousel-prev {
    left: 10px;
}

.ke-carousel-next {
    right: 10px;
}


/* SINGLE HORIZONTAL TRACK */
.ke-product-carousel .ke-carousel-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;

    width: 100%;

    overflow-x: auto !important;
    overflow-y: hidden;

    scroll-behavior: smooth;

    gap: 20px;

    scrollbar-width: none;

    -ms-overflow-style: none;
}

.ke-product-carousel .ke-carousel-track::-webkit-scrollbar {
    display: none;
}


/* EVERY PRODUCT IMAGE GETS ONE FULL SLOT */
.ke-product-carousel .ke-product-image {
    flex: 0 0 100% !important;

    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;

    height: 420px !important;

    display: flex !important;

    align-items: center;
    justify-content: center;

    position: relative;

    overflow: hidden;

    box-sizing: border-box;
}


/* ACTUAL PRODUCT PHOTO */
.ke-product-carousel .ke-product-image img {
    display: block !important;

    width: auto !important;
    height: auto !important;

    max-width: 90% !important;
    max-height: 90% !important;

    object-fit: contain !important;

    object-position: center !important;
}


/* =========================================================
   CAROUSEL BUTTONS
   ========================================================= */

.ke-product-carousel .ke-carousel-button {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 20;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    cursor: pointer;

    padding: 0;

    line-height: 1;
}

.ke-product-carousel .ke-carousel-prev {
    left: 12px;
}

.ke-product-carousel .ke-carousel-next {
    right: 12px;
}


/* DISABLED BUTTON */
.ke-product-carousel .ke-carousel-button:disabled {
    opacity: 0.25;
    cursor: default;
}


/* =========================================================
   REMOVE PRODUCT IMAGE NUMBER
   ========================================================= */

.ke-product-image-number {
    display: none !important;
}


/* =========================================================
   BRAND AREA
   ========================================================= */

.ke-available-brands {
    width: 100%;
    margin-top: 35px;
}

.ke-brand-logos {
    display: flex !important;

    flex-wrap: wrap !important;

    align-items: center;
    justify-content: flex-start;

    gap: 18px;

    width: 100%;
}


/* BIGGER BRAND BOX */
.ke-brand-placeholder {
    width: 180px !important;
    height: 100px !important;

    min-width: 180px !important;
    min-height: 100px !important;

    max-width: 180px !important;
    max-height: 100px !important;

    display: flex !important;

    align-items: center;
    justify-content: center;

    padding: 12px;

    box-sizing: border-box;

    overflow: hidden;
}


/* COMPLETE LOGO INSIDE BOX */
.ke-brand-placeholder img {
    display: block !important;

    width: auto !important;
    height: auto !important;

    max-width: 100% !important;
    max-height: 75px !important;

    object-fit: contain !important;

    object-position: center !important;
}


/* =========================================================
   DESKTOP SUBCATEGORY THUMBNAILS
   ========================================================= */

.ke-subcategory-image {
    overflow: hidden !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;
}

.ke-subcategory-image img {
    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    /* NEVER HIDE THE SECOND/THIRD/FOURTH IMAGES */
    .ke-product-carousel .ke-product-image {
        display: flex !important;

        flex: 0 0 100% !important;

        width: 100% !important;
        min-width: 100% !important;

        height: 300px !important;
    }


    .ke-product-carousel .ke-carousel-track {
        display: flex !important;

        flex-direction: row !important;

        flex-wrap: nowrap !important;

        overflow-x: auto !important;

        gap: 15px;
    }


    .ke-product-carousel .ke-product-image img {
        max-width: 90% !important;
        max-height: 90% !important;
    }


    /* MOBILE ARROWS */
    .ke-product-carousel .ke-carousel-button {
        width: 36px;
        height: 36px;
    }


    .ke-product-carousel .ke-carousel-prev {
        left: 8px;
    }


    .ke-product-carousel .ke-carousel-next {
        right: 8px;
    }


    /* MOBILE BRANDS */
    .ke-brand-placeholder {
        width: 145px !important;
        height: 90px !important;

        min-width: 145px !important;
        min-height: 90px !important;

        max-width: 145px !important;
        max-height: 90px !important;

        padding: 10px;
    }


    .ke-brand-placeholder img {
        max-width: 100% !important;
        max-height: 65px !important;
    }


    /* MOBILE SUBCATEGORY IMAGE */
    .ke-subcategory-image img {
        object-fit: contain !important;
    }

}

/* CATEGORY PRODUCT CAROUSEL FIX */

.ke-product-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ke-product-carousel .ke-carousel-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    gap: 0 !important;
    width: 100%;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.ke-product-carousel .ke-carousel-track::-webkit-scrollbar {
    display: none;
}

.ke-product-carousel .ke-product-image {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 420px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden;
    box-sizing: border-box;
}

.ke-product-carousel .ke-product-image img {
    width: auto !important;
    height: auto !important;
    max-width: 90% !important;
    max-height: 90% !important;
    object-fit: contain !important;
}

/* REMOVE 01 / 02 / 03 NUMBER */
.ke-product-image-number {
    display: none !important;
}

/* CAROUSEL BUTTONS */

.ke-product-carousel .ke-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.ke-product-carousel .ke-carousel-prev {
    left: 12px;
}

.ke-product-carousel .ke-carousel-next {
    right: 12px;
}


/* BRAND LOGOS */

.ke-brand-placeholder {
    width: 190px !important;
    height: 110px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 15px !important;
    box-sizing: border-box;
    overflow: hidden;
}

.ke-brand-placeholder img {
    width: auto !important;
    height: auto !important;

    max-width: 100% !important;
    max-height: 75px !important;

    object-fit: contain !important;
}



/* SUBCATEGORY THUMBNAIL */

.ke-subcategory-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.ke-subcategory-image img {
    width: auto !important;
    height: auto !important;

    max-width: 100% !important;
    max-height: 100% !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;
}


/* MOBILE */

@media (max-width: 768px) {

    .ke-product-carousel .ke-product-image {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        height: 300px !important;
    }

    .ke-product-carousel .ke-carousel-track {
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
    }

    .ke-brand-placeholder {
        width: 150px !important;
        height: 95px !important;
        padding: 12px !important;
    }

    .ke-brand-placeholder img {
        max-width: 100% !important;
        max-height: 65px !important;
    }
    @media (max-width: 600px) {

    .ke-carousel-track {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 10px;
    }

    .ke-product-image {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        aspect-ratio: 4 / 3;
    }

    .ke-product-image img {
        max-width: 88% !important;
        max-height: 88% !important;
    }

    .ke-carousel-button {
        width: 40px;
        height: 40px;
    }

    .ke-carousel-prev {
        left: 8px;
    }

    .ke-carousel-next {
        right: 8px;
    }

}
}

/* =========================================================
   FINAL PRODUCT CAROUSEL FIX - DESKTOP
========================================================= */

.ke-product-carousel {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
}

.ke-carousel-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;

    width: 100% !important;

    gap: 15px !important;

    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

.ke-carousel-track .ke-product-image {
    display: flex !important;

    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;

    height: 420px !important;

    box-sizing: border-box !important;

    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
}

.ke-carousel-track .ke-product-image img {
    display: block !important;

    width: auto !important;
    height: auto !important;

    max-width: 90% !important;
    max-height: 90% !important;

    object-fit: contain !important;
}

/* REMOVE ONLY SUBCATEGORY BLUE DOTTED FRAME + NUMBER */

.ke-subcategory-image::before {
    display: none !important;
}

.ke-subcategory-image small {
    display: none !important;
}

/* DESKTOP ONLY - PRODUCT CAROUSEL */

@media (min-width: 769px) {

    .ke-product-carousel .ke-carousel-track {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;

        overflow-x: hidden !important;
        overflow-y: hidden !important;

        width: 100% !important;
    }

    .ke-product-carousel .ke-carousel-track .ke-product-image {
        display: flex !important;

        flex: 0 0 100% !important;

        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;

        height: 420px !important;

        align-items: center !important;
        justify-content: center !important;

        box-sizing: border-box !important;
    }

}
/* =========================================================
   SUBCATEGORY THUMBNAILS
   NATURAL IMAGE SIZE - DESKTOP + MOBILE
   ========================================================= */

/* SUBCATEGORY THUMBNAIL */

.ke-subcategory-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.ke-subcategory-image img {
    width: auto !important;
    height: auto !important;

    max-width: 100% !important;
    max-height: 100% !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;
}

/* =========================================================
   HIDE SUBCATEGORY THUMBNAIL WHEN OPEN
   ========================================================= */

.ke-product-card.active .ke-subcategory-image {
    display: none !important;
}

/* =========================================================
   SUBCATEGORY THUMBNAIL - 1:1 SQUARE
   ========================================================= */

.ke-subcategory-image {
    width: 100% !important;

    aspect-ratio: 1 / 1 !important;

    height: auto !important;
    min-height: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;

    box-sizing: border-box !important;
}

.ke-subcategory-image img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    object-fit: contain !important;
    object-position: center !important;
}

/* =========================================================
   SUBCATEGORY CARD - UNIFORM IMAGE WIDTH
   ========================================================= */

.ke-product-card-trigger {
    display: grid !important;

    grid-template-columns: minmax(0, 1fr) 180px !important;

    align-items: center !important;

    gap: 25px !important;
}

.ke-product-card-preview {
    width: 100% !important;
    min-width: 0 !important;
}

.ke-subcategory-image {
    width: 100% !important;

    aspect-ratio: 1 / 1 !important;

    height: auto !important;

    min-width: 0 !important;

    box-sizing: border-box !important;
}

.ke-subcategory-image img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center !important;
}

/* =========================================================
   MAIN CATEGORY THUMBNAILS - UNIFORM 4:3 RATIO
   ========================================================= */

.ke-category-image {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
    box-sizing: border-box !important;
}

.ke-category-image img {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;
}

/* =========================================================
   MOBILE CATEGORY CARD FIX
   KEEP IMAGE + DETAILS IN ONE ROW
   DESKTOP IS NOT TOUCHED
   ========================================================= */

@media (max-width: 768px) {

    /* Category 02 and other category pages */
    .ke-product-card-preview {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        width: 100% !important;
        min-height: 0 !important;
    }

    /* LEFT: IMAGE */
    .ke-product-card-preview .ke-subcategory-image {
        width: 45% !important;
        min-width: 45% !important;
        max-width: 45% !important;

        height: auto !important;
        aspect-ratio: 1 / 1 !important;

        flex: 0 0 45% !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        overflow: hidden !important;
    }

    .ke-product-card-preview .ke-subcategory-image img {
        width: 100% !important;
        height: 100% !important;

        max-width: none !important;
        max-height: none !important;

        object-fit: cover !important;
        display: block !important;
    }

    /* RIGHT: CATEGORY INFORMATION */
    .ke-product-card-preview .ke-product-card-trigger {
        width: 55% !important;
        min-width: 55% !important;

        flex: 1 1 55% !important;

        display: flex !important;
        flex-direction: column !important;

        justify-content: center !important;
        align-items: flex-start !important;

        padding: 24px 18px !important;

        box-sizing: border-box !important;
    }

    .ke-product-card-preview .ke-card-info {
        width: 100% !important;
    }

    .ke-product-card-preview .ke-card-number {
        display: block !important;
    }

    .ke-product-card-preview .ke-card-info h3 {
        margin: 8px 0 12px !important;
    }

    .ke-product-card-preview .ke-card-arrow {
        margin-top: 10px !important;
    }

}
/* =========================================================
   TRUSTED BRANDS
   FUTURISTIC GLOBAL PARTNERS
   ========================================================= */

.ke-trusted-brands {
    position: relative;
    width: 100%;

    padding: 125px 6% 75px;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(0, 200, 245, .12),
            transparent 34%
        ),
        radial-gradient(
            circle at 0% 50%,
            rgba(0, 100, 255, .08),
            transparent 35%
        ),
        #05090d;

    overflow: hidden;
    isolation: isolate;
}


/* =========================================================
   WORLD / TECH BACKGROUND
   ========================================================= */

.ke-trusted-world {
    position: absolute;
    inset: -10%;

    z-index: -3;

    opacity: .28;

    background-image:
        radial-gradient(
            circle,
            rgba(0, 200, 245, .65) 1px,
            transparent 1.5px
        );

    background-size: 18px 18px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black 15%,
            transparent 75%
        );

    -webkit-mask-image:
        radial-gradient(
            ellipse at center,
            black 15%,
            transparent 75%
        );

    animation: ke-world-drift 30s linear infinite;
}


@keyframes ke-world-drift {

    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-18px, 12px, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }

}


/* =========================================================
   BACKGROUND GLOWS
   ========================================================= */

.ke-trusted-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    filter: blur(90px);

    opacity: .12;

    z-index: -2;

    pointer-events: none;
}

.ke-glow-left {
    left: -220px;
    top: 25%;

    background: #0077ff;

    animation: ke-glow-float-left 8s ease-in-out infinite;
}

.ke-glow-right {
    right: -220px;
    top: 20%;

    background: #00c8f5;

    animation: ke-glow-float-right 9s ease-in-out infinite;
}


@keyframes ke-glow-float-left {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40px);
    }

}


@keyframes ke-glow-float-right {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(45px);
    }

}


/* =========================================================
   CONTAINER
   ========================================================= */

.ke-trusted-container {
    position: relative;

    width: 100%;
    max-width: 1450px;

    margin: 0 auto;
}


/* =========================================================
   HEADING
   ========================================================= */

.ke-trusted-heading {
    text-align: center;

    margin-bottom: 70px;
}


/* GLOBAL PARTNERS BADGE */

.ke-global-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 10px 26px;

    color: #00c8f5;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;

    border: 1px solid rgba(0,200,245,.5);

    border-radius: 30px;

    background:
        rgba(0,200,245,.04);

    box-shadow:
        0 0 20px rgba(0,200,245,.08);

    animation:
        ke-badge-pulse 3s ease-in-out infinite;
}


.ke-global-icon {
    font-size: 18px;
    line-height: 1;
}


@keyframes ke-badge-pulse {

    0%,100% {
        box-shadow:
            0 0 15px rgba(0,200,245,.05);
    }

    50% {
        box-shadow:
            0 0 30px rgba(0,200,245,.18);
    }

}


/* HEADING */

.ke-trusted-heading h2 {
    margin: 28px 0 0;

    color: #f5f5f5;

    font-size: clamp(60px, 7.5vw, 110px);

    line-height: .9;

    font-weight: 800;

    letter-spacing: -5px;

    text-transform: uppercase;
}

.ke-trusted-heading h2 span {
    color: #00c8f5;

    text-shadow:
        0 0 20px rgba(0,200,245,.22);
}


/* DESCRIPTION */

.ke-trusted-heading p {
    max-width: 720px;

    margin: 30px auto 0;

    color: #a1adb5;

    font-size: 18px;

    line-height: 1.6;
}

.ke-trusted-heading p strong {
    color: #00c8f5;
}


/* HEADING LINE */

.ke-heading-line {
    width: 48px;
    height: 3px;

    margin: 25px auto 0;

    background: #00c8f5;

    box-shadow:
        0 0 15px rgba(0,200,245,.65);

    animation:
        ke-line-pulse 2.5s ease-in-out infinite;
}


@keyframes ke-line-pulse {

    0%,100% {
        width: 48px;
        opacity: .7;
    }

    50% {
        width: 85px;
        opacity: 1;
    }

}


/* =========================================================
   BRAND GRID
   IMPORTANT:
   5 COLUMNS ON DESKTOP
   ========================================================= */

.ke-brand-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 24px;

    width: 100%;
}


/* =========================================================
   BRAND CARD
   ========================================================= */

.ke-brand-card {
    position: relative;

    min-width: 0;

    height: 175px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 25px 18px;

    background:
        linear-gradient(
            145deg,
            rgba(14,25,34,.94),
            rgba(4,10,15,.96)
        );

    border: 1px solid rgba(0,200,245,.45);

    border-radius: 8px;

    overflow: hidden;

    box-shadow:
        inset 0 0 30px rgba(0,200,245,.025),
        0 10px 30px rgba(0,0,0,.25);

    opacity: 0;

    animation:
        ke-card-appear .8s cubic-bezier(.2,.8,.2,1) forwards;

    animation-delay: var(--brand-delay);

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}


@keyframes ke-card-appear {

    from {
        opacity: 0;
        transform:
            translateY(30px)
            scale(.96);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }

}


/* MOVING LIGHT ACROSS CARD */

.ke-brand-card::before {
    content: "";

    position: absolute;

    top: -100%;
    left: -40%;

    width: 40%;
    height: 300%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,200,245,.12),
            transparent
        );

    transform: rotate(20deg);

    animation:
        ke-card-light 5s ease-in-out infinite;

    animation-delay: var(--brand-delay);

    pointer-events: none;
}


@keyframes ke-card-light {

    0% {
        left: -50%;
    }

    45%,100% {
        left: 120%;
    }

}


/* HOVER */

.ke-brand-card:hover {

    transform:
        translateY(-9px)
        scale(1.025);

    border-color: #00c8f5;

    box-shadow:
        0 15px 45px rgba(0,0,0,.5),
        0 0 25px rgba(0,200,245,.15),
        inset 0 0 30px rgba(0,200,245,.04);
}


/* =========================================================
   CARD NUMBER
   ========================================================= */

.ke-brand-card-number {
    position: absolute;

    top: 12px;
    left: 14px;

    color: rgba(0,200,245,.7);

    font-size: 9px;

    letter-spacing: 2px;
}


/* =========================================================
   LOGO
   ========================================================= */

.ke-brand-logo {

    width: 100%;
    height: 95px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 4px;
}


/*
   IMPORTANT:
   The transparent PNGs are used here.
*/

.ke-brand-logo img {
    display: block;

    width: auto !important;
    height: auto !important;

    max-width: 220px !important;
    max-height: 100px !important;

    object-fit: contain;

    transform: scale(1.05);

    filter: drop-shadow(
        0 0 8px rgba(0, 200, 245, .12)
    );

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        filter .45s ease;
}

.ke-brand-card:hover .ke-brand-logo img {
    transform: scale(1.15);

    filter: drop-shadow(
        0 0 16px rgba(0, 200, 245, .35)
    );
}



/* =========================================================
   CARD TEXT
   ========================================================= */

.ke-brand-card-text {

    color: #f0f4f6;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;

    text-align: center;

    text-transform: uppercase;

    white-space: nowrap;
}


/* =========================================================
   ENERGY LINE UNDER LOGO
   ========================================================= */

.ke-brand-energy {

    position: absolute;

    left: 50%;

    bottom: 35px;

    width: 55px;
    height: 2px;

    transform: translateX(-50%);

    background: #00c8f5;

    box-shadow:
        0 0 10px rgba(0,200,245,.7);

    opacity: .65;

    animation:
        ke-energy-pulse 2.5s ease-in-out infinite;
}


@keyframes ke-energy-pulse {

    0%,100% {
        width: 40px;
        opacity: .4;
    }

    50% {
        width: 75px;
        opacity: 1;
    }

}


/* =========================================================
   CORNER DETAIL
   ========================================================= */

.ke-brand-corner {

    position: absolute;

    right: 0;
    bottom: 0;

    width: 34px;
    height: 2px;

    background: #00c8f5;

    box-shadow:
        0 0 12px rgba(0,200,245,.8);

    transition:
        width .4s ease;
}


.ke-brand-card:hover .ke-brand-corner {
    width: 75px;
}


/* =========================================================
   MOVING TRUST TICKER
   ========================================================= */

.ke-trust-ticker {

    width: 100%;

    margin-top: 34px;

    overflow: hidden;

    border: 1px solid rgba(0,200,245,.5);

    border-radius: 50px;

    background:
        rgba(3,9,14,.9);

    box-shadow:
        0 0 20px rgba(0,200,245,.04);
}


.ke-trust-track {

    display: flex;

    width: max-content;

    animation:
        ke-trust-scroll 30s linear infinite;
}


@keyframes ke-trust-scroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


.ke-trust-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px 34px;

    color: #d6dde1;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2.5px;

    white-space: nowrap;
}


.ke-trust-item span {

    width: 5px;
    height: 5px;

    flex: 0 0 5px;

    border-radius: 50%;

    background: #00c8f5;

    box-shadow:
        0 0 8px #00c8f5,
        0 0 18px rgba(0,200,245,.6);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .ke-brand-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 18px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .ke-trusted-brands {

        padding:
            90px 16px 55px;
    }


    .ke-trusted-heading {

        margin-bottom: 45px;
    }


    .ke-global-badge {

        font-size: 9px;

        letter-spacing: 2.5px;

        padding:
            8px 18px;
    }


    .ke-trusted-heading h2 {

        font-size:
            clamp(48px, 14vw, 72px);

        letter-spacing: -3px;
    }


    .ke-trusted-heading p {

        font-size: 15px;

        padding:
            0 8px;
    }


    .ke-brand-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }


    .ke-brand-card {

        height: 145px;

        padding:
            18px 10px;
    }


    .ke-brand-logo {

        height: 72px;
    }


    .ke-brand-logo img {

        max-width: 125px;
        max-height: 58px;
    }


    .ke-brand-card-text {

        font-size: 7px;

        letter-spacing: 1.4px;
    }


    .ke-brand-energy {

        bottom: 31px;
    }


    .ke-trust-item {

        padding:
            13px 22px;

        font-size: 8px;

        letter-spacing: 2px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .ke-brand-grid {

        gap: 9px;
    }


    .ke-brand-card {

        height: 135px;
    }


    .ke-brand-logo img {

        max-width: 105px;
        max-height: 50px;
    }

}

/* =========================================================
   TRUSTED BRANDS - FORCE 5 COLUMN DESKTOP GRID
   ========================================================= */

.ke-brand-grid {
    display: grid !important;

    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;

    gap: 24px !important;

    width: 100% !important;

    max-width: none !important;
}

.ke-brand-card {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) and (min-width: 701px) {

    .ke-brand-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .ke-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

}

/* =========================================================
   TRUSTED BRANDS - LOGO SIZE
   DESKTOP ONLY
   ========================================================= */

@media (min-width: 701px) {

    .ke-brand-logo {
        height: 110px !important;
    }

    .ke-brand-logo img {
        max-width: 220px !important;
        max-height: 100px !important;
        transform: scale(1.05);
    }

}


/* =========================================================
   MOBILE - KEEP ORIGINAL SIZE
   ========================================================= */

@media (max-width: 700px) {

    .ke-brand-logo {
        height: 72px !important;
    }

    .ke-brand-logo img {
        max-width: 125px !important;
        max-height: 58px !important;
        transform: scale(1) !important;
    }

    .ke-brand-card:hover .ke-brand-logo img {
        transform: scale(1.05) !important;
    }

}

/* =========================================================
   HERO SLIDE 3 - CONNECTING INDUSTRY
   DESKTOP + TABLET ONLY
========================================================= */
@media (min-width: 701px) {

    .ke-hero-slide:nth-child(3) .ke-hero-content h1 {
        font-size: clamp(52px, 5.6vw, 88px) !important;
        line-height: 0.88 !important;
        letter-spacing: -4px !important;
    }

}

/* =========================================================
   INDUSTRIAL EXCELLENCE
   DESKTOP + TABLET ONLY
========================================================= */

@media (min-width: 701px) {

    /* Make the whole section wider without pushing it off-screen */
    .ke-excellence {
        width: 100% !important;
        max-width: none !important;
        box-sizing: border-box;
    }

    .ke-excellence-container {
        width: 92% !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box;
    }


    /* Bigger item headings */
    .ke-excellence-item .ke-excellence-content h3 {
        font-size: 22px !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
    }


    /* Slightly larger descriptions */
    .ke-excellence-item .ke-excellence-content p {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }


    /* Slightly larger item numbers */
    .ke-excellence-item .ke-excellence-content > span {
        font-size: 11px !important;
    }

}


/* =========================================================
   MOBILE
   DO NOT CHANGE MOBILE DESIGN
========================================================= */
@media (max-width: 700px) {

    .ke-excellence,
    .ke-excellence-container,
    .ke-excellence-item .ke-excellence-content h3,
    .ke-excellence-item .ke-excellence-content p,
    .ke-excellence-item .ke-excellence-content > span {
        /* Keep existing mobile CSS */
    }

}

/* =========================================================
   HEADER NAVIGATION
   DESKTOP + TABLET
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');


@media (min-width: 701px) {

    .main-navigation {
        display: flex !important;
        align-items: center;
        gap: 44px !important;
    }

    .main-navigation a {
        font-family:  "Montserrat", sans-serif !important;
        font-size: 22px !important ;
        font-weight: 500 !important;
        letter-spacing: 0.2px !important;
        text-decoration: none !important;
        white-space: nowrap;
        transition: color 0.25s ease;
    }

    .main-navigation a:hover {
        color: #08c7f2 !important;
    }

}

/* =========================================================
   LARGE HEADER LOGO
   DESKTOP + TABLET
========================================================= */

/* =========================================================
   EXTRA LARGE HEADER LOGO
   DESKTOP + TABLET
========================================================= */

/* =========================================================
   EXTRA LARGE HEADER LOGO
   DESKTOP + TABLET
========================================================= */

@media (min-width: 701px) {

    .site-branding {
        width: 550px !important;
        max-width: 550px !important;
        flex-shrink: 0 !important;
    }

    .site-branding a {
        display: block !important;
        width: 100% !important;
    }

    .site-branding img.custom-logo {
        display: block !important;
        width: 550px !important;
        max-width: 550px !important;
        min-width: 550px !important;
        height: auto !important;
    }

}

