/* LAUNDRY BADGE (LEFT SIDE) */
.laundry-badge {
    position: fixed;
    right: 20px;
    bottom: 100px;


    width: 100px;
    height: 100px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 999;


    font-size: 14px;
    /* optional for text */
}

.laundry-badge img {
    width: 100px;
    height: 100px;
}

.laundry-badge span {
    font-size: 13px;
    font-weight: 600;
}

/* OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 998;
}

/* POPUP FORM */
.popup-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0b0f1a;
    padding: 20px;
    width: 600px;
    border-radius: 12px;
    display: none;
    z-index: 999;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    margin-left: 26%;
}

.form-header span {
    cursor: pointer;
    font-size: 22px;
}

/* FORM FIELDS */
.popup-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    padding: 10px;
    border: none;
    border-radius: 6px;
    outline: none;
    margin: 7px;
    width: 97% !important; 
}

.popup-form textarea {
    resize: none;
    height: 80px;
}

.popup-form button {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.popup-form button:hover {
    background: #1aa34a;
}

.place ::placeholder {
    color: #000 !important;
}


/* OVERLAY */
.lp-enquiry-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 999;
}

/* POPUP BOX */
.lp-enquiry-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    background: #0b0f1a;
    width: 380px;
    padding: 20px;
    border-radius: 12px;
    display: none;
    opacity: 0;
    z-index: 1000;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* OPEN STATE */
.lp-enquiry-modal.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* HEADER */
.lp-enquiry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    margin-bottom: 10px;
}

.lp-close-btn {
    cursor: pointer;
    font-size: 22px;
    color: #fff;
}

/* FORM */
.lp-enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-enquiry-form input,
.lp-enquiry-form select,
.lp-enquiry-form textarea {
    padding: 10px;
    border-radius: 6px;
    border: none;
    outline: none;
    background: #111827;
    color: #fff;
}

.lp-enquiry-form textarea {
    resize: none;
    height: 80px;
}

.lp-enquiry-form button {
    background: #283b93;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.lp-enquiry-header h3 {
    color: #fff !important;
}


@media (max-width: 768px) {

    .lp-enquiry-form input {
        padding: 7px !important;
        border-radius: 6px;
        border: none;
        outline: none;
        background: #111827;
        color: #fff;
        height: 40px !important;
    }

    .lp-enquiry-modal {
        position: fixed;
        top: 47% !important;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.85);
        background: #0b0f1a;
        width: 256px !important;
        padding: 20px;
        border-radius: 12px;
        display: none;
        opacity: 0;
        z-index: 1000;
        transition: 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}


/* =========================
   📱 MOBILE RESPONSIVE FIX
========================= */

@media (max-width: 768px) {


    .klen-video-content h1 {
        font-size: 35px !important;
    }

    .klen-products-right {
        flex: 1;
        min-width: 300px;
        margin-bottom: 30px !important;
    }

    /* =====================
     LAUNDRY BADGE
  ===================== */
    .laundry-badge {
        position: fixed;
        right: 0px;
        bottom: 85px;
        padding: 8px 10px;
        border-radius: 40px;
        display: flex;
        align-items: center;
        gap: 6px;
        z-index: 999;

    }

    .laundry-badge img {
        width: 28px;
        height: 28px;
    }

    .laundry-badge span {
        font-size: 11px;
        white-space: nowrap;
    }

    /* =====================
     POPUP FORM CONTAINER
  ===================== */
    .popup-form {
        width: 92%;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
        padding: 15px;
        border-radius: 12px;
    }

    /* =====================
     FORM HEADER
  ===================== */
    .form-header {
        flex-direction: row;
        justify-content: end;
        align-items: center;
    }

    .form-header img {
        width: 120px;
        height: auto;
    }

    /* =====================
     GRID → STACK LAYOUT
  ===================== */
    .form-equal {
        flex-direction: column;
        padding: 20px;
    }

    .col-md-6 {
        width: 100%;
    }

    /* =====================
     FORM BOX
  ===================== */


    .form-box input,
    .form-box select,
    .form-box textarea {
        font-size: 14px;
        padding: 10px;
        height: 40px;
    }

    textarea {
        height: 80px;
    }

    .form-header img {
        display: none !important;
    }

    .ms {
        margin-top: 0px !important;
    }

    /* =====================
     SUBMIT BUTTON
  ===================== */
    .popup-form button {
        width: 100%;
        padding: 12px;
        font-size: 15px;
        margin-bottom: 40px;
    }
}

/* =========================
   📱 VERY SMALL MOBILE (OPTIONAL)
========================= */

@media (max-width: 480px) {

    /* Hide text in badge for cleaner UI */
    .laundry-badge span {
        display: none;
    }

    .laundry-badge {
        width: 100px;
        height: 48px;
        justify-content: center;
        border-radius: 50%;
    }

    .laundry-badge img {
        width: 100%;
        height: 100%;
    }

    /* Popup full screen feel */
    .popup-form {
        width: 95%;
        border-radius: 10px;
    }
}



/* =========================
   📱 MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

    .klen-brand-sync {
        padding: 40px 10px;
    }

    /* HEADER */
    .klen-brand-header {
        text-align: center;
        padding: 0 10px;
    }

    .klen-brand-header h2 {
        font-size: 20px;
        line-height: 1.4;
    }

    .klen-brand-header .sub-title {
        font-size: 13px;
    }


    .brand-track {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px !important;
        margin: 20px 0 !important;
        transition: transform 0.8s ease;
    }

    /* BRAND ITEMS */
    .brand-item {
        flex: 0 0 auto;
        width: 90px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .brand-item img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* SECOND ROW SPACING */
    .brand-track.reverse {
        margin-top: 15px;
    }
}

/* =========================
   📱 SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .brand-item {
        width: 70px;
        height: 50px;
    }

    .klen-brand-header h2 {
        font-size: 18px;
    }

    .brand-track {
        gap: 10px;
    }
}

.laundry-cta-section {
    padding: 80px 20px;
    background-image: url(../img/bg/3.png);
    text-align: center;
    background-attachment: fixed;

}

.laundry-cta-section:before {
    background-color: #10131C;
    border-radius: 30px;
}

/* BOX */
.cta-box {
    max-width: 800px;
    margin: auto;
    padding: 40px;
    border-radius: 16px;
    background: rgb(0 0 0);
    box-shadow: 0 10px 30px rgb(105 188 233);
}

/* TITLE */
.cta-title {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

/* TEXT */
.cta-text {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* PHONE */
.cta-phone a {
    color: #60a5fa;
    font-size: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
    transition: 0.3s;
    text-transform: uppercase;
}

.cta-phone a:hover {
    color: #3b82f6;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #1e3a8a;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-title {
        font-size: 26px;
    }

    .cta-box {
        padding: 25px;
    }

    .cta-phone a {
        font-size: 18px;
    }
}


.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background: #fff;
    max-width: 900px !important;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    bottom: 90px !important;
    animation: popup 0.3s ease;
}

.close {

    position: absolute;
    right: 15px;
    top: 14px;
    font-size: 25px;
    cursor: pointer;
    color: #000;
    /* width: 50px; */

}

@keyframes popup {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-success1 {
    color: #fff !important;
    background-color: #283c94 !important;
    border-color: #283c94 !important;
}


.privacy-section-wrap {
    padding: 60px 20px;
    background: #f8fafc;
}

.privacy-container {
    max-width: 900px;
    margin: auto;
}

.privacy-content-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.privacy-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.privacy-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

/* MOBILE */
@media (max-width: 600px) {
    .privacy-content-box {
        padding: 22px;
    }

    .privacy-title {
        font-size: 22px;
    }

    .privacy-text {
        font-size: 14px;
    }
}

.machine-parts-wrap {
    display: flex;
    gap: 30px;
    padding: 60px 60px;
}

.machine-parts-sidebar {
    width: 280px;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 20px;
}

.machine-parts-sidebar h3 {
    margin-bottom: 20px;
}

.machine-parts-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.machine-parts-sidebar li {
    padding: 14px 15px;
    margin-bottom: 10px;
    background: #1f1f1f;
    cursor: pointer;
    transition: .3s;
}

.machine-parts-sidebar li:hover,
.machine-parts-sidebar li.active-part {
    background: #0d6efd;
    color: #fff;
}

.machine-parts-products {
    flex: 1;
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.part-card {
    border: 1px solid #e5e5e5;
    text-align: center;
    padding: 15px;
}

.part-img {

    margin-bottom: 15px;
}

.part-img img {
    width: 100%;

    object-fit: contain;
}

.part-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.part-card span {
    color: #8bc34a;
    font-weight: 700;
    font-size: 20px;
}

@media(max-width:991px) {

    .machine-parts-wrap {
        flex-direction: column;
    }

    .machine-parts-sidebar {
        width: 100%;
    }

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

@media(max-width:576px) {

    .parts-grid {
        grid-template-columns: 1fr;
    }

}

.eventshowcase-area {
    padding: 80px 60px;
}

.eventshowcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.eventshowcase-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.eventshowcase-card img {
    width: 100%;
    height: 300px !important;
    object-fit: cover;
    transition: all .6s ease;
}

/* Overlay Hidden Initially */
.eventshowcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(15, 23, 42, 0.95),
            rgba(30, 58, 138, 0.75),
            transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

/* Content Hidden Initially */
.eventshowcase-content {
    width: 100%;
    text-align: center;
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: all .45s ease;
}

.eventshowcase-tag {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.eventshowcase-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #1e3a8a;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.eventshowcase-btn:hover {
    background: #f59e0b;
    color: #fff;
}

/* Hover Effects */
.eventshowcase-card:hover img {
    transform: scale(1.15) rotate(2deg);
}

/* Hover Effects */
.eventshowcase-card:hover .eventshowcase-overlay {
    opacity: 1;
    visibility: visible;

}

.eventshowcase-card:hover .eventshowcase-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
}

/* Optional border animation */
.eventshowcase-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 2px solid rgba(255, 255, 255, .7);
    transform: scale(1.2);
    opacity: 0;
    transition: .5s;
    z-index: 2;
}

.eventshowcase-card:hover::before {
    transform: scale(1);
    opacity: 1;

}

/* Responsive */
@media (max-width: 991px) {
    .eventshowcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .eventshowcase-grid {
        grid-template-columns: 1fr;
    }

    .eventshowcase-card {
        height: 350px;
    }
}

.eventshowcase-card::before {
    pointer-events: none !important;
}