/* =========================================================
   KALPANA ENTERPRISES
   CLEAN HOMEPAGE
   ========================================================= */

.kalpana-homepage {
    width: 100%;
    overflow: hidden;
    background: #080a0b;
    color: #f5f5f5;
}

.kalpana-homepage *,
.kalpana-homepage *::before,
.kalpana-homepage *::after {
    box-sizing: border-box;
}

.kalpana-homepage a {
    text-decoration: none;
}


/* =========================================================
   COMMON
   ========================================================= */

.ke-section-container {
    width: min(1380px, calc(100% - 100px));
    margin: 0 auto;
}

.ke-section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #00c8f5;

    font-family: monospace;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.ke-section-label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: #00c8f5;
}

.ke-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    min-width: 190px;
    padding: 16px 20px;

    font-family: monospace;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}

.ke-btn span {
    font-size: 17px;
}

.ke-btn:hover {
    transform: translateY(-3px);
}

.ke-btn-primary {
    color: #071013;
    background: #00c8f5;
    border: 1px solid #00c8f5;
}

.ke-btn-primary:hover {
    background: #fff;
    border-color: #fff;
    color: #071013;
}

.ke-btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(0,0,0,.15);
}

.ke-btn-outline:hover {
    border-color: #00c8f5;
    color: #00c8f5;
}


/* =========================================================
   HERO
   ========================================================= */

/* =========================================================
   HERO CAROUSEL
   ========================================================= */

.ke-hero {
    position: relative;

    width: 100%;
    min-height: 760px;
    height: min(850px, 90vh);

    overflow: hidden;

    background: #080a0b;

    border-bottom: 1px solid rgba(255,255,255,.06);
}


.ke-hero-track {
    position: relative;

    width: 100%;
    height: 100%;
}


.ke-hero-slide {
    position: absolute;

    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .8s ease,
        visibility .8s ease;
}


.ke-hero-slide.is-active {
    opacity: 1;
    visibility: visible;

    z-index: 2;
}


/* =========================================================
   HERO LAYOUT
   ========================================================= */

.ke-hero-layout {

    width: min(1380px, calc(100% - 100px));

    height: 100%;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, .85fr);

    gap: 70px;

    align-items: center;
}


/* =========================================================
   HERO LEFT CONTENT
   ========================================================= */

.ke-hero-content {

    position: relative;

    z-index: 3;

    width: 100%;

    padding-top: 20px;
}


.ke-eyebrow {

    display: block;

    margin-bottom: 28px;

    color: #00c8f5;

    font-family: monospace;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.ke-hero-content h1 {

    margin: 0;

    color: #f5f5f5;

    font-size: clamp(
        65px,
        7vw,
        112px
    );

    line-height: .84;

    font-weight: 800;

    letter-spacing: -6px;
}


.ke-hero-content h1 span {

    color: #00c8f5;
}


.ke-hero-content p {

    max-width: 560px;

    margin: 35px 0;

    color: #8d9ba2;

    font-size: 16px;

    line-height: 1.75;
}


.ke-hero-buttons {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


/* =========================================================
   HERO IMAGE AREA
   ========================================================= */

.ke-hero-media {

    position: relative;

    width: 100%;

    height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/*
   Actual image placeholder.

   When you add your real hero image later,
   the image should occupy this exact area.
*/

.ke-hero-image-placeholder {

    position: relative;

    width: 100%;

    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border: 1px solid rgba(0,200,245,.28);

    background:
        radial-gradient(
            circle at center,
            rgba(0,200,245,.12),
            transparent 55%
        ),
        linear-gradient(
            135deg,
            #101517,
            #080b0c
        );

}


/*
   Decorative inner frame
*/

.ke-hero-image-placeholder::before {

    content: "";

    position: absolute;

    inset: 22px;

    border: 1px dashed rgba(0,200,245,.22);

    pointer-events: none;
}


/*
   Decorative corner lines
*/

.ke-hero-image-placeholder::after {

    content: "";

    position: absolute;

    width: 110px;

    height: 110px;

    border:

        1px solid rgba(0,200,245,.16);

    transform: rotate(45deg);

    pointer-events: none;
}


.ke-hero-image-placeholder span {

    position: relative;

    z-index: 2;

    padding: 18px 28px;

    border: 1px dashed rgba(255,255,255,.18);

    color: rgba(255,255,255,.38);

    font-family: monospace;

    font-size: 10px;

    letter-spacing: 4px;
}


.ke-hero-image-placeholder small {

    position: relative;

    z-index: 2;

    margin-top: 14px;

    color: rgba(0,200,245,.45);

    font-family: monospace;

    font-size: 8px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/*
   When actual image is inserted later.
*/

.ke-hero-image-placeholder img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    z-index: 3;
}


/* =========================================================
   HERO SLIDE NUMBER
   ========================================================= */

.ke-slide-number {

    position: absolute;

    z-index: 5;

    right: 6%;

    bottom: 55px;

    display: flex;

    align-items: center;

    gap: 15px;

    font-family: monospace;

    font-size: 10px;

    color: rgba(255,255,255,.55);
}


.ke-slide-number i {

    display: block;

    width: 50px;

    height: 1px;

    background: rgba(255,255,255,.3);
}


/* =========================================================
   HERO CONTROLS
   ========================================================= */

.ke-hero-controls {

    position: absolute;

    z-index: 10;

    right: 6%;

    bottom: 100px;

    display: flex;

    gap: 8px;
}


.ke-hero-controls button {

    width: 46px;

    height: 46px;

    border: 1px solid rgba(255,255,255,.22);

    background: rgba(5,8,9,.75);

    color: #fff;

    cursor: pointer;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}


.ke-hero-controls button:hover {

    border-color: #00c8f5;

    background: #00c8f5;

    color: #071013;
}


/* =========================================================
   HERO PROGRESS
   ========================================================= */

.ke-hero-progress {

    position: absolute;

    z-index: 10;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 2px;

    background: rgba(255,255,255,.08);
}


.ke-hero-progress span {

    display: block;

    width: 33.333%;

    height: 100%;

    background: #00c8f5;

    transform-origin: left;
}


/* =========================================================
   TABLET HERO
   ========================================================= */

@media (max-width: 1000px) {

    .ke-hero {

        min-height: 700px;

        height: 780px;
    }


    .ke-hero-layout {

        width: calc(100% - 60px);

        grid-template-columns:
            minmax(0, 1fr)
            minmax(330px, .8fr);

        gap: 35px;
    }


    .ke-hero-content h1 {

        font-size: clamp(
            55px,
            8vw,
            82px
        );

        letter-spacing: -4px;
    }


    .ke-hero-media {

        height: 430px;
    }

}


/* =========================================================
   MOBILE HERO
   ========================================================= */

@media (max-width: 700px) {

    .ke-hero {

        height: auto;

        min-height: 850px;
    }


    .ke-hero-layout {

        width: calc(100% - 36px);

        min-height: 850px;

        display: flex;

        flex-direction: column;

        justify-content: center;

        gap: 40px;

        padding: 80px 0 90px;
    }


    .ke-hero-content {

        padding-top: 0;

        order: 1;
    }


    .ke-eyebrow {

        margin-bottom: 20px;

        font-size: 8px;

        letter-spacing: 2.5px;
    }


    .ke-hero-content h1 {

        font-size: clamp(
            52px,
            15vw,
            76px
        );

        line-height: .86;

        letter-spacing: -3px;
    }


    .ke-hero-content p {

        margin: 24px 0;

        font-size: 14px;

        line-height: 1.65;
    }


    .ke-hero-buttons {

        width: min(100%, 310px);

        flex-direction: column;

        align-items: stretch;
    }


    .ke-btn {

        width: 100%;

        min-width: 0;
    }


    .ke-hero-media {

        order: 2;

        width: 100%;

        height: 300px;
    }


    .ke-hero-image-placeholder {

        height: 300px;
    }


    .ke-hero-image-placeholder::before {

        inset: 15px;
    }


    .ke-slide-number {

        right: 18px;

        bottom: 28px;
    }


    .ke-hero-controls {

        left: 18px;

        right: auto;

        bottom: 25px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .ke-hero {

        min-height: 820px;
    }


    .ke-hero-layout {

        min-height: 820px;

        padding-top: 70px;

        gap: 30px;
    }


    .ke-hero-media {

        height: 260px;
    }


    .ke-hero-image-placeholder {

        height: 260px;
    }


    .ke-hero-image-placeholder span {

        padding: 14px 20px;

        font-size: 8px;

        letter-spacing: 3px;
    }

}


/* =========================================================
   TRUSTED BRANDS
   ========================================================= */

.ke-trusted {
    padding: 125px 0 140px;

    background: #080a0b;

    border-top: 1px solid rgba(255,255,255,.05);
}

.ke-section-heading {
    text-align: center;
    margin-bottom: 65px;
}

.ke-section-heading .ke-section-label {
    justify-content: center;
    margin-bottom: 22px;
}

.ke-section-heading .ke-section-label::before {
    display: none;
}

.ke-section-heading h2 {
    margin: 0;

    color: #f5f5f5;

    font-size: clamp(45px, 5.2vw, 78px);
    line-height: .9;

    font-weight: 800;
    letter-spacing: -3px;
}

.ke-section-heading h2 span {
    color: #00c8f5;
}

.ke-brand-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid rgba(255,255,255,.09);
    border-left: 1px solid rgba(255,255,255,.09);
}

.ke-brand-card {
    min-height: 145px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    border-right: 1px solid rgba(255,255,255,.09);
    border-bottom: 1px solid rgba(255,255,255,.09);

    background: #0b0e0f;

    transition:
        background .3s ease,
        transform .3s ease;
}

.ke-brand-card:hover {
    background: #101516;
}

.ke-brand-card img {
    display: block;

    width: auto;
    max-width: 180px;
    max-height: 80px;

    object-fit: contain;

    filter: none;
    opacity: 1;

    transition:
        transform .3s ease,
        opacity .3s ease;
}

.ke-brand-card:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}


/* =========================================================
   INDUSTRIAL EXCELLENCE
   ========================================================= */

.ke-excellence {
    padding: 145px 0;

    background: #0b0e0f;

    border-top: 1px solid rgba(255,255,255,.06);
}

.ke-excellence-container {
    width: min(1380px, calc(100% - 100px));
    margin: 0 auto;

    display: grid;

    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);

    gap: 100px;

    align-items: start;
}

.ke-excellence-intro {
    position: sticky;
    top: 130px;
}

.ke-excellence-intro .ke-section-label {
    margin-bottom: 35px;
}

.ke-excellence-intro h2 {
    margin: 0;

    font-size: clamp(46px, 4.8vw, 72px);
    line-height: .88;

    font-weight: 800;
    letter-spacing: -3px;

    color: #f5f5f5;
}

.ke-excellence-intro h2 span {
    color: #00c8f5;
}

.ke-excellence-intro p {
    max-width: 410px;

    margin: 38px 0 0;

    color: #849198;

    font-size: 15px;
    line-height: 1.75;
}


/* RIGHT SCROLLING SHOWCASE */

.ke-excellence-showcase {
    position: relative;

    border-top: 1px solid rgba(255,255,255,.10);
}

.ke-excellence-item {
    position: relative;

    min-height: 190px;

    display: grid;

    grid-template-columns: 70px minmax(0,1fr) 40px;

    gap: 25px;

    align-items: center;

    padding: 35px 0;

    border-bottom: 1px solid rgba(255,255,255,.10);

    opacity: .45;

    transform: translateX(0);

    transition:
        opacity .5s ease,
        transform .5s ease,
        padding .4s ease,
        background .4s ease;
}

.ke-excellence-item.is-active {
    opacity: 1;
    transform: translateX(12px);
}

.ke-excellence-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0,200,245,.35);

    color: #00c8f5;

    font-size: 22px;

    transition:
        background .3s ease,
        color .3s ease;
}

.ke-excellence-item.is-active .ke-excellence-icon {
    background: #00c8f5;
    color: #071013;
}

.ke-excellence-content > span {
    display: block;

    margin-bottom: 10px;

    color: #00c8f5;

    font-family: monospace;
    font-size: 9px;
    letter-spacing: 2px;
}

.ke-excellence-content h3 {
    margin: 0 0 12px;

    color: #f5f5f5;

    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.05;

    font-weight: 700;
}

.ke-excellence-content p {
    max-width: 560px;

    margin: 0;

    color: #748189;

    font-size: 14px;
    line-height: 1.65;
}

.ke-excellence-arrow {
    color: #00c8f5;

    font-size: 25px;

    transition: transform .3s ease;
}

.ke-excellence-item.is-active .ke-excellence-arrow {
    transform: translate(4px,-4px);
}


/* =========================================================
   CTA
   ========================================================= */

.ke-cta {
    position: relative;

    padding: 145px 30px;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(0,200,245,.10),
            transparent 45%
        ),
        #080a0b;

    border-top: 1px solid rgba(255,255,255,.07);
}

.ke-cta-inner {
    width: min(1000px, 100%);
    margin: 0 auto;

    text-align: center;
}

.ke-cta .ke-section-label {
    justify-content: center;
    margin-bottom: 30px;
}

.ke-cta .ke-section-label::before {
    display: none;
}

.ke-cta h2 {
    margin: 0;

    font-size: clamp(50px, 6.5vw, 95px);
    line-height: .86;

    font-weight: 800;
    letter-spacing: -5px;
}

.ke-cta h2 span {
    color: #00c8f5;
}

.ke-cta p {
    max-width: 570px;

    margin: 32px auto;

    color: #849198;

    font-size: 15px;
    line-height: 1.75;
}

.ke-cta-button {
    margin-top: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .ke-section-container,
    .ke-excellence-container {
        width: min(100% - 50px, 1380px);
    }

    .ke-hero-content {
        left: 6%;
    }

    .ke-brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ke-excellence-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .ke-excellence-intro {
        position: relative;
        top: auto;
    }

    .ke-excellence-intro p {
        max-width: 600px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .ke-section-container,
    .ke-excellence-container {
        width: calc(100% - 36px);
    }


 /* =========================================================
   MOBILE HERO
   COMPACT IMAGE + BUTTONS
========================================================= */

.ke-hero {

    width: 100%;

    height: 650px;

    min-height: 650px;

    overflow: hidden;

}


.ke-hero-layout {

    width: calc(100% - 36px);

    height: 100%;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    align-items: stretch;

    gap: 0;

    padding: 48px 0 60px;

}


.ke-hero-content {

    position: relative;

    left: auto;

    right: auto;

    top: auto;

    width: 100%;

    padding: 0;

    transform: none;

    order: 1;

}


.ke-eyebrow {

    margin-bottom: 16px;

    font-size: 8px;

    letter-spacing: 2.5px;

}


.ke-hero-content h1 {

    margin: 0;

    font-size: clamp(
        44px,
        13vw,
        64px
    );

    line-height: .88;

    letter-spacing: -3px;

}


.ke-hero-content p {

    max-width: 320px;

    margin: 18px 0 0;

    font-size: 12px;

    line-height: 1.55;

}


/* =========================================================
   IMAGE PLACEHOLDER
========================================================= */

.ke-hero-media {

    order: 2;

    width: 100%;

    height: 220px;

    margin-top: 22px;

    flex-shrink: 0;

}


.ke-hero-image-placeholder {

    width: 100%;

    height: 220px;

}


/* =========================================================
   BUTTONS BELOW IMAGE
========================================================= */

.ke-hero-buttons {

    order: 3;

    width: 100%;

    margin-top: 16px;

    display: flex;

    flex-direction: row;

    align-items: center;

    justify-content: flex-start;

    gap: 8px;

    flex-wrap: nowrap;

}


.ke-btn {

    width: auto;

    min-width: 0;

    height: 40px;

    padding: 10px 13px;

    gap: 8px;

    font-size: 7px;

    letter-spacing: 1px;

    white-space: nowrap;

}


.ke-btn span {

    font-size: 12px;

}


/* =========================================================
   SLIDE NUMBER
========================================================= */

.ke-slide-number {

    right: 18px;

    bottom: 18px;

    gap: 8px;

    font-size: 8px;

}


.ke-slide-number i {

    width: 28px;

}


/* =========================================================
   CONTROLS
========================================================= */

.ke-hero-controls {

    left: 18px;

    right: auto;

    bottom: 14px;

    gap: 5px;

}


.ke-hero-controls button {

    width: 34px;

    height: 34px;

}
/* =========================================================
   SMALL MOBILE HERO
========================================================= */

.ke-hero {

    height: 630px;

    min-height: 630px;

}


.ke-hero-layout {

    width: calc(100% - 32px);

    padding-top: 45px;

}


.ke-hero-content h1 {

    font-size: clamp(
        42px,
        13vw,
        58px
    );

}


.ke-hero-content p {

    font-size: 11px;

    max-width: 300px;

}


.ke-hero-media {

    height: 200px;

    margin-top: 20px;

}


.ke-hero-image-placeholder {

    height: 200px;

}


.ke-btn {

    height: 38px;

    padding: 9px 11px;

    font-size: 7px;

}


.ke-btn span {

    font-size: 11px;

}
}

    /* TRUSTED BRANDS */

    .ke-trusted {
        padding: 85px 0 90px;
    }

    .ke-section-heading {
        margin-bottom: 40px;
    }

    .ke-section-heading h2 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .ke-brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ke-brand-card {
        min-height: 110px;
        padding: 18px;
    }

    .ke-brand-card img {
        max-width: 110px;
        max-height: 50px;
    }


    /* INDUSTRIAL EXCELLENCE */

    .ke-excellence {
        padding: 90px 0;
    }

    .ke-excellence-container {
        display: block;
    }

    .ke-excellence-intro {
        margin-bottom: 55px;
    }

    .ke-excellence-intro .ke-section-label {
        margin-bottom: 28px;
    }

    .ke-excellence-intro h2 {
        font-size: clamp(48px, 14vw, 70px);
        letter-spacing: -3px;
    }

    .ke-excellence-intro p {
        margin-top: 25px;

        font-size: 14px;
        line-height: 1.65;
    }

    .ke-excellence-item {
        min-height: 155px;

        grid-template-columns: 48px minmax(0,1fr) 20px;

        gap: 15px;

        padding: 28px 0;

        opacity: 1;
    }

    .ke-excellence-item.is-active {
        transform: none;
    }

    .ke-excellence-icon {
        width: 42px;
        height: 42px;

        font-size: 17px;
    }

    .ke-excellence-content h3 {
        font-size: 19px;
        line-height: 1.1;
    }

    .ke-excellence-content p {
        font-size: 12px;
        line-height: 1.55;
    }

    .ke-excellence-arrow {
        font-size: 18px;
    }


    /* CTA */

    .ke-cta {
        padding: 90px 20px;
    }

    .ke-cta h2 {
        font-size: clamp(45px, 13vw, 68px);
        letter-spacing: -3px;
    }

    .ke-cta p {
        font-size: 14px;
        line-height: 1.65;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .ke-brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ke-brand-card {
        min-height: 100px;
        padding: 15px;
    }

    .ke-brand-card img {
        max-width: 90px;
        max-height: 42px;
    }

    .ke-excellence-content h3 {
        font-size: 17px;
    }

    .ke-excellence-content p {
        font-size: 11px;
    }

}

/* =========================================================
   MOBILE HERO
   TEXT → IMAGE → BUTTONS
========================================================= */

@media (max-width: 600px) {

    .ke-hero-layout {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
    }

    .ke-hero-content {
        order: 1;
    }

    .ke-hero-media {
        order: 2;
        width: 100%;
        height: 230px;
        margin-top: 22px;
    }

    .ke-hero-image-placeholder {
        width: 100%;
        height: 230px;
    }

    .ke-hero-buttons {
        order: 3;

        width: 100%;
        margin-top: 16px;

        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;

        gap: 8px;
    }

    .ke-hero-buttons .ke-btn {
        width: auto;
        min-width: 0;
        flex: 0 0 auto;

        height: 40px;

        padding: 10px 13px;

        font-size: 7px;

        white-space: nowrap;
    }

}


/* SMALL PHONES */

@media (max-width: 430px) {

    .ke-hero-media,
    .ke-hero-image-placeholder {
        height: 210px;
    }

    .ke-hero-buttons {
        margin-top: 14px;
        gap: 7px;
    }

    .ke-hero-buttons .ke-btn {
        height: 38px;
        padding: 9px 11px;
    }

}

/* =========================================================
   MOBILE HERO - REDUCE EMPTY SPACE BELOW BUTTONS
========================================================= */

@media (max-width: 700px) {

    .ke-hero {
        height: 570px !important;
        min-height: 570px !important;
    }

    .ke-hero-layout {
        padding-bottom: 35px !important;
    }

    .ke-hero-buttons {
        margin-top: 12px !important;
    }

    .ke-hero-controls {
        bottom: 14px !important;
    }

    .ke-slide-number {
        bottom: 18px !important;
    }

    .ke-hero-progress {
        bottom: 0 !important;
    }
}


/* SMALL PHONES */

@media (max-width: 430px) {

    .ke-hero {
        height: 555px !important;
        min-height: 555px !important;
    }

    .ke-hero-buttons {
        margin-top: 10px !important;
    }

    .ke-hero-controls {
        bottom: 12px !important;
    }

    .ke-slide-number {
        bottom: 16px !important;
    }
}

